2008 Jan 24 10:14 AM
Hi all,
I am calling a normal screen from abap program when i click pushbutton in that screen, subscreen should be displayed in subscreen area which is defined under pushbutton.
when'push'.
call subscreen sub.
its not working.please help.
Hi all,
I am calling a normal screen from abap program when i click pushbutton in that screen, subscreen should be displayed in subscreen area which is defined under pushbutton.
when'push'.
call subscreen sub.
its not working.please help.
2008 Jan 24 10:18 AM
Hi Kavitha,
I thik you forgot to activate the screen when you click the button .
Suppose your screen is 200 write like this code in the PBO of 200 screen.
> PROCESS BEFORE OUTPUT.
> module active.
In your program.
MODULE ACTIVE.
if sy-ucomm eq 'BUTTON'.
loop at screen.
screen-active = 1.
modify screen.
endloop.
else.
loop at screen.
screen-active = 0.
modify screen.
endloop.
endif.
ENDMODULE.
Plzz reward if it is useful,
Mahi.
2008 Jan 24 11:20 AM
Hi Maheswari,
my first screen is 9001 in that flow logic pbo i wrote
CALL SUBSCREEN SUBSCREEN INCLUDING sy-repid 9002.
in pai flow logic
call subscreen subscreen.
in pbo processing logic .
WHEN OK-CODE = 'PUSH'.
i wrote loop at screen and activated screen.
but still i DONT GET...
2008 Jan 24 10:37 AM
hi
good
check this link,hope this would help you to solve your problem.
http://help.sap.com/saphelp_nw70/helpdata/en/9f/dbabfe35c111d1829f0000e829fbfe/content.htm
thanks
mrutyun^
2008 Jan 24 10:54 AM
hi
in ur pbo
CALL SUBSCREEN area INCLUDING prog dynp.
in ur pai
if ok_code = 'push'.
CALL SUBSCREEN area.
endif.
also u can refer to this link
http://help.sap.com/saphelp_nw70/helpdata/en/9f/dbab2935c111d1829f0000e829fbfe/frameset.htm
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |