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: 

Pick up wrong Material description

Former Member
0 Kudos

Hi all,

Iu2019m getting wrong Material description in the report output.

Iu2019m displaying the report based on the sales order numbers.

But one sales order number doesn't have the material number,

Its not display the material number

But its display the Material description for previous material number description

How can I avoid this description in output?

Thanks,

Srini

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Sreenu,

While filling the internal table for final display, may be you are not clearing the workarea. So it is picking up the material description from previous record. If you clear the work area the issue should be resolved.

Best Regards,

Ram.

6 REPLIES 6

Former Member
0 Kudos

Hi,

Clear the Work Area immediatly after appending it to the final internal table which is used for display.

Thanks & Regards,

Vamsi.

0 Kudos

thx

Former Member
0 Kudos

Hi Sreenu,

While filling the internal table for final display, may be you are not clearing the workarea. So it is picking up the material description from previous record. If you clear the work area the issue should be resolved.

Best Regards,

Ram.

0 Kudos

Hi ,

You need to clear the work area after appending into the internal table.

like:

append workarea to internal table.

clear workarea.

Edited by: Bhavana Amar on Mar 10, 2010 11:02 AM

0 Kudos

thx

0 Kudos

thx