‎2015 Aug 14 8:11 PM
Hello all.
Does anybody know how to call an include dynamically?
Or call an abap program dynamically passing a global internal table and the called programa fills this internal table and returns it to the caller program to generate a log report?
Thanks in advance.
‎2015 Aug 14 8:22 PM
Is this what you are looking for?.
DATA: program(10) TYPE c VALUE 'PROGRAM1',
subroutine(4) TYPE c VALUE 'TEST'.
PERFORM (subroutine) IN PROGRAM (program) USING t_table.
Reward points if helpful.
Mauro.
‎2015 Aug 14 8:22 PM
Is this what you are looking for?.
DATA: program(10) TYPE c VALUE 'PROGRAM1',
subroutine(4) TYPE c VALUE 'TEST'.
PERFORM (subroutine) IN PROGRAM (program) USING t_table.
Reward points if helpful.
Mauro.
‎2015 Aug 14 9:19 PM
Hi,
IMHO it is better to describe the task you need to do and not
how to implement some technical solution that might do the job.....
Regards .
‎2015 Aug 14 9:48 PM