---
sourceDocument: Australia ServiceNow AI Platform Capabilities
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/de-DE/servicenow-platform

 Release :

    - australia

ft:locale :

    - de-DE

ft:publication_title :

    - Australia ServiceNow AI Platform Capabilities

ft:clusterId :

    - platcap

bundleId :

    - platcap

workflow :

    - Platform


---

# Prepare a subflow

# Prepare a subflow {#ariaid-title1}

* Freigeben Version: Australia
* 
* Aktualisiert 12. März 2026
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 Minute Lesedauer

Review the process of preparing a subflow for use in a parent workflow, and for
preparing the parent workflow to use a subflow.

## Prozedur

1. In the editor, open and check out the workflow that you want to use as a subflow.
2. In the title bar, click the menu icon and select Edit Inputs.  
3. In the Workflow Inputs window, click New in the Variables list.
4. Add a new variable depending on the type of values that it is going to store.  
   The following example sets up a string value.
5. Click Submit.
6. Close the Workflows Inputs dialog.
7. Create a Run Script activity on the subflow.  
   * Set the value from the parameter to a field on the current form. This is important because the Notification activity can only pull values from the current variable and not from the newly added variable. The following example sets the value in the Description field.

     `current.description =
     workflow.inputs.bluesubvariable;`
   * Create a new field on the request form but do not display the field. This serves as temporary storage.  
   {#t_PrepareASubflow__ul_o4w_r4d_3r}
8. Create a Notification activity on the subflow and use `${description}` in the subject to return the value from the field.  
   This is what the subflow would look like:

## Prepare a workflow to use a subflow {#ariaid-title2}

After you create a subflow, use this procedure to prepare the parent
workflow.

### Prozedur

1. On the parent workflow, create a variable similar to what you did on the subflow, but name it something different.  
   In the following example, the variable is named Blue Main Variable.  
2. Click Submit.
3. Insert a Run Script activity to return the value from a field to the newly created variable.  
   In this example, the value of the Short Description
   field is returned and given to the newly created variable.

   `workflow.scratchpad.bluemainvariable =
   current.short_description;`  
4. Click Submit.
5. In the subflow activity, set the Blue Sub Variable to pass the `bluemainvariable` to the `bluesubvariable`.  
   `${workflow.scratchpad.bluemainvariable}`  
   This is what the main workflow looks like:

