‎2009 Oct 01 6:47 AM
Hello experts,
I have develop one simple screen , in which i have two buttons
1.SAVE on standard toolbar
2. Edit in appliaction toolbar.
I want one click of save button save button get disabel and edit button get enabled.
Plz suggest,
Priyanka
‎2009 Oct 01 6:58 AM
if ok_code = 'SAVE'. (or sy-ucomm)
loop at screen.
if screen-name = 'EDIT'.
screen-active = 0.
endif.
endloop.
u have to code sthg like this...
‎2009 Oct 01 6:59 AM
Hi,,
When you click the save button, then write the code:-
set pf-status '<status_name>' excluding '<func_code_for_save_button>'.
OR
And write your Logic in 'PAI' module for saving.
CASE ok_code.
WHEN 'SAVE'.
do saving.
ENDCASE.
Regards ,
Ansari