cancel
Showing results for 
Search instead for 
Did you mean: 

How to supress the message coming from fm rv_condition_copy

Sreenith
Explorer
0 Kudos

I am updating condition records using FM RV_CONDITION_COPY and showing a alv report with details of data uploaded, but while displaying alv one success message is shown in alv output.

"

Pricing error: Mandatory condition MWST is missing

"

How to remove this error? SD consultant says we are not using tax.

Accepted Solutions (1)

Accepted Solutions (1)

raymond_giuseppi
Active Contributor
0 Kudos

Did you consider sending an initial status message after execution of the FM?

  MESSAGE space TYPE 'S'.

Else look for parameters like enqueue and user_by_retail?

Hint: Perform a where-used search on the FM

Sreenith
Explorer
0 Kudos

This worked for me,Thankyou Raymond Giuseppi.

Answers (1)

Answers (1)

iftah_peretz
Active Contributor
0 Kudos

Hi,

Not sure if this is an RFC function (don't have access to an SAP system now) but if so, you can call it in an asynchronous manner and continue your logic on the callback. The same idea goes for calling it as a background task and checking the DB for success, before prompting the state to the user on ALV.

If this is not an RFC, a workaround would be to wrap it in an executable program and use the SUBMIT as a background task, to run immediately, from there continue the same logic as for the RFC background one.

Sreenith
Explorer
0 Kudos

Thankyou Iftah peretz, i got the issue resolved.