I'm looking for output from a Trace node connected to the out terminal of the XMLTransformation node. _________________ I am *not* the model of the modern major general.
CREATE COMPUTE MODULE Dispatcher_LOG CREATE FUNCTION Main() RETURNS BOOLEAN
BEGIN
DECLARE MT CHARACTER 'A';
DECLARE I INTEGER 0;
DECLARE J INTEGER CARDINALITY(InputRoot.XML.Log.Transaction[]);
SET MT = InputRoot.XML;
CALL CopyEntireMessage();
WHILE I < J DO
IF (InputRoot.XML.Log.Transaction.LocationType = 'CCD'
THEN
RETURN TRUE;
END IF;
SET I = I + 1;
END WHILE;
RETURN FALSE;
END;
CREATE PROCEDURE CopyEntireMessage() BEGIN
SET OutputRoot = InputRoot;
END;
END MODULE;
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum