Reputation: 113
I am creating import application using BizTalk.
I have created File schema and Database tables schema and map those schemas as below:
Also, I want Filename into the table so I created scripting functiod and its scripts as below:
Now I am validating and testing map but it is giving me below error: Extension function parameters or return values which have Clr type 'XmlQualifiedName' are not supported.
Please see below SS for Orchestration:
Upvotes: 0
Views: 215
Reputation: 11527
As it looks you might have some repeating nodes, and you can't promote or distinguish a field that occurs multiple times, do the following.
internal_msg.fName = rcv_msg(FILE.ReceivedFileName);
Upvotes: 2