Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Nested Frames

Former Member
0 Likes
564

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

3 REPLIES 3
Read only

Former Member
0 Likes
525

Can anyone help me with that?

Read only

Former Member
0 Likes
525

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......

Read only

Former Member
0 Likes
525

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......