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

parameter declaration in the selection screen

Former Member
0 Likes
6,718

Hi Guys...........

I am here with a problem this time ....

i have a need to declare a selection screen parameter which can fit 300 characters.....

upto my knowledge we cannot do it ...however if any one could help me if they have done it already...thanks a lot ...

in case if we go into the issue why 300 characters ... here it is :

i have 15 paramters with character size 20 ...

so i have to add up all the parameter values( will be text) and store it in one parameter ( so 15 parameters * 20 size each) gives up 300 characters need to be fit in the parameter.

if there is any other solution plzzz do reply me ...

thanks in advance ...

regards

chandu reddy

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,275

Hi,

Try to use structure type SOLI.

Hope magic Works!

Regards,

Purvesh.

4 REPLIES 4
Read only

Former Member
0 Likes
2,276

Hi,

Try to use structure type SOLI.

Hope magic Works!

Regards,

Purvesh.

Read only

Former Member
0 Likes
2,275

Hello,

We can do it but is it correct way or not you try it.

You create one data element with Domain char300 and assign that data element to the parameter in the selection screen.

PARAMETER: y_v_p TYPE ychae300.

Try in this way.

Or you can use like this

PARAMETER: y_v_p TYPE LINE.

Edited by: Santosh Marupally on Oct 31, 2008 1:40 PM

Read only

Former Member
0 Likes
2,275

Hi,

You can declare STRING if you are not in 4.7

PARAMETERS : P_A TYPE STRING.

Regards

Edited by: Rajvansh Ravi on Oct 31, 2008 1:41 PM

Read only

Former Member
0 Likes
2,275

thanks guys for alla ur time and help got resolved by type char1024