Sunday, December 26, 2010
This ABAP program shows, how to hide BACK, CANCEL, EXIT buttons on selection-screen. |
REPORT ZTEST_NOTEPAD. DATA: it_ucomm TYPE TABLE OF sy-ucomm. PARAMETERS: carrid TYPE sflight-carrid. AT SELECTION-SCREEN OUTPUT. APPEND : 'E' TO it_ucomm, "for back 'ENDE' TO it_ucomm, "for exit 'ECAN' TO it_ucomm. "for cancel CALL FUNCTION 'RS_SET_SELSCREEN_STATUS' EXPORTING p_status = sy-pfkey TABLES p_exclude = it_ucomm. |
Followers
Popular Posts
- ABAP - ALV Report example with steps
- ABAP - Step by step tutorial on Smart Forms - Template Node
- ABAP - Sending email with pdf attachment
- SAP Adobe Form - Steps to create simple ADOBE Form and calling it from ABAP Program
- SAP ABAP - CL_ABAP_CHAR_UTILITIES class usage
- ABAP - Multiple value selection from F4 help for SELECT-OPTIONS
- Execute ABAP Report using SUBMIT statement
- ABAP - Select all or Deselect all in ALV or Check box handling in ALV
- Web Dynpro ABAP ALV - ON_CLICK event
- ABAP - Dynamic WHERE clause
0 comments:
Post a Comment
Your useful comments, suggestions are appreciated.Your comments are moderated.