‎2007 Jun 12 4:07 PM
Hi,
IS it possible to check if the value is initial in SAPscript?
Regards
Gunjan
‎2007 Jun 12 4:13 PM
‎2007 Jun 12 4:13 PM
‎2007 Jun 12 4:14 PM
Hi,
You cannot use IS INITIAL option..instead you have to check if the value = ' ' for character data type and change it according to the data type.
Otherwise..create a dummy variable of that data type in the print program..And then use that in your sapscript..
Ex..
<b>Print program.</b>
DATA: v_quan TYPE MENGE_D.
<b>Sap script</b>
/: IF &EKPO-MENGE& = &V_QUAN&
P1 <b>Initial</b>
/: ELSE.
P1 <b>Not initial</b>
/: ENDIF.
Thanks,
Naren
‎2007 Jun 12 4:23 PM