1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-15 12:30:06 +00:00

chore: updating doxy headers

This commit is contained in:
2021-01-21 21:47:41 +02:00
parent 94762d9381
commit da9a74ee14

View File

@@ -9,21 +9,30 @@
## Input table (minimum variables needed) ## Input table (minimum variables needed)
| variable| description | @li FLOW_ID - Numeric value, provides sequential ordering capability
|---|---|---| @li _CONTEXTNAME - Dictates which context should be used to run the job. If
|FLOW_ID| Numeric value, provides sequential ordering capability| blank, will default to `SAS Job Execution compute context`.
|_CONTEXTNAME|Dictates which context should be used to run the job. If @li _PROGRAM - Provides the path to the job itself
blank, will default to `SAS Job Execution compute context`.|
|_PROGRAM|Provides the path to the job itself| Any additional variables provided in this table are converted into macro
variables and passed into the relevant job.
| FLOW_ID| _CONTEXTNAME |_PROGRAM|
|---|---|---|
|0|SAS Job Execution compute context|/Public/jobs/somejob1|
|0|SAS Job Execution compute context|/Public/jobs/somejob2|
## Output table (minimum variables produced) ## Output table (minimum variables produced)
| variable| description | @li _PROGRAM - the SAS Drive path of the job
|---|---|---| @li URI - the URI of the executed job
|FLOW_ID| Numeric value, provides sequential ordering capability| @li STATE - the completed state of the job
|_CONTEXTNAME|Dictates which context should be used to run the job. If @li TIMESTAMP - the datetime that the job completed
blank, will default to `SAS Job Execution compute context`.| @li JOBPARAMS - the parameters that were passed to the job
|_PROGRAM|Provides the path to the job itself| @li FLOW_ID - the id of the flow in which the job was executed
![https://i.imgur.com/nZE9PvT.png](https://i.imgur.com/nZE9PvT.png)
## Example ## Example