on ‎2024 Jul 13 12:54 PM
I've created three subscreens for select-options input. I want to hide these subscreen options if I select a value in the main screen field. I debugged the program, and it goes to the PBO block of the main screen. The screen does not loop to the subscreen; it only calls the subscreen area in the PAI block. Can I hide these fields using SSCRFIELDS in dialog programming?
Code snippet.
SELECTION-SCREEN BEGIN OF SCREEN 9004 as SUBSCREEN.
SELECT-OPTIONS: s_po for lv_po.
SELECTION-SCREEN END OF SCREEN 9004.
*
SELECTION-SCREEN BEGIN OF SCREEN 9005 as SUBSCREEN.
SELECT-OPTIONS: s_dc for lv_dec.
SELECTION-SCREEN END OF SCREEN 9005.
*
SELECTION-SCREEN BEGIN OF SCREEN 9006 as SUBSCREEN.
SELECT-OPTIONS: s_inv for lv_inv.
SELECTION-SCREEN END OF SCREEN 9006.
Request clarification before answering.
AT SELECTION-SCREEN OUTPUT.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
in your function group create an include define your sub screen in top.
INCLUDE lzxxxxtop. " Global Declarations
INCLUDE lzxxxxuxx. " Function Modules
INCLUDE zinclude.then in zinclude you can use
AT SELECTION-SCREEN OUTPUT.
PERFORM loop_screen.
FORM loop_screen.
.
.
.
.
ENDFORM.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 5 | |
| 4 | |
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.