Saltar al contenido principal

CurrentSignOffPopulatingList

Structure

CurrentSignOffPopulatingList

Parameters

none

Return Value

Char

Description

This function returns a '1' or '0' (or True/False) based on whether the event trigger is hitting simply during the population of the sign-off rules (summary text beneath the sign off grid) or if the rule is actually being enforced - like upon event start-up or event finish - to decide if the overall event status should be set to COMPLETE.

Example

if LookupEventFieldText("CUSTOM_FIELD1") <> "" then

if ((CurrentSignOffType = "FILTER") and (CurrentSignOffName = "WORK PACKAGE")) then

if CurrentSignOffPopulatingList then

AbortAction("")

Else

AbortAction("The WORK PACKAGE sign off rule was skipped because a User Defined value was input")

End If

End If

end if |