ADXIV
Purpose
Use the ADXIV statement to define the absolute or relative interval specified with the A or R value in the ADDEP PRECSEL parameter. Only one ADXIV can be used for each ADDEP statement. The statement must be nested within the ADDEP to which it refers.
Format
Parameters
- ADXIVADID(adid )
- The application name of the external predecessor to which the interval applies.
- ADXIVFD(days)
- The start of the absolute interval in days. The allowed range is 0-7.
- ADXIVFHH(hh)
- The start of the absolute
interval in the HH format. The allowed range is 00-24. Goes together
with ADXIVFMM. For example, if the absolute interval starts at 10:30
of the day before the input arrival time of the successor, it is defined
by:
ADXIVFHH(10) ADXIVFMM(30) ADXIVFD(1) ADXIVFWHE(B)
- ADXIVFHHH(hhh)
- The start of the relative interval in hours. The format is HHH and the allowed range is 0-167. Goes together with ADXIVFMM.
- ADXIVFMM(mm)
- The minutes fraction of the start of the relative or absolute interval.
- ADXIVFWHE(A | B)
- Specifies if the start
of the relative or absolute interval is before (B) or after (A) the
input arrival time of the successor.
For relative intervals only, you can choose to make the interval start at an indefinite time in the plan (in this case the mechanism used is similar to that of the closest preceding predecessor). To do this, do not specify this parameter, nor any of the ADXIVF... ones.
- ADXIVOPNO(operation number)
- The operation number of the external predecessor to which the interval applies.
- ADXIVTD(days)
- The end of the absolute interval in days. The allowed range is 0-7.
- ADXIVTHH(hh)
- The end of the absolute
interval in the HH format. The allowed range is 00-24. Goes together
with ADXIVTMM. For example, if the absolute interval ends at 12:30
two days after the input arrival time of the successor, it is defined
by:
ADXIVTHH(12) ADXIVTMM(30) ADXIVTD(2) ADXIVTWHE(A)
- ADXIVTHHH(hhh)
- The end of the relative interval in hours. The format is HHH and the allowed range is 0-167. Goes together with ADXIVTMM.
- ADXIVTMM(mm)
- The minutes fraction of the end of the relative or absolute interval.
- ADXIVTWHE(A | B)
- Specifies if the end of the relative or absolute interval is before (B) or after (A) the input arrival time of the successor.
- ADXIVTYPE(A | R)
- The interval type. Can
be one of the following:
- A
- Absolute interval. Must be defined by the following parameters: ADXIVFWHE, ADXIVFHH, ADXIVFMM, ADXIVFD, ADXIVTWHE, ADXIVTHH, ADXIVTMM, ADXIVTD.
- R
- Relative interval. Must be defined by the following parameters: ADXIVFWHE, ADXIVFHHH, ADXIVFMM, ADXIVTWHE, ADXIVTHHH, ADXIVTMM.
- ADXIVWSID(workstation ID)
- The name of the workstation running the external predecessor to which the interval applies.
Examples
This example specifies the absolute interval where an occurrence of application PAYDAILY containing the operation 020, run by workstation CPU1, is to be searched as a matching predecessor for the successor (the PAYWEEK operation defined in a preceding ADOP statement). The interval starts at 9 the day before the input arrival time of PAYWEEK (12:00) and ends at 15:30 of the same day that PAYWEEK is supposed to run.
ADXIV ADXIVADID(paydaily) ADXIVWSID(cpu1) ADXIVOPNO(020) ADXIVTYPE(A)
ADXIVFWHE(B) ADXIVFHH(09) ADXIVFMM(00) ADXIVFD(1) ADXIVTWHE(A)
ADXIVTHH(15) ADXIVTMM(30) ADXIVTFD(0)
This example specifies a relative interval to search the matching predecessor that resolves the same dependency of the previous example. The interval starts at an indefinite time before the input arrival time of PAYWEEK and ends 3 minutes before the input arrival time of PAYWEEK.
ADXIV ADXIVADID(paydaily) ADXIVWSID(cpu1) ADXIVOPNO(020) ADXIVTYPE(R)
ADXIVTWHE(B) ADXIVTHHH(000) ADXIVTMM(03)