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

ABAP Query - Dump

Former Member
0 Likes
702

I have a transport that contains the ABAP Query, user group, query variant and the tcode to run this abap query. The transport has moved to Prod but gives a dump when the tcode is run

Program "AQZZZMM_DATA====QRY_XXX_YYY== " not found.

The infoset query generates a report "AQZZZMM_DATA====QRY_XXX_YYY== ".

What do I need to get this working ?

I have a transport that contains the ABAP Query, user group, query variant and the tcode to run this abap query. The transport has moved to Prod but gives a dump when the tcode is run

Program "AQZZZMM_DATA====QRY_XXX_YYY== " not found.

The infoset query generates a report "AQZZZMM_DATA====QRY_XXX_YYY== ".

What do I need to get this working ?

3 REPLIES 3
Read only

Former Member
0 Likes
586

Hi,

The report name which get generated for the sap Query might change from DEV QAL and PRD. So try creating Tcode in Prd.

Read only

0 Likes
586

Thanks for your response. I copied the report SAP_QUERY_CALL to a Z report and replaced the parameters with values for global area, user group, query and variant.

Read only

Former Member
0 Likes
586

Hi,

The above solution will work if you assign the transaction in one server, If you want this will not work in quality/production boxes when transported the query..the program name will not be the same in all the servers...

For this. Do the below:

In SE93, Create a Paramter Transaction

-> Transaction = Start_report

-> In default values, give the below details:

     D_SREPOVARI-REPORTTYPE = AQ

     D_SREPOVARI-EXTDREPORT = Name of the Query

     D_SREPOVARI-REPORT = User Group

Save the transaction..Now if the program is generated with different names in the quality/proudction, this will still work..

Regards

Vijay Hebbal