‎2006 Jan 31 9:26 AM
Hi everyone,
Can anyone help me out with a function module to read delivery item if we pass delivery number to it.
Advance Thanks
Regards
Aadarsh
‎2006 Jan 31 9:28 AM
Why FM??
YOu can use LIPS table for the same.
select *
from LIPS
into table it_lips
where vbeln = p_Vbeln.
‎2006 Jan 31 9:28 AM
Why FM??
YOu can use LIPS table for the same.
select *
from LIPS
into table it_lips
where vbeln = p_Vbeln.
‎2006 Jan 31 9:28 AM
Hi
Why don't you directly read the tables?
LIPS for items
LIKP for header
Max
Message was edited by: max bianchi
‎2006 Jan 31 9:32 AM
Hi,
why do you need FM for that,
you can do using select
parameters: p_vbeln like likp-vbeln.
data: p_possnr like lips-posnr.
select single posnr
into p_posnr
from lips
where vbeln = p_vbeln.if you want this as FM , you can write your own custom FM, import vbeln, export posnr.
place the above code..inside FM
regards
vijay
‎2006 Jan 31 9:39 AM
see ISP_READ_DELIVERY,
/SPE/GET_SINGLE_DELIVERY
the bove fn modules may help u. if u need only fn modules.
or else u can do by select statements as suggested above