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

reg:function module to retrive the ekko table data

Former Member
0 Likes
1,240

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.

4 REPLIES 4
Read only

Former Member
0 Likes
836

There is no specific function module fo EKKO, but you can use the function module

RFC_READ_TABLE

Regards,

Ravi

Read only

Former Member
0 Likes
836

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

Read only

0 Likes
836

AC_DOCUMENT_RECORD u can get all kind of data related to purchase order. i mean upto accounting

Read only

Former Member
0 Likes
836

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.