Hi all,
I have usedhte Submit statement for the report RFITEMAP (Vendor line item) and get the entries in the Memory.
SUBMIT rfitemap EXPORTING LIST TO MEMORY
USING SELECTION-SET p_vari
AND RETURN.
In the report SAP has used one function module 'FI_ITEMS_DISPLAY' for displaying the Line items,How do i get those entries in my Submitting custom report.I have tried Memory options and Perform statement oprions,but cant able to retireve the values.can anybody explain me the way to retrieve the table values ( it_pos ).
call function 'FI_ITEMS_DISPLAY'
exporting
caller_repid = c_repid_ap
acctype = c_koart_ap
x_change = x_change
i_u_save = gd_alvsave
is_u_variant = gs_variant
it_u_fieldcat = gt_fieldcat[]
it_kontab = it_accts[]
it_slbtab = it_comps[]
it_t001 = it_h_t001[]
it_lfa1 = it_h_lfa1[]
it_lfb1 = it_h_lfb1[]
x_grid = x_grid
x_inet = pa_inet
tables
it_items = it_pos.
Thanks
Raja