‎2008 Oct 31 12:23 PM
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
‎2008 Oct 31 12:36 PM
Hi,
Try to use structure type SOLI.
Hope magic Works!
Regards,
Purvesh.
‎2008 Oct 31 12:36 PM
Hi,
Try to use structure type SOLI.
Hope magic Works!
Regards,
Purvesh.
‎2008 Oct 31 12:40 PM
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
‎2008 Oct 31 12:41 PM
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
‎2008 Oct 31 1:52 PM
thanks guys for alla ur time and help got resolved by type char1024