Application Development 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: 

Navigating in the ALV screens

Former Member
0 Kudos

Dear friends,

I have created an alv report which uses the selection criteria in the selection screen. If am executing the screen a report is generated(Primary report) and from the primary report based on the selection made the "STANDARD REPORT" is called using SUBMIT AQZZ/SAPQUERY/H2STAFF_CHANGES2......(skiping the selection screen of the standard transaction). And hence i could get the secondary report directly from the primary list. Now if i click on the back button in the standard(secondary) list i want to navigate to my primary list (primary report). But ass of now if click the back button it is taking me to my program lines.

Kindly revert back if u have any queries on my question.

Thanks in advance

Karthikeyan

1 ACCEPTED SOLUTION

naimesh_patel
Active Contributor
0 Kudos

Use the RETURN addition.


 SUBMIT AQZZ/SAPQUERY/H2STAFF_CHANGES2
WITH selection
AND RETURN.

Regards,

Naimesh Patel

2 REPLIES 2

naimesh_patel
Active Contributor
0 Kudos

Use the RETURN addition.


 SUBMIT AQZZ/SAPQUERY/H2STAFF_CHANGES2
WITH selection
AND RETURN.

Regards,

Naimesh Patel

Former Member
0 Kudos

Thanks u.

Problem resolved