2006 Oct 10 6:48 AM
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...
2006 Oct 10 7:03 AM
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
2006 Oct 10 7:56 AM
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.
2006 Oct 10 7:58 AM
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
2006 Oct 10 8:15 AM
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
2006 Oct 10 11:40 AM
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.