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.


Panel
Job_Intercept_Table_Header_Statement  [Job_Intercept_Table_Row_Statements]

Job Intercept Table Definition File Keywords

The following tables list the keywords available for each statement, the maximum length of the associated values, whether or not they are required, and any restricted value sets. The first keyword in each table is the keyword required to start the corresponding statement.

...

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.


Panel
/* 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"
;

Anchor
1043965
1043965