Hi,
I am trying to submit a report via job, but the problem is that the report has a selection screen which I can't skip.
SELECTION-SCREEN BEGIN OF SCREEN 100.
PARAMETERS:
<p_par> TYPE <type>.
SELECTION-SCREEN END OF SCREEN 100.
I can't change this report.
I am able to pass the parameter via an rsparams table, but the selection screen is blocking the job.
This is how I submit the job:
SUBMIT <prog> AND RETURN
WITH SELECTION-TABLE lt_job_parameters
VIA JOB lv_job_name
NUMBER lv_jobcount.
Any help will be appreciated.
Thanks,