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

PNP Report(Selection Screen)

Former Member
0 Likes
1,050

hi,

i had attached the <b>Standard Selection screen</b> to my <b>ALV</b> report but i am not able to apply checks on the Selection screen to filter the data on my report and want to display accordingly..

can anybody help me on this...

hi,

i had attached the <b>Standard Selection screen</b> to my <b>ALV</b> report but i am not able to apply checks on the Selection screen to filter the data on my report and want to display accordingly..

can anybody help me on this...

5 REPLIES 5
Read only

Former Member
0 Likes
920

Since you are using a LDB,the selection screen is automatically created by the PNP LDB.You can modify the selections by going to <b>report attributes</b>-click on the "HR Report Category" button.A popup screen will be displayed in which you can create your own report category.

Here you can modify the selection criteria as per your requirements

Read only

0 Likes
920

ravi thanks for suggestion...but that i had aleardy done..

my problem is that i have to display Difffrent <b>ALV outputs</b>

depand upon value enter by user in the fields of Standard selection screen ..

but when i am applying check to one field on selection screen..Get pernr statement it automatically filled all data which i donot want ....

can u have any sugggestion for this..i want to display ALV Outputs depands on user selection...can this can be happpen using <b>LDB</b> or not...?

plz need help.

Read only

0 Likes
920

I am afraid this will not be possible in the LDB.Using the report category you can only filter the selection criteria.

The ALV display cannot be handled through LDB

Read only

Former Member
0 Likes
920

Hi Dinesh,

Even though I am not able to understand your query, just thought of sharing the idea which I used in one of the ALV.

CASE 'X'.

WHEN rad1.

CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

EXPORTING

i_callback_program = sy-cprog

i_structure_name = 'ZSTOP_SALARY'

i_grid_title = ' MANUAL STOP SALARY REPORT'

TABLES

t_outtab = itab

EXCEPTIONS

program_error = 1

OTHERS = 2.

WHEN rad2.

CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

EXPORTING

i_callback_program = sy-cprog

i_structure_name = 'ZSTOP_SALARY'

i_grid_title = ' VACATION STOP SALARY REPORT'

TABLES

t_outtab = itab

EXCEPTIONS

program_error = 1

OTHERS = 2.

ENDCASE.

Just check this... Hope this might help you out.

Best Regards

Renjan

Read only

0 Likes
920

ranjan thanks for mail..but the problem is not that,

i want to apply checks on the field of Standard Selection screen so that..for different fields different ALV output should display..but i am not able to apply check on standard selection screen field..

can u have any idea about that.