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

Former Member
0 Likes
868

Hi,

I have used a Parameter in the program name lie P_Lif.

I define a selection text in the program in go->textelements->selection texts.

But in that selection text it is not accepting big string but i have to display a big string.

How can we slove this problem ?

Bye,

Satya.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
760

HI,

try this

SELECTION-SCREEN BEGIN OF BLOCK B01 WITH FRAME TITLE TEXT-001.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(20) TEXT-T01 FOR FIELD R_POST.

PARAMETERS: R_POST RADIOBUTTON GROUP G1.

SELECTION-SCREEN COMMENT 50(33) TEXT-T02 FOR FIELD R_RPT.

PARAMETERS: R_RPT RADIOBUTTON GROUP G1.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN END OF BLOCK B01.

and give the text for this R_POST

here it will take 132 char length

regards,

venkatesh.

7 REPLIES 7
Read only

kiran_k8
Active Contributor
0 Likes
760

Satyanarayana,

We can delcare a text which can be of max length 132.

K.Kiran.

Read only

Former Member
0 Likes
760

Hi,

I have to display it before a radio button. and it is accepting only 31 characters.

But i have to display aprox. 42 characters . How it possible ?

Bye,

Satya.

Read only

Former Member
0 Likes
760

hi,

i will take only 132 char's.

so u define 2 or 3 selection texts and concatenate those 2 or 3 selection texts and display them.

Read only

Former Member
0 Likes
760

Hi

IN SAP there is a limit of LENGTH for each and every field/name/parameter

so upto that length only you can declare

You can't exceed more that that.

Make it simple and meaningful description and display

since it is a just selection text field, if it is understandable with some small length that's fine. So you can't display full length.

Reward points for useful Answers

Regards

Anji

Read only

Former Member
0 Likes
760

Hi,

You can create multiple text and concatenate them in your code.

regards.

Read only

Former Member
0 Likes
761

HI,

try this

SELECTION-SCREEN BEGIN OF BLOCK B01 WITH FRAME TITLE TEXT-001.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(20) TEXT-T01 FOR FIELD R_POST.

PARAMETERS: R_POST RADIOBUTTON GROUP G1.

SELECTION-SCREEN COMMENT 50(33) TEXT-T02 FOR FIELD R_RPT.

PARAMETERS: R_RPT RADIOBUTTON GROUP G1.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN END OF BLOCK B01.

and give the text for this R_POST

here it will take 132 char length

regards,

venkatesh.

Read only

0 Likes
760

Hi Venkatesh,

Thank U very Much.

Problem has been solved,

Bye,

Satya.