chech date in sapscript
Hi all,
I need to check a date in a sapscript in this way:
/E HEADER_1 /: IF &MXABK-TDATE& = '20060601' /: <code A> /: ELSE. /: <code B> /: ENDIF.
but it doesn't work.
(I hope I don't have to use a form routine for a check so simple).
Could you help me?
I thank you in advance.
Best regards
Tags:
Former Member replied
Hi Paolo,
Try to Use the below code in script.
/E HEADER_1
/: set edit mask : 'YYYYMMDD'.
/: IF &MXABK-TDATE& = '20060601'
/: <code A>
/: ELSE.
/: <code B>
/: ENDIF.