CALL FUNCTION 'BAPI_TRLSRVAPS_GETLIST'
EXPORTING
logical_system = lf_logsys
model = '000'
IMPORTING
number_of_lanes = lf_n_of_lanes
TABLES
location_from = lt_from_loc
location_to = lt_to_loc
product_selection = lt_product_sel
prod_procurement = lt_product_proc
return = lt_return.
DESCRIBE TABLE lt_product_proc LINES lf_lines.
I am getting a dump with error messgae
' There is already a line with the same key '
How to solve this ?
Add a comment