Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Field Validation in Table Control

sudhir_uppalapati
Participant
0 Likes
353

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

1 REPLY 1
Read only

Former Member
0 Likes
317

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.