SYS_ACT_TOP_NAME

Script Function: Supplies the name of the top workflow"Permet d'ajouter, regrouper, associer, caractériser ou supprimer les tâches d'un workflow. Egalement un type d'objet propre à Automation Engine. [Anciennement appelé ""chaîne de traitement"" et ""chaîne de job"".]"

Syntax

SYS_ACT_TOP_NAME()

Return codes

Name of the top workflow
" " - The task was not activated by a workflow.

Example

In the following example, the return codes of the two scriptEgalement un type d'objet distinct dans l'Automation Engine. functions are compared in order to determine whether the task was activated without a workflow, within a workflow, or within the framework of several nested workflows. The corresponding message will then be sent to a user.

:SET &TNAME# = SYS_ACT_TOP_NAME()
:
SET &PNAME# = SYS_ACT_PARENT_NAME()

:
IF &TNAME# = &PNAME#
:   
IF &TNAME# = " "
:      
SEND_MSG ADMIN,AE,"Task does not run in a workflow."
:  
 ELSE
:      
SEND_MSG ADMIN,AE,"Task runs in a workflow &TNAME#. No superordinate workflows."
:   
ENDIF
:
ELSE
:   
SEND_MSG ADMIN,AE,"Name of the top workflow: &TNAME#."
:
ENDIF

See also:

Script element Description

SYS_ACT_TOP_NR

Supplies the run number (RunIDAbréviation du numéro d'identification unique. Il s'agit plus précisément d'un nombre qui identifie clairement l'exécution d'une Tâche. Le RunID peut comporter entre 7 et 10 caractères . Ils sont attribués par le composant Automation Engine.) of the top workflow

Script Elements - Activation Data

About Scripts
Script Elements - Alphabetical Listing

Script Elements - Ordered by function