‎2012 May 30 2:22 PM
Hi,
I have report selection screen that having 5 parameters in single line. that contains the input data of aging intervals
ie 30 60 90 180 365
that means 0-30 30-60 60-90 90-180 180-365
I have placed 5 parameter values in single line.
But i wanted to know is any other way i can achieve this , I am looking of better way .
Please find the attached image.
Thanks
aRs
‎2012 May 30 2:44 PM
The user is defining the aging days? That's very unusual...most business have a set way they want aging, particularly of receivables, reported. If on the other hand, these are checkboxes, describe them any way you want. The logic is so simple for summarizing by age that I'm sure you've already worked through that.
‎2012 May 30 3:27 PM
Thanks for your reply
I am looking more of technical solution to 5 parameters boxes in single line.. i needs to avoid this 5 parameters inputs ..is there any better way to capture 5 inputs
I don't want in one after another
Thanks
aRs
‎2012 May 30 4:38 PM
Well, I don't really understand what you're trying to achieve. Sorry...there are many ways, including simply assigning some values, or adding constants in your program. But, precisely, what is the requirement? Is the user supposed to define the aging criteria, or decide which age categories are to be displayed or ??
‎2012 Jun 01 6:42 AM
Hi ,
You can use below syntax to display 5 parameters in single line
SELECTION-SCREEN BEGIN OF LINE.
...
[SELECTION-SCREEN POSITION {pos|POS_LOW|POS_HIGH} [ldb_additions]].
...
SELECTION-SCREEN END OF LINE.
Code
SELECTION-SCREEN: BEGIN OF LINE,
parameters P1 TYPE CHAR2 POSITION 16.
PARAMETERS para TYPE c LENGTH 20.
SELECTION-SCREEN: COMMENT 40(40) text,
END OF LINE.
‎2012 Jun 01 6:58 AM
Hi,
you can use the list box,,bcz you know the parameters values already,,that is better way to select interval,,,,using VRM_SET_VALUES
any help revert back
Thank and regards
‎2012 Jun 01 7:26 AM
Hi,
Why dont you use check box like below:
If you need one selection at a time use Radio-button.
With regards,