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

Problem in BADI

Former Member
0 Likes
266

Hi Experts,

I am facing a problem, i am using a BADI and inside it..i ahve put some code as per our requirement,as the parameters for tht methods are PASS BY VALUE i am not able to clear the values permanently.

is there any way i can clear tht values, as they are getting displayed on the screen.

does this mean,tht i wond be able to clear it permanentle,as in pass by value the data is valid only to tht particular method.??

Based on some condition i am sorting the list and then after comming out of this badi,i should see the row(line item) which satisfies the condition.

Pls help me out..its very urgent.

Thanks,

SA

1 REPLY 1
Read only

mvoros
Active Contributor
0 Likes
233

Hi,

which BADI is it? If these parameters are not exporting parameters it is impossible to clear them. This is from ABAP help

You pass the parameter with values. This means that the parameter

contents are copied both when the parameter is passed and when it is

transferred back to the calling parameter. For structures that contain

tables, performance may be reduced considerably. Therefore, you should

not do this.

But the importing parameters are not copied back to caller.