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
816

hi,

i want to add some information text in the selection screen.

e.g Just before a Check-box in Selection screen, i would like to hardcore some descriptive text for that checkbox.

is it possible?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
751

hiiii

use following code

SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS p_rad2 TYPE c RADIOBUTTON GROUP gr.
SELECTION-SCREEN COMMENT 3(16) text-006.
SELECTION-SCREEN END OF LINE.

double click on text-006 & write whatever note you want..

regards

twinkal

6 REPLIES 6
Read only

Former Member
0 Likes
751

use that inf in the text elements itself

Read only

Former Member
0 Likes
751

hi,

Check out the below sample code


SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-h01.

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS: p_deta as checkbox.
SELECTION-SCREEN COMMENT 5(13) text-c01 FOR FIELD p_deta.

PARAMETERS: p_summ as checkbox.

SELECTION-SCREEN COMMENT (15) text-c02 FOR FIELD p_summ.

PARAMETERS: p_strt as checkbox.

SELECTION-SCREEN COMMENT (21) text-c03 FOR FIELD p_strt.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN END OF BLOCK b2.

Regards,

Santosh

Read only

Former Member
0 Likes
751

Hi ,

In your program declare like this,

parameters : chk as checkbox.

goto->Text elements ---> selection texts.

Here Hardcode your text. It will appear on selection screen.

Regards,

kv

Read only

pole_li
Active Participant
0 Likes
751

Hi,

Try this:

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS p_a as CHECKBOX DEFAULT 'X'.

SELECTION-SCREEN COMMENT 4(6) TEXT-002.

SELECTION-SCREEN END OF LINE.

Regards,

Pole

Read only

Former Member
0 Likes
752

hiiii

use following code

SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS p_rad2 TYPE c RADIOBUTTON GROUP gr.
SELECTION-SCREEN COMMENT 3(16) text-006.
SELECTION-SCREEN END OF LINE.

double click on text-006 & write whatever note you want..

regards

twinkal

Read only

Former Member
0 Likes
751

SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-h01.

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS: p_deta RADIOBUTTON GROUP g1 USER-COMMAND abc

DEFAULT 'X'.

SELECTION-SCREEN COMMENT 5(13) text-c01 FOR FIELD <FIELS_NAME>

PARAMETERS: p_summ RADIOBUTTON GROUP g1.

SELECTION-SCREEN COMMENT (15) text-c02 FOR FIELD <FIELS_NAME>.

PARAMETERS: p_strt RADIOBUTTON GROUP g1.

SELECTION-SCREEN COMMENT (21) text-c03 FOR FIELD <FIELS_NAME>.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN END OF BLOCK b2.

and double clck on text-c02 to enter the text u want

do rewards