‎2012 Jan 25 8:16 AM
Hi All,
I an requirement when I execute an 'Z' transaction it need to appear in small window. I have created the screen as Normal screen and made size small , But it is not working. Please Suggest.
Thanks.
Jeet.
‎2012 Jan 25 9:04 AM
‎2012 Jan 25 9:04 AM
‎2012 Jan 25 9:30 AM
Hi Madhu,
If M using like this it is working according to my requirement.
SELECTION-SCREEN BEGIN OF SCREEN 9250 AS WINDOW TITLE text-002.
SELECTION-SCREEN BEGIN OF BLOCK bl1 WITH FRAME TITLE text-001.
*SELECT-OPTIONS mtart FOR mara-mtart.
SELECTION-SCREEN END OF BLOCK bl1.
SELECTION-SCREEN END OF SCREEN 9250.
CALL SELECTION-SCREEN '9250' STARTING AT 10 10.
MODULE CALL_TRANSACTION INPUT.
case ok_code.
when 'CRET'.
call TRANSACTION 'ZH_MSAL' AND SKIP FIRST SCREEN.
endcase.
ENDMODULE.
when I execute this One the standard execute check save and cancel button should not come. I need to add Push Button according to my requirement.
Can You Help.?
Thanks and Regards.
Jeet.
‎2012 Jan 25 10:12 AM
Hi Jeet,
Check like this.
CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
EXPORTING
p_status = '%_00'
p_program = sy-repid
TABLES
p_exclude = one parrameters.
Regards,
Madhu.
‎2012 Jan 25 10:56 AM
Please create your own PF status and call them in PBO of screen.
Thanks
Nabheet
‎2012 Jan 27 9:06 AM
GOTO Create other object which is available in tool bar or press shift+F5 select screen give Ex:9000 fir developing create it will ask you Normal screen or subscreen modal dialog box based on your requirement you can create
‎2012 Jan 27 9:28 AM