‎2008 Jun 17 7:39 PM
Hi all,
Is there any function module to retrive the ekko table data for the given select-options and parametrs.
could you provide that.
Thanks & regards,
S.chaitanya.
‎2008 Jun 17 7:42 PM
There is no specific function module fo EKKO, but you can use the function module
RFC_READ_TABLE
Regards,
Ravi
‎2008 Jun 18 6:31 AM
dear chaitanya,
may be you can use this function module ME_READ_EKKO_MULTIPLE which can be used to pass the select options to retrieve the desired EKKO data.
OR the best way would be to do a SELECT Query which would retrieve the data faster and in an effective manner.
Hope this helps you.
Help Children of U.N World Food Program by rewarding and enocourage others to answer your queries
Thanks
Venugopal
‎2008 Jun 18 6:48 AM
AC_DOCUMENT_RECORD u can get all kind of data related to purchase order. i mean upto accounting
‎2008 Jun 18 7:04 AM
Hi,
I think you are trying to fetch PO related data. If the case is like that why don't you gor for BAPI related to related to PO.
for e.g.
BAPI_PO_GETDETAIL
BAPI_PO_GETITEMS
BAPI_PO_GETITEMSREL
BAPI_PO_GETRELINFO
BAPI_PO_GET_LIST
The best thing is to use select query .
Say, S_EBELN is the select option. Then you can use select query as:
select * from ekko into table it_ekko where ebeln in S_EBELN.
I hope this will help you.