Application Development 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: 

Problem in Selection Screen

Former Member
0 Kudos

Hi,

I want to write the text on selection screen

its a line of more then 140 characters.

1. i had tried by making text-elements, (but max limit of text-element is 132.)

2. i tried it entering in textbox, but width of textbox is also limited.

3. i tried thru writing comments one after the other, but it shows space between two comments.

help me to write the text on selection screen of length more then 140 charcters.

thanks in advance.

3 REPLIES 3

Former Member
0 Kudos

Hi,

Use ur Point #3.

first write the first text. then u write the secondtext with position .

selection-screen comment: text-001, 133 text-002.

hope this will help you. if it works let me know.

- Selvapandian Arunachalam

dani_mn
Active Contributor
0 Kudos

Hi,

try this.

and make this field disable. in loop at screen. endloop.

parameters: fc_desc1(140) visible length 50.

Regards,

Wasim Ahmed

Former Member
0 Kudos

Hi joginder,

1. this will display comment

of more than 140 characters,

2. just copy paste in new program.

3.

REPORT abc.

*----


Data

data : mystr(170) type c.

*----


PARAMETERS : ABC(10) TYPE C.

selection-screen begin of line.

selection-screen comment 1(82) a.

selection-screen comment 83(83) B.

selection-screen end of line.

*----


INITIALIZATION.

MYSTR = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ 123457890 ABCDEFGHIJ 1234567890'.

CONCATENATE MYSTR 'ABCDEFGHI <> 123457980 ? 123457890 {} 123457890'

'@ 1234567890 &1234567890 *1234567890 %1234567890 $1234567890'

INTO MYSTR.

A = MYSTR(82).

B = MYSTR+82(83).

regards,

amit m.