ftos.context.response.setNavigationInsert
IMPORTANT!
Starting with v24.3.0, this is renamed from setNavigationInsert to ftos.context.response.setNavigationInsert.
Starting with v24.3.0, this is renamed from setNavigationInsert to ftos.context.response.setNavigationInsert.
Opens a record insert form after the transaction completes. If another workflow is triggered when the transaction completes, it will run immediately after the record insert form opens.
This is a routes method for business service components.
Syntax
function ftos.context.response.setNavigationInsert(entityName: string, formName:string): void
| Parameter | Description |
|---|---|
entityName
|
Name of the entity where you wish insert the record. |
formName
|
Name of the entity's form you wish to open in insert mode. |
Examples
In this example, we open the default form of the Customers entity in insert mode.
ftos.context.response.setNavigationInsert('Customers', 'default');