R3_MODIFY_INTERCEPTION

Use the R3_MODIFY_INTERCEPTION script element to modify the contents of the SAP system table in which the conditions for batch jobs are defined. The SAP client that is specified in the Login object referred to by the AE job is used.

Transaction: -
Interface: Standard (XBP 2.0
Note: R3_MODIFY_INTERCEPTION is also supported with the XBP 3.0 interface, but you have to use the ABAP INITXBP2 in SAP to explicitly set the "Interception" version within XBP 3.0 to 2.0. After that you can use this script element also with XBP 3.0.). See also: R3_GET_INTERCEPTION

Syntax

R3_MODIFY_INTERC[EPTION]

    [,NAME=...]
    [,USER=...]
    [,MODE=...]

Parameters

  • R3_MODIFY_INTERC[EPTION]
    Modifies the filter table for intercepted jobs

  • NAME=
    (Optional) Name of one or more SAP jobs. You can use the asterisk (*) wildcard character.
    Format: script literal
    Default value: *

  • USER=
    (Optional) Name of one or more SAP users. You can use the asterisk (*) wildcard character.
    Format: script literal
    Default value: *

  • MODE=
    (Optional) Processing mode for new table entry
    Format: script literal
    Allowed values:

    • REPLACE (default)
      All table entries of the SAP client are deleted and replaced by the new table entry.
    • APPEND
      A new table entry is added to the existing table entries of the SAP client.

Example

The following example determines all defined intercepted jobs.

R3_GET_INTERCEPTION

The activation report contains the following lines.

20200325/153054.000 - U2004943 ;001;IC*;*
20200325/153054.000 - U2004943 ;001;AE*;AE.WG

Now, all table entries are replaced by a new entry and the defined intercepted jobs are queried again.

R3_MODIFY_INTERCEPTION NAME='AE*',USER='AE.WG'
R3_GET_INTERCEPTION

The activation report now contains only one line.

20200325/153054.000 - U2004943 ;001;AE*;AE.WG

See also:

seealso

About SAP JCL