Anand Malli
Anand Malli

Reputation: 25

Help regarding BizTalk

i am having my biztalk solution, uptill now i am able to do following thing

1) taken sql adapter as my source schmea i wanted node wise xml so i did xml auto,elements in my SP to its generate schmea nodewise

2) i am able to loop through all the nodes and checking condition in loop wioth decide shape now decide shape is executing perfactly,but now the issue comes i want to insert my current xml into table,from all the xml nodes i am getting single node's xml like following

<userDetails xmlns="http://SqlRowLooping"><userID>1</userID><fName>niladri</fName><lName>Roy</lName><department>it</department></userDetails>

now i have updateGram as well but i think it will accept data attibutewise,right now it is firing error saying cant find procedure userID,

help how to insert this in table,

how updategram will work..

thxs

Upvotes: 0

Views: 75

Answers (1)

Timores
Timores

Reputation: 14589

Change the XML node to conform to updategram syntax, see MSDN

Upvotes: 1

Related Questions