Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following figure illustrates the syntax of a USAP job intercept table definition.


<pre>
Job_Intercept_Table_Header_Statement  [Job_Intercept_Table_Row_Statements]
</pre>
Panel
Html bobswift

Job Intercept Table Definition File Keywords

...

Keyword

Length

Required

Restricted Values

INTERCEPT_ROW

1024

Yes

Row name. (**This value is only used internally by USAP. It does not effect the SAP table definition.)

CLIENT

3

No

 


JOB_NAME

32

No 


JOB_CREATOR

12

No 


Sample Job Intercept Table Definition File

...

The file will append four rows to the SAP job intercept criteria table.


html-bobswift
Panel
<pre>
/* Job Intercept Table Header statement */
INTERCEPT_TABLE          = "TABLE_1"
    APPEND               = "X"
;

/* Job Intercept Row statement */
INTERCEPT_ROW            = "1"
    CLIENT               = "850"
    JOB_NAME             = "TEST*"
    JOB_CREATOR          = "stonebranch"
;

/* Job Intercept Row statement */
INTERCEPT_ROW            = "2"
    CLIENT               = "850"
    JOB_NAME             = "TST*"
    JOB_CREATOR          = "stonebranch"
;

/* Job Intercept Row statement */
INTERCEPT_ROW            = "3"
    CLIENT               = "850"
    JOB_NAME             = "DEV*"
    JOB_CREATOR          = "stonebranch"
;

/* Job Intercept Row statement */
INTERCEPT_ROW            = "4"
    CLIENT               = "*"
    JOB_NAME             = "*"
    JOB_CREATOR          = "BOB"
;
</pre>

Anchor
1043965
1043965