‎2007 Mar 25 12:30 PM
Hi all
Can anyone help me with this??
TWO blocks nested with frames. Add 3 radio buttons in the outer block. The outer block needs to have a title. Add a select-option in the inner block. Use the field CARRID from table SPFLI for the select-option. The inner block does not require a title.
Thanks in advance
Adam
‎2007 Mar 26 9:28 AM
‎2007 Mar 26 10:46 AM
Hi Adam......
See the following code....
It helps you........
TABLES SPFLI.
SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TIT.
SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME.
PARAMETERS: R1 RADIOBUTTON GROUP G1,
R2 RADIOBUTTON GROUP G1,
R3 RADIOBUTTON GROUP G1.
SELECTION-SCREEN END OF BLOCK B2.
SELECT-OPTIONS SSS FOR SPFLI-CARRID.
SELECTION-SCREEN END OF BLOCK B1.
INITIALIZATION.
TIT = 'Title'.
Reward points if useful......
Suresh......
‎2007 Mar 26 10:53 AM
Hi.....
Try the following code.......
TABLES SPFLI.
SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TIT.
PARAMETERS: R1 RADIOBUTTON GROUP G1,
R2 RADIOBUTTON GROUP G1,
R3 RADIOBUTTON GROUP G1.
SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME.
SELECT-OPTIONS CARRID FOR SPFLI-CARRID.
SELECTION-SCREEN END OF BLOCK B2.
SELECTION-SCREEN END OF BLOCK B1.
INITIALIZATION.
TIT = 'Title'.
Reward points if useful......
Suresh......