Hi All
I Have copied a Supplier performance report program from Production system of one server to the development system of other server.
production system shows ALV display., whereas., though the same program is being copied development server doesnt display the output..
Err Msg pops up : No Data Found.
When Debugged the same., it fails in submit program..(Vendor wise material data is fetched from this Standard program rm06em00)
there is data in rm06em00. But stilll fails..and Can Import and export be used at a time?
Kindly Suggest..
Code fails at below.
* fetch from Tcode ME2M
submit rm06em00 with em_matnr in s_matnr " MATERIALS
with em_werks in s_werks " Plant
with listu eq lc_alv "'ALV' " Scope of List
with s_pstyp in s_pstyp " Item category is populated in pgm as '' & 'L'
with s_lifnr in s_lifnr " Vendor
with s_bedat in s_aedat " PO date
exporting list to memory and return.
create data fs_data like fs_test.
assign fs_data->* to <lft_submit>.
import export = <lft_submit>[] from memory id 'ZME2M_MEMID'." OLD
free memory id 'ZME2M_MEMID'.
* Convert ME2M Field symbl data to simple IT
loop at <lft_submit> assigning <lfs_submit>.
lwa_submit = <lfs_submit>.
append lwa_submit to lt_submit.
endloop.