2007 Jul 16 7:31 AM
I've created a report & on the selection screen there are 2 radioo buttons with 2 separate options. Each option calls a separate transaction upon executing. While I execute an option after selecting the radio button & then press the back button to come bcak on the original screen, first it goes to a blank screen & then it again comes back to the original screen.That means I've to press the BACK button again in order to reach the original selection screen.I'm not able to resolve the problem.My coding is like this :
START-OF-SELECTION.
IF p_skill = 'X'.
CALL TRANSACTION 'ZTICKET'.
ELSE.
LEAVE TO TRANSACTION 'ZSTATUS'.
ENDIF.
END-OF-SELECTION.
after executing the transaction ZTICKET, when I press BACK button it shows the blank screen.Please help.
2007 Jul 16 7:41 AM
Hi,
Please have a look in code for selection screen, and check if you have coded "Skip" somewhere or not. Incase you have remove that line and execute again.
I've created a report & on the selection screen there are 2 radioo buttons with 2 separate options. Each option calls a separate transaction upon executing. While I execute an option after selecting the radio button & then press the back button to come bcak on the original screen, first it goes to a blank screen & then it again comes back to the original screen.That means I've to press the BACK button again in order to reach the original selection screen.I'm not able to resolve the problem.My coding is like this :
START-OF-SELECTION.
IF p_skill = 'X'.
CALL TRANSACTION 'ZTICKET'.
ELSE.
LEAVE TO TRANSACTION 'ZSTATUS'.
ENDIF.
END-OF-SELECTION.
after executing the transaction ZTICKET, when I press BACK button it shows the blank screen.Please help.
2007 Jul 16 7:36 AM
Hi,
See the handling of the back button in ur transaction ZTICKET.
In Back Button functionality of ZTICKET just write LEAVE PROGRAM.
Hope this shud solve ur problem.
Regards,
Himanshu.
2007 Jul 16 7:41 AM
Hi,
Please have a look in code for selection screen, and check if you have coded "Skip" somewhere or not. Incase you have remove that line and execute again.
2007 Jul 16 3:26 PM
HI TRY THIS ONE ITS WORKING
REWARD IF USEFUL
SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-004.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS : R1 RADIOBUTTON GROUP G1 DEFAULT 'X' USER-COMMAND UC1.
SELECTION-SCREEN COMMENT 5(20) TEXT-002 FOR FIELD R1.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS : R2 RADIOBUTTON GROUP G1.
SELECTION-SCREEN COMMENT 5(20) TEXT-003 FOR FIELD R2.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK B2.
START-OF-SELECTION.
IF r1 = 'X'.
call transaction 'ZNNR_REPORT'.
ENDIF.
IF R2 = 'X'.
CALL TRANSACTION 'MM01'.
ENDIF.
END-OF-SELECTION.
REGARDS
NARESH
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |