‎2009 Aug 27 10:22 AM
Hi All,
I am using a table control wizard with 2 fields in which i am entering some values and saving them.when nothing is specified in these 2 fields or in 1 field the data should not be saved.
I am writing a new module in PAI loop of wizard and writing the validation in that module but its not working for me.
Can someone provide me alternative.
Regrads,
Sudhir
‎2009 Aug 27 10:31 AM
Hi Sudhir,
Don't Post Duplicate Posts
Refer my sample code in your previous threat reply.
see below example also,
IF NOT x_assignment-activity IS INITIAL.
IF x_assignment-employee_id IS INITIAL.
MESSAGE 'Please Fill the Employee name' TYPE 'E'.
ENDIF.
ENDIF.