MsgFrameValueExist(field);
field
1 0 In the following examples, the frame contains the blocks blkA, blkB, and blkC structured as shown in the figure below.The following script returns 1 if the field idType in the second instance of block blkA contains a value:$fieldExists=MsgFrameValueExists("blkA:2/idType");
Example 75 Checking if the field idType in the second instance of blkB in the first instance of blkA contains a value.The following script returns 1 if the field idType in the second instance of block blkB in the first instance of block blkA contains a value:$fieldExists=MsgFrameValueExists("blkA:1/blkB:2/idType");
Example 76 Checking if the field idType in the second instance of blkB in the N:th instance of blkA contains a value....$counter = 1;$fieldExists=MsgFrameValueExists("blkA:" + $counter +"/blkB:2/idType");$counter++;...
OpenText StreamServe 5.6 | Updated: 2013-03-01 |