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 texts in the text element

Former Member
0 Likes
740

Hi,

I need to get text on the selection screen for the field t811l-cycle.

For the i had written the text in the text elements->selection texts .

ASSESSMENT / DESTRIBUTION CYCLE IS MY TEXT.

Upto now everything ok but the problem is on the selection screen i am getting only

ASSESSMENT / DESTRIBUTION CYC i.e LE is not visible on the selection screen.

Anybody can help me how can i get the full text on the selection screen.

Regards,

Haritha.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
690

Hi,

Selection screen select option and parameter have limited space for text rather than that try like below:



selection-screen: begin of line.
selection-screen comment 1(10) text-001 for field p_parameter.
parameters:p_parameter.
selection-screen: end of line.

Here text-001 is your selection text and p_parameter could be your parameter or select-option.

Regards,

Himanshu

Hi,

I need to get text on the selection screen for the field t811l-cycle.

For the i had written the text in the text elements->selection texts .

ASSESSMENT / DESTRIBUTION CYCLE IS MY TEXT.

Upto now everything ok but the problem is on the selection screen i am getting only

ASSESSMENT / DESTRIBUTION CYC i.e LE is not visible on the selection screen.

Anybody can help me how can i get the full text on the selection screen.

Regards,

Haritha.

4 REPLIES 4
Read only

Former Member
0 Likes
691

Hi,

Selection screen select option and parameter have limited space for text rather than that try like below:



selection-screen: begin of line.
selection-screen comment 1(10) text-001 for field p_parameter.
parameters:p_parameter.
selection-screen: end of line.

Here text-001 is your selection text and p_parameter could be your parameter or select-option.

Regards,

Himanshu

Read only

0 Likes
690

Hi,

Thank u for u r quick response But here the problem is i wanted to disply it in block. Plz can u provide me the solution regarding block....

Below is my requirement.

SELECTION-SCREEN BEGIN OF BLOCK sub_sel1 WITH FRAME TITLE text-105.

SELECT-OPTIONS: p_bukrs FOR tka02-bukrs,

p_cycle FOR t811l-cycle,

p_names FOR cdhdr-username NO INTERVALS.

SELECTION-SCREEN: END OF BLOCK sub_sel1.

Regrds,

haritha

Read only

0 Likes
690

Hi,

Try with below code

SELECTION-SCREEN BEGIN OF BLOCK sub_sel1 WITH FRAME TITLE text-105.

SELECT-OPTIONS: p_bukrs FOR tka02-bukrs.

SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 2(35) text-110                                " --> This will the text element for your field
                   FOR FIELD p_cycle.
SELECT-OPTIONS: p_cycle FOR t811l-cycle.
SELECTION-SCREEN END OF LINE. 

SELECT-OPTIONS: p_names FOR cdhdr-username NO INTERVALS.

Regards

Bala Krishna

Read only

0 Likes
690

Hi,

Thank a lot!!!!!!

It's working fine...

regards,

Haritha.