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

selection-screen

Former Member
0 Likes
296

why v r not writing SELECT-OPTION in between selection-screen begin of line,n end of line?

2 REPLIES 2
Read only

Former Member
0 Likes
277

Hi,

Begin of line is used for cases where normal inputs cant be put up like checkboxes, radiobuttons to be displayed on right side.

Thanks

Sandeep

Read only

Former Member
0 Likes
277

Hi

Begin of line and End of line of selection screen is used to declare only PARAMETERS (which can accept single value like checkbox, field, radiobutton etc) between them. not select-options .

see the example;

selection-screen begin of line.

parameters p_cust type c radiobutton group cust.

selection-screen comment 3(20) text-004 for field p_cust.

selection-screen end of line.

selection-screen begin of line.

parameters p_mode type c radiobutton group cust.

selection-screen comment 3(20) text-006 for field p_mode.

selection-screen end of line.

selection-screen begin of line.

parameters p_dens type c radiobutton group cust.

selection-screen comment 3(20) text-007 for field p_dens.

selection-screen end of line.

Reward points if useful

Regards

Anji