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

Logic needed for report: Parameter Group

Former Member
0 Likes
487

hi..friends,

im dev a report: refernce std report - "S_ALR_87012178" is the tcode. there they are giving 5 slabs: ie. under 'Output control Sel Scrn - in "Due date sorted List" '. but my requirement is to do same like that for 10 slabs.

the values are dynamic. Accordingly we should display the amount falling in that specified period.

i hav already fetched the data. but to display them, i hav struck.

how to access the input and print them.

i hav to use alv hierarchical seq display format.

My decl:

SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 01(30) text-050 for field p_slab1.
SELECTION-SCREEN POSITION POS_LOW.
PARAMETERS: p_slab1 LIKE rfpdo1-allgrogr OBLIGATORY DEFAULT '15',
            p_slab2 LIKE rfpdo1-allgrogr OBLIGATORY DEFAULT '30',
            p_slab3 LIKE rfpdo1-allgrogr OBLIGATORY DEFAULT '45',
            p_slab4 LIKE rfpdo1-allgrogr OBLIGATORY DEFAULT '60',
            p_slab5 LIKE rfpdo1-allgrogr OBLIGATORY DEFAULT '75',
            p_slab6 LIKE rfpdo1-allgrogr OBLIGATORY DEFAULT '90',
            p_slab7 LIKE rfpdo1-allgrogr OBLIGATORY DEFAULT '115',
            p_slab8 LIKE rfpdo1-allgrogr OBLIGATORY DEFAULT '130',
            p_slab9 LIKE rfpdo1-allgrogr OBLIGATORY DEFAULT '145'.
SELECTION-SCREEN END OF LINE.

suggest me logic pls.

regards,

Padmashree.

2 REPLIES 2
Read only

Former Member
0 Likes
421

Hi,

Try out this.

declare all the parameters in the block.

selection-screen begin of block b2 with frame .

parameter: declare all the parameters.

selection-screen end of block b2.

hope it may help you.

Read only

Former Member
0 Likes
421

As there were no reply for a long time, iam closing this thread.