‎2008 Jan 23 12:55 PM
hi
i want to display the out put like this :
in the header :
material: mara-matnr material description:marc-maktx
item header:
req-quantity allowed-quantity unit-of-measure factor
i am doing some calculation and looping the internal tables to get the fields like factor,required quantity....
plse help me how to get the data inthe list.
if i write at new i am not getting item details if the material have more than one record.
with regards
aaryaa
‎2008 Jan 23 1:07 PM
Madhu,
if u want to use at new <field> then dat field must be the first field of ur int table else at statements behaves like below........
see if ur table has 3 fields a,b,c
and has records as below
a b c
1 2 3
2 2 5
3 3 6
at new b will stop for all the three lines bcoz (at new b implies at new a,b)
a b c
1 2 3
1 2 5
3 3 6
in this case it ll stoptwice............
Cheers,
Will.