PR Release Date should not be less than the System Date(me54n)
DATA :GS_IM_T_EBAN TYPE EBAN.
READ TABLE IM_T_EBAN INTO GS_IM_T_EBAN INDEX 1.
BREAK ROHINIK.
IF GS_IM_T_EBAN-FRGDT < sy-datum.
MESSAGE 'PR Release Date should not be less than the System Date' TYPE 'E'.
endif.
READ TABLE IM_T_EBAN INTO GS_IM_T_EBAN INDEX 1.
BREAK ROHINIK.
IF GS_IM_T_EBAN-FRGDT < sy-datum.
MESSAGE 'PR Release Date should not be less than the System Date' TYPE 'E'.
endif.
Comments
Post a Comment