Posted: Wed Mar 26, 2014 12:08 pm Post subject: Mflow Coding Input to OutputRoot
Novice
Joined: 08 Nov 2013 Posts: 11
Hi
I'm new to MB v8 ..
Creating an Application and Test Message Flow. When in the Compute Node of my Mflow , if I use the following code.. it generates the correct output cause it simply copies the immutable InputRoot to mutable OutputRoot.
Code:
Set OutputRoot = InputRoot ;
But when I use following code.. in place of above in the same compute node, I don't get the desired output. I simply get <Candidate/> as an Output.
Code:
Set OutputRoot.XMLNSC.Candidate.FirstName = InputRoot.XMLNSC.PERSON.FNAME ;
Set OutputRoot.XMLNSC.Candidate.LastName = UPPER(InputRoot.XMLNSC.PERSON.LNAME);
Set OutputRoot.XMLNSC.Candidate.Old = InputRoot.XMLNSC.PERSON.AGE ;
My dummy input message is small and used for above codes ..
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