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

Report painter Drill down report

Former Member
0 Likes
1,021

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
767

Hi Priya,

Please check this in u r program.

at user-commend.

if sy-ucomm = 'BACK'.

Leave to list processing.

endif.

4 REPLIES 4
Read only

Former Member
0 Likes
768

Hi Priya,

Please check this in u r program.

at user-commend.

if sy-ucomm = 'BACK'.

Leave to list processing.

endif.

Read only

0 Likes
767

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

Read only

GauthamV
Active Contributor
0 Likes
767

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.

Read only

Former Member
0 Likes
767

Hi

Use this

at user-command.

case sy-ucomm.

when 'BACK'.

leave screen.

end case.

Regards

Winnie