Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

which table stores selection criteria values given in SUBMIT statement

Former Member
0 Likes
639

Hi Experts,

I am passing selection criteria using submit statement like

SUBMIT report_name WITH f1 = val1.

I want to know which data base table stores the value val1.

Please reply .

Hi Experts,

I am passing selection criteria using submit statement like

SUBMIT report_name WITH f1 = val1.

I want to know which data base table stores the value val1.

Please reply .

4 REPLIES 4
Read only

RaymondGiuseppi
Active Contributor
0 Likes
602

- Outside scheduling of a background job, I would say NONE.

- During scheduling of a job those are stiored in a variant (table VARI, with  keys REPORT is submitted report and VARIANT like &0000000741833 counter)

Regards,

Raymond

Read only

0 Likes
602

Hi Raymond ,

Thanks for the reply.

What i understood from your post is

outside scheduling : Job is finished/terminated

During scheduling : Job is running and this particular entry is available in the table.

Here Report----- is Submitted report name

       Variant ----- Job counter ( output of Job_open function module )

Please correct me if i am wrong

Read only

0 Likes
602

without background scheduling - report is executed immediately, so system does not require to save the parameters.

inside background scheduling- parameters are saved in a temporary variant, at execution the parameters are recovered from this variant, purge jobs that clear job logs should remove those variants.

Regards,

Raymond

Read only

0 Likes
602

Hi raymond,

Here Report----- is Submitted report name

       Variant ----- Job counter ( output of Job_open function module )

Is this correct ? Thanks in advance