‎2007 Feb 26 10:02 AM
in method PROCESS_ACCOUNT, how to get the PR's item data as in EBAN/mereq_item internal table
‎2010 Dec 03 8:23 AM
‎2010 Dec 09 5:20 AM
Hi ester,
You can do it with IMPORT and EXPORT keywords to memory id.
Regards
Rahul
‎2014 Jul 29 2:47 PM
Hi!!!
Could give me an example of IMPORT and EXPORT ?
Thanks in advance.
‎2014 Jul 30 1:58 PM
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
‎2014 Jul 30 2:07 PM