Integrate revision 11242
Fix problem introduced in revision 11051 on -> wrong validation sql for "M_InOutShipment/Receipt (RMA)" Link to SF Tracker: http://sourceforge.net/support/tracker.php?aid=2904257
This commit is contained in:
parent
0655a2b950
commit
a5ab0b6681
|
@ -384,7 +384,8 @@ public final class Env
|
|||
//
|
||||
if (value == null)
|
||||
if (context.endsWith("_ID"))
|
||||
value = new String("-1");
|
||||
// TODO: Research potential problems with tables with Record_ID=0
|
||||
value = new String("0");
|
||||
else
|
||||
value = new String("");
|
||||
ctx.setProperty(WindowNo+"|"+TabNo+"|"+context, value);
|
||||
|
|
Loading…
Reference in New Issue