Previous Topic: existsFolderNext Topic: existsProcess


existsInteractionRequestForm

The existsInteractionRequestForm function checks whether an interaction request form object exists in the given path. The path can be an absolute/relative path. The relative path is relative to the process in which the script is executed.

Syntax

bExists = existsInteractionRequestForm(irfPath)

Arguments

irfPath (String)

Specifies the full/relative path of interaction request form object whose existence needs to be checked.

Return Value

bExists (Boolean)

Returns true if the interaction request form object exists or false if it does not.

Example

if (existsInteractionRequestForm(irfPath))
{
	Process.mseg_irf= "Interaction Request Form exists" ;
}
else
{
	Process.mseg_irf= "Interaction Request Form does not exist" ;
}