Application Development 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: 

ME_PROCESS_REQ_CUST-PROCESS_ACCOUNT

Former Member
0 Kudos

in method PROCESS_ACCOUNT, how to get the PR's item data as in EBAN/mereq_item internal table

5 REPLIES 5

Former Member
0 Kudos

hello do yu solved it ?

Former Member
0 Kudos

Hi ester,

You can do it with IMPORT and EXPORT keywords to memory id.

Regards

Rahul

0 Kudos

Hi!!!

Could give me an example of IMPORT and EXPORT ?

Thanks in advance.

0 Kudos

Hi ,

You can try this way.

CALL METHOD im_account_ref->get_item

RECEIVING

re_item = if_item.


*******get line items*******

CALL METHOD if_item->get_data

RECEIVING

re_data = ls_item.


Regards,

Madhu

0 Kudos

Thank you very much.

I have solved it that way.

Thankx..