Hi - I have a BO that deals with Purchase Orders and the need to have an order Authorised by a User.
So, I use a Process that asks the User if they want to authorise the order, this uses a DISPLAY QUESTION within the process (see below), the process then changes a YES/No attribute (PurchaseOrder.Auth1Confirm). When the attribute PurchaseOrder.Auth1Confirm is changed to 'Yes' I have a Rule that records who & when the Order was authorised and then some attributes within the main form are hidden.
When the Process is run the Rule to record who & when authorised the order works correctly, suggesting that the Process is changing the attribute PurchaseOrder.Auth1Confirm to 'Yes', however, when records are viewed the attribute PurchaseOrder.Auth1Confirm is still showing as 'No' this has the knock on effect of not hiding attributes within my Form.
Process being used
If LoggedInRegularUser.AuthorisationLimit>=PurchaseOrder.PriceEstimate Then
DISPLAY QUESTION 'Are you sure you wish to authorise this Order?'
If Question.Reply='Yes' Then
PurchaseOrder.Auth1Confirm='Yes'
If Question.Reply='No' THEN
END PROCESS
Any ideas why this is acting in this way?