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

report

Former Member
0 Likes
255

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

1 REPLY 1
Read only

Former Member
0 Likes
242

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.