Available in: Logi Info | Source code name: Procedure.Data | Introduced in: 12.6 |
Procedure.Data sets @Procedure tokens that can be used later in the Task. The names and values for these tokens come from the columns/attributes of the first row of a DataLayer. For example, imagine a Procedure.Data with a child DataLayer.SQL having this SQL:
SELECT FirstName, LastName FROM Customers
In following Procedures, you may get the FirstName or LastName with @Procedure tokens, like:
@Procedure.myProcedureID.FirstName~ or @Procedure.myProcedureID.LastName~
Note that only values from the first row may be obtained with Procedure.Data. |