Categorie: reference
Bijgewerkt: 2026-04-08
actionfield workflow actionfield604
ActionField604
Beschrijving: Change status of RequestForQuotation to Received. Custom: Nee
Propertiesbewerken
| Property | Type | Accessor |
|---|---|---|
| RequestForQuotation | RequestForQuotation | Root |
XMLbewerken
<Workflow Name="ActionField604" Version="2025.07.28" WorkflowType="Standard" xmlns="urn:Ultimo.Framework.Workflow-mapping">
<Security EditLevel="10" ViewLevel="20" UserContentLevel="30" />
<Description>Change status of RequestForQuotation to Received.</Description>
<Properties>
<Property Name="RequestForQuotation" Type="RequestForQuotation" Accessor="Root" Direction="In" />
<Property Name="Now" Type="DateTime" Accessor="Internal" Default="#{Environment.CurrentDateTime}" />
<Property Name="ReceiveEmployee" Type="Employee" Accessor="Internal" Default="#{User.EmployeeId}" />
<Property Name="Status" Type="Status" Accessor="Internal" />
</Properties>
<Execution>
<UserContent Name="Pre" />
<Validation Name="ValidateRequestForQuotationStatus" Condition="${RequestForQuotation.Status} == RequestForQuotationStatus.Sent" MessageCode="1190">
<Parameter Name="RequestForQuotation" Direction="In" Value="${RequestForQuotation}" />
</Validation>
<Transaction>
<Assign Name="Receive Date" Property="${RequestForQuotation.ReceiveDate}" Value="${Now}" />
<Assign Name="Employee that received this tenderrequest" Property="${RequestForQuotation.ReceiveEmployee}" Value="${ReceiveEmployee}" />
<ChangeStatus Name="Set status of RequestForQuotation record to rejected" DomainObject="${RequestForQuotation}" NewStatus="RequestForQuotationStatus.Received" />
</Transaction>
<UserContent Name="Post" />
</Execution>
</Workflow>