Returns the contract context as a raw vector.
Syntax
tdr.GetContractDef()
Example: Get the Contract Context
The following statements set the contract context:
myctx <- list( division="appliances", codes=c(10, 34) ); myctxS <- serialize( myctx, NULL ); tdr.SetContractDef( myctxS );
The following statement retrieves the previous contract context in raw form and transforms it to its original form:
myctx <- unserialize(tdr.GetContractDef());