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

Regarding selection text

Former Member
0 Likes
609

Hi Experts,

My selection screen code goes like this:

ELECTION-SCREEN BEGIN OF BLOCK A1 WITH frame TITLE text-100.

selection-screen begin of line.

SELECTION-SCREEN POSITION 11.

PARAMETERS: p_pres1 TYPE c RADIOBUTTON GROUP b MODIF ID 001.

selection-screen end of line.

selection-screen begin of line.

SELECTION-SCREEN POSITION 11.

PARAMETERS: p_appl TYPE c RADIOBUTTON GROUP b MODIF ID 001.

selection-screen end of line.

selection-screen begin of line.

SELECTION-SCREEN POSITION 11.

PARAMETERS: p_file TYPE localfile MODIF ID 001 .

selection-screen end of line.

SELECTION-SCREEN END OF BLOCK A1.

The radiobuttons and the filename are getting displayed but their selection texts are not getting displayed alongwith them.

Is it because I have shifted their position.

How to get the selection text displayed at the appropriate position?

Regards,

Sangeeta.

<REMOVED BY MODERATOR>

Edited by: Alvaro Tejada Galindo on Jan 29, 2008 9:43 AM

4 REPLIES 4
Read only

Former Member
0 Likes
586

Hi,

Did you activate after defining the Selection texts?

Ashok

Read only

Former Member
0 Likes
586

I think you might have forgot to activate the Text Symbols. Activate them.

Regards,

Satish

Read only

Former Member
0 Likes
586

Hi Sangeeta,

You need to write one line code for displaying the text:

SELECTION-SCREEN BEGIN OF BLOCK A1 WITH frame TITLE text-100.

selection-screen begin of line.

SELECTION-SCREEN POSITION 11.

PARAMETERS: p_pres1 TYPE c RADIOBUTTON GROUP b MODIF ID 001.

SELECTION-SCREEN COMMENT 12(len) text-001 FOR FIELD p_pres1.

where len is the length of text-001.

selection-screen end of line.

Cheers!!

Lokesh

Read only

Former Member
0 Likes
586

Write .. selection screen comment ...