‎2008 Jun 29 5:42 AM
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
‎2008 Jun 30 12:12 AM
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.