I want the use to be abble to submit my job in background so I use the standard scheduling FM :
JOB_OPEN, BP_START_DATE_EDITOR, JOB_CLOSE
Usually, we call a program using :
SUBMIT program
USER SY-UNAME
VIA JOB JOBNAME
NUMBER JOBCOUNT.
In my case I must pass structures and internal tables so I cannot use the standard PARAMETER/SELECT-OPTION to pass these values.
I'm wondering if we can schedule a FM instead of a program ? This way, I will be able to pass my parameters.
If it's impossible, what is the best way to pass interna tables to the program ? export/import from memory ?
thanks