‎2014 Aug 18 2:52 PM
Hi All,
I have created a function module with processing type as Remote Enabled (RFC).
and import paratmeter table type I_tab_ABCD
I have called the function module in a report ZREP
CALL FUNCTION 'ZUPLOAD' IN BACKGROUND TASK
I have declared a class instance, and callled a method of that class inside the function module.
The method import the same table type parameter.
The problem is that the function module do no call the method, and the returns to the INITIALIZATION statement of the REPORT "ZREP".
Your advice and suggestions are welcome.
Regards,
Soumen Das.
‎2014 Aug 18 2:59 PM
Hi Soumen,
The background task will only be executed after 'COMMIT WORK'.
regards,
Archer
‎2014 Aug 18 2:59 PM
Hi Soumen,
The background task will only be executed after 'COMMIT WORK'.
regards,
Archer
‎2014 Aug 18 3:01 PM
Do you have Commit work in the code after your call for the background task to start. You will not be able to debug this the normal way and the debugger will immediately jump to next command line in the ABAP code. .