‎2008 Oct 22 7:34 AM
Hi,
I have a drill down report painter ( Tcode is S_ALR_87012078). It is working fine, but when I am trying to come out of the report by pressing back button, it is getting into SAP Easy access menu instead of selection-screen for the t-code.
Parameters in the transaction:
D_SREPOVARI-REPORTTYPE: RE
D_SREPOVARI-REPORT:
D_SREPOVARI-EXTDREPORT: FBRK01RFRRK20 0SAPDUEAN-01
D_SREPOVARI-VARIANT
D_SREPOVARI-NOSELSCRN
Is it the feature of drill-down reports or can we do something to get back to the selection-screen instead of SAP easy access menu.
Thanks in advance,
Vishnu Priya
‎2008 Oct 22 7:40 AM
Hi Priya,
Please check this in u r program.
at user-commend.
if sy-ucomm = 'BACK'.
Leave to list processing.
endif.
‎2008 Oct 22 7:40 AM
Hi Priya,
Please check this in u r program.
at user-commend.
if sy-ucomm = 'BACK'.
Leave to list processing.
endif.
‎2008 Oct 22 7:49 AM
Hi Kiran,
It is a standard report Painter. I did not find anything like that in the code.
But I cannot change it also, it is a standard report painter report.
My question is that , ' Is it a feature of all drill-down reports of Report painter, (D_SREPOVARI-REPORTTYPE = RE)' or is there some way to get the selection-screen.
Because I created a tcode for custom drill down report painter report using parameter transaction (D_SREPOVARI-REPORTTYPE = RE) , there also I face the same pbm.
Regards,
Vishnu Priya
‎2008 Oct 22 7:41 AM
hi,
yes, it is the standard functionality of that report.
when you press back,it goes to 'leave to scrren 0" statement and comes out.
‎2008 Oct 22 7:45 AM
Hi
Use this
at user-command.
case sy-ucomm.
when 'BACK'.
leave screen.
end case.
Regards
Winnie