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

Display full length

Former Member
0 Likes
556

Hi All,

In my report i given selection-screen as

SELECT-OPTIONS: S_PSPNR FOR PRPS-PSPNR. " WBS ELEMENT

But when i use 'F4' i will get data with legth 18 .Actually some of data having WEB element length as 24.

example :while f4 i am getting following WEB element

'CL-00002-FROFR05TP' lentg(18) instead of 'CL-00002-FROFR05TPT01001' having lenght (24).Actually WBS element length as 18 with visible lenght as 24.

I need to display total 24 charcter length in selection screen instead of 18.I tried statments as

SELECT-OPTIONS: S_PSPNR FOR PRPS-PSPNR VISIBLE length 24.

can anybody tell me how to try this one.I heard that we can try in dialough module program.Is there any option to solve my issue.Please do needful help ASAP.

Abhi.....

Hi All,

In my report i given selection-screen as

SELECT-OPTIONS: S_PSPNR FOR PRPS-PSPNR. " WBS ELEMENT

But when i use 'F4' i will get data with legth 18 .Actually some of data having WEB element length as 24.

example :while f4 i am getting following WEB element

'CL-00002-FROFR05TP' lentg(18) instead of 'CL-00002-FROFR05TPT01001' having lenght (24).Actually WBS element length as 18 with visible lenght as 24.

I need to display total 24 charcter length in selection screen instead of 18.I tried statments as

SELECT-OPTIONS: S_PSPNR FOR PRPS-PSPNR VISIBLE length 24.

can anybody tell me how to try this one.I heard that we can try in dialough module program.Is there any option to solve my issue.Please do needful help ASAP.

Abhi.....

3 REPLIES 3
Read only

Former Member
0 Likes
490

Hi Shaik,

I think it is not possible to display the full length.

But you can do the following create a variale of length 24 & use it in the selection screen declaration. There you can provide Serach help for the selection screen by using At Selection-Screen Event.

e.g.:

DATA: c(24) TYPE c.

SELECT-OPTIONS: s_pspnr FOR c.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_sno-low.

Select Satatement.....

AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_sno-high

Select Satatement.....

Reward points if helpful answer.

Ashven

Read only

0 Likes
490

Hi Ashvender Kumar,

Thanks for Your responce.I tried ur logic But its display only 18 char length not showing 24 char length.may be it restict to selection scrren length.Is there any other ways to dsiplay 24 char length.Please advice me ASAP.

Abhi....

Read only

RaymondGiuseppi
Active Contributor
0 Likes
490

There is a converion exit on WBS element, use the key PSPID

SELECT-OPTIONS: S_POSID FOR PRPS-POSID.

Regards

Better late than never