‎2007 May 14 10:42 AM
In the subscreen i have add one field estimated cost(QMEL-ZZECOST).For that one i have created one append structrure in QMEL and add ZZCOST field.
Now iam creating subscreen in QQMA0008 in the screen exit SAPLXQQM 0100.
I have created in the subscreen in this exit and placed the field QMEL-ZZCOST.
This ZZCOST field is CURR field.What my problem how to check the validations.
1) when i enter the input non numeric values should issue a error message to input only numericals in the field.
2)input numerical value should not issue an error message.
please suggest logic and where i have write the logic?Help me .it is very urgent.
Thanks,
sairam
‎2007 May 14 10:50 AM
Hi,
U can use this logic
if (FIELD) CO '0123456789'.
else.
message e000(zabc).
endif.
Regards,
Gaurav
‎2007 May 14 10:54 AM
Hi,
Try this logic in PAI of subscreen.
if fld_name co '0123456789.'.
"process commands... no error
else.
message e001. "E-error
endif.Jogdand M B
‎2007 May 14 12:15 PM