Scripting Guide for Communication Server 1000/Meridian 1 PBX 437October 2007 IntrinsicsTRANSFERREDThe value indicates whether the call is transferred (where the return value isTrue) or not (where the return value is False).The value for the TRANSFERRED intrinsic is True only for the call ID that iscreated when you initiate a transfer. When the transfer is complete, the intrinsicvalue is False.This intrinsic applies to voice contacts only.Script syntaxTRANSFERREDReturn typeThis intrinsic returns a True or False value to the script.ExampleIn this example, transferred calls receive a recorded announcement (namedplease_complete_transfer_ran_gv) that tells the agent to complete the transfer.That is, the agent who performs the transfer hears theplease_complete_transfer_ran_gv announcement, but the original call (which ison hold during the transfer) does not. After the transfer is complete, the scriptrestarts at the top of the master script, and the original caller then hears arecorded announcement (hello_again_ran_gv) because the TRANSFERREDintrinsic returns to a false state after transfer completion.IF TRANSFERRED THENSECTION Tranfer_Loop/*force agent to complete transfer*/GIVE RAN please_complete_transfer_ran_gvWAIT 20EXECUTE Transfer_Loop