Application Development 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: 

Table maintenance dialog event

former_member426550
Participant
0 Kudos

hi expert....

what event will i used if i want to cancel the records like BAPI_ROLLBACK?

example....in Table maintenance dialog event...

if zdata-kwmeng > 10.

pop up user ERROR then cancel the process(LIke BAPI ROLLBACK?

else.

modify existing records in the zdata.

endif.

thanks,

1 ACCEPTED SOLUTION

amit_khare
Active Contributor
0 Kudos
3 REPLIES 3

amit_khare
Active Contributor
0 Kudos

Former Member
0 Kudos

Hi,

To verify the entries, try to use the following events in your case -

1. 05 - Verify New Entries

Here just verify, whether the entered value is correct or not. If not then display error message and get the corrected entry here.

2. 08 - After Correcting the Selected Entry

Same as point 1.

3. 01 - Before Saving Data in Database

Here modify the record and do any other check if required.

Hope this sort out your issue.

PS If the answer solves your query, plz close the thread by rewarding points to each reply.

Regards

former_member426550
Participant
0 Kudos

thanks..