‎2008 Jan 31 12:08 PM
hi all,
plz i need your help.
if i dnt make any changes,i dont want to display message after clicking on SAVE button on screen.
‎2008 Jan 31 12:11 PM
you have to use 'if' that is if your fields are same as previous then message else not.you can do this youing sy-subrc values too.
reward if useful
keep rockin
vivek
‎2008 Jan 31 12:16 PM
At the first time you can exclude the save button from PF-Staues.
Ie,
if flag1 is initial.
set pf-status '9000' excluding 'SAVE'.
endif.
Once User make any cahnges, then check the Sy-datar field in PAI.
ie,in PAI.
If sy-datar is not initial.
Flag1 = 'X'.
endif.
‎2008 Jan 31 12:16 PM