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: 

Express document "Update was terminated" received from author "XXXX" in VT02N

former_member311223
Participant
0 Kudos

Hi Experts,

Post Upgrade I am getting the this issue in VT02N while generating Output type in VT02N.

Express document "Update was terminated" received from author "XXXX"

Process followed:-

1) Tcode: VT02N, enter the "Shipment Number".

2) Goto-> Output -> Select the Output Type "ZQP2"-> Click on "Repeat output".

3) Then Click on "Save".

After that where ever we click i am getting the error mentioned above.

In the Output Type: ZQP2, if we click on "Further Data" the Request Processing Option is selected as : Send immediately ( when saving the application ).

If we keep the value here as default that is: "Send with job, with additional time specification" then this error is not coming. In ST22 it is showing paramater issue.

Category                      ABAP Programming Error

Runtime Errors             CALL_FUNCTION_UC_STRUCT

Except.                        CX_SY_DYN_CALL_ILLEGAL_TYPE

ABAP Program              SAPLZRQEDI

Application Component  Not Assigned

Date and Time               17.12.2013 14:48:32

Short text :      Type conflict during structure parameter transfer at CALL FUNCTION.

What happened?

     Error in the ABAP Application Program

     The current ABAP program "SAPLZRQEDI" had to be terminated because it has come across a statement that unfortunately cannot be executed.

Error analysis

    An exception occurred that is explained in detail below.

    The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_TYPE', was not caught in procedure "Z_RQ_IDOC_OUTPUT_QALITY02" "(FUNCTION)", nor was it propagated by a RAISING clause.

    Since the caller of the procedure could not have anticipated that the exception would occur, the current program is terminated.

    The reason for the exception is: In the function "Z_RQ_NAST_CERT_PDF_GET", the STRUCTURE parameter "T_CAR" is typed in such a way

    that only actual parameters are allowed, which are compatible in Unicode with respect to the fragment view. However, the specified actual

    parameter "L_CAR" has an incompatible fragment view.

How to correct the error

   If the error occurred in your own ABAP program or in an SAP program you modified, try to remove the error.

   The exception must either be prevented, caught within proedure "Z_RQ_IDOC_OUTPUT_QALITY02" "(FUNCTION)", or its possible occurrence must      be declared in the RAISING clause of the procedure.

But the problem is that if try to debug.. it is not allowing. Once we set the "Repeat Output" in the Message Output Type and SAVE it, it is giving the error mentioned even if click 'Enter' or perform any action on the screen.

Kindly Guide.

Regards

Gopa

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

You need to check the parameter definition of fm Z_RQ_NAST_CERT_PDF_GET

Max

5 REPLIES 5

Former Member
0 Kudos

Hi

You need to check the parameter definition of fm Z_RQ_NAST_CERT_PDF_GET

Max

0 Kudos

Hi Gopa,

Looks like some issue with the STRUCTURE parameter T_CAR, Please check the data type and place break-point in FM:Z_RQ_NAST_CERT_PDF_GET and debugg carefully and check how the data in T_CAR is populated.

Thanks,

Shreekant

former_member223981
Active Contributor
0 Kudos

Could be useful to paste the definitions of T_CAR & L_CAR here. That would provide us with more information on why the dump occurs.

Jelena
Active Contributor
0 Kudos

There should be no need to debug, just look at the definitions and do some basic analysis of the program. Also output runs in a separate update process, so you can't simply debug it from the document transaction.

0 Kudos

Hi All,

Did code changes in the Function Module: Z_RQ_IDOC_OUTPUT_QALITY02 and made changes in code to match the table structure: T_CAR and L_CAR.

Once I marched the structure of these tables T_CAR and L_CAR as per ST22 dump the issue got solved.

But Still now I unable to understand how the customer Z-Message Output Type was getting linked to this FM.

Anyway.. thanks all for ur suggestions.

Regards

Gopa