GET_PARENT_TYPE

Use the GET_PARENT_TYPE script function to retrieve the object type of the activator (including users and CallAPI) or processor of a task. The task can be any type of executable object. For more information about processors and activators, see Superordinate Tasks (Parents).

Tip: Use SYS_ACT_PARENT_TYPE to retrieve the object type of the processor or activator of the current task (the task that contains the script function). For more information, see SYS_ACT_PARENT_TYPE.

Syntax

GET_PARENT_TYP[E](RunID[, ACT|PRC])

GET_PARENT_TYP[E]([ACT|PRC])

Parameters

Return Codes

The script function has the following return codes:

Example

The following script retrieves and uses the RunID of a task called MAWI.END.PROCESSING to return information about the activator of the task.

:SET &RunID# = GET_UC_OBJECT_NR(MAWI.END.PROCESSING)
:
SET &RET# = GET_PARENT_TYPE(&RunID#, ACT)
:
PRINT "The task was activated by type &RET#"

If the task was activated by a parent Workflow called JOBP.MM.PROCESSING, the output in the activation report would look as follows:

2018-11-06 15:26:01 - U00020408 The task was activated by type JOBP

If a user called Smith from the DEV department manually executed the task, the output would show the user name:

2018-11-06 15:26:01 - U00020408 The task was activated by type USER

See also:

Script element Description

GET_PARENT_NAME

Returns the name of the superordinate task (Parent)
GET_PARENT_NR Returns the run number (RunID) of the superordinate task (Parent)

Script Elements - Activation Data

About Scripts
Script Elements - Alphabetical Listing

Script Elements - Ordered by function