‎2010 Jul 15 1:13 PM
Hi friends..
Please make me understand... In module pool programming
On INPUT : module is called only if a field contains the Value other than the initial Value. This initial Value is determined by the filedu2019s Data type
But in my program, i declared one varible with data type numeric.
Declaration:
data var(3) type n.
Flow logic:
field var module m1 ON INPUT.
PAI:
MODULE M1 INPUT.
message i001(Z1).
ENDMODULE.
In my program module m1 is getting called when i enter "000" in the screen.
but as per definition its not supposed to be called.
please give me some idea on this ?
regards
deva
‎2010 Jul 15 1:43 PM
sap documentation.
With this condition, module is called only if the screen field is not empty. All screen fields except fields of type STRING or SSTRING are considered empty if they contain nothing but blanks in the screen representation.
‎2011 Feb 25 10:18 AM