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

Multiple Parameters in same line

former_member194669
Active Contributor
0 Likes
2,522

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

6 REPLIES 6
Read only

Former Member
0 Likes
1,362

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.

Read only

0 Likes
1,362

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

Read only

0 Likes
1,362

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 ??

Read only

Former Member
0 Likes
1,362

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.

Read only

0 Likes
1,362

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

Read only

former_member282968
Contributor
0 Likes
1,362

Hi,

Why dont you use check box like below:

If you need one selection at a time use Radio-button.

With regards,