Home Page › Forums › BizTalk 2004 – BizTalk 2010 › Evaluating on the amount of items returned in a message
- This topic has 40 replies, 1 voice, and was last updated 6 years, 4 months ago by
community-content.
-
AuthorPosts
-
-
September 17, 2009 at 12:04 PM #23271
Hi, I have a (Say customer invoice) that has a:
<header> = “The customer address”
<Body> = “This contains the invoices” this is made-up of a concatenation of three fields in a map,
Problem
I want the <Body> to be limited to 30 invoices and if there are more to take the <Header> + <body> to the next page ie.
if there are 45 invoices as below I would like to get to a solution like below:
15 Somewhere
county
Berkshire
BH21 700 NZ200000212120090914/09/2009
200000312120090914/09/2009
200000412120090914/09/2009
200000512120090914/09/2009
200000612120090914/09/2009
200000712120090914/09/2009
200000812120090914/09/2009
200000912120090914/09/2009
200000012120090914/09/2009
200000112120090914/09/2009
200000212120090914/09/2009
200000312120090914/09/2009
200000412120090914/09/2009
200000512120090914/09/2009
200000612120090914/09/2009
200000712120090914/09/2009
200000812120090914/09/2009
200000912120090914/09/2009
200000212120090914/09/2009
200000212120090914/09/2009
200000212120090914/09/2009
200000212120090914/09/2009
200000212120090914/09/2009
200000212120090914/09/2009
200000212120090914/09/2009
200000212120090914/09/2009
200000212120090914/09/2009
200000212120090914/09/2009
200000212120090914/09/2009
200000212120090914/09/200915 Somewhere
county
Berkshire
BH21 700 NZ200000212120090914/09/2009
200000212120090914/09/2009
200000212120090914/09/2009
200000212120090914/09/2009
200000212120090914/09/2009
200000212120090914/09/2009
200000212120090914/09/2009
200000212120090914/09/2009
200000012120090914/09/2009
200000112120090914/09/2009
200000212120090914/09/2009
200000312120090914/09/2009
200000412120090914/09/2009Thanks
Grant
-
September 18, 2009 at 8:58 AM #23278
Hi Grant,
To solve your problem, you can use a message debatching scenario and, inside a loop shape, count the number of debatched scenario messages, and construct your output message appropriately.
Daniel.
-
September 22, 2009 at 2:38 AM #23290
Hi Daniel,
thank you, i will give it ago.
Kind Regards,
Grant
-
-
September 28, 2009 at 9:02 AM #23329
Hi All,
I am still having trouble to think of a way of resolving this, I have it debatching with the header + body + tailor but I do not know howto do: look at the amount of rows coming in and if the body is greater than 30 add a header+body+trailor to the next page….
Does anyone know of a tutorial that does this sort of thing or would be willing to have a quick look at my solution?
Kind Regards,
Grant
-
September 28, 2009 at 9:35 AM #23331
Hi Grant,
Have a look at this blog and see if this can help you achieve what you need:
Best,
Daniel.
-
September 28, 2009 at 10:51 AM #23332
Hi Daniel,
Thanks again for your reply, I added the solution from the link but it did not seem to do anything (Not having a good day 🙂
PS sorry to ask but would you be willing to have a quick look at my project and just tell me if I am heading in the right direction, ,And if the pipeline is still the correct route to follow?
Kind Regards,
Grant
-
September 28, 2009 at 11:02 AM #23333
Hi Grant,
Are you able to put the code from the link into a project and compile it into a DLL? How much progress have you made so far?
Daniel.
-
September 28, 2009 at 11:09 AM #23334
Hi Daniel,
Yes compiled it deployed the project and can see it in the admin console with Batch set to 5, I have a flat file Flat file disassembler before the new MessageBatchComponent do you think that might be the issue? I am getting no error message and the file is being formated as before.
Kind Regards,
Grant
-
September 28, 2009 at 12:05 PM #23335
Hi Grant,
On the blog link, the author says to use this component in the Disassembler stage of a Receive pipeline…
Daniel.
-
September 28, 2009 at 12:11 PM #23336
Hi Daniel,
thanks that is what I done, but no luck. what I want does not sound hard but it seems that way for me 🙁
Kind Regards,
Grant
-
September 28, 2009 at 12:43 PM #23337
Have you tried placing your Flat File Disassembler after the batching component in the Disassemble stage or removing it entirely and see what happens? You can also try to troubleshoot that batching component by writing entries to a log file or Application Log in Event Viewer, just to make sure that the component is working as it should be…
Regards,
Daniel.
-
September 28, 2009 at 2:01 PM #23338
Hi Daniel,
First of all thank you for your patients and help on this: I could spend more time to get the pipeline working but I am not sure if this will help in my issue:
1. I am constructing the message (InputMsg)
2. Expression for Header details
TempRemitDoc = BACSRemittanceMsg;
strHeaderRemitMsg = TempRemitDoc.OuterXml;
strHeaderRemitMsg = strHeaderRemitMsg.Substring(0,strHeaderRemitMsg.IndexOf(“<BACSBody>”));
strTrailerRemitMsg = TempRemitDoc.OuterXml;
strTrailerRemitMsg = strTrailerRemitMsg.Substring(strTrailerRemitMsg.IndexOf(“<Trailor>”), strTrailerRemitMsg.Length – strTrailerRemitMsg.IndexOf(“<Trailor>”));
3. Expression for the BodyPart
RemitXmlDoc = BACSRemittanceMsg;
xmlRemitBodyNodeInit = RemitXmlDoc.SelectSingleNode(strRemitBodyNodeXPath);
sbRemitMsg.Append(xmlRemitBodyNodeInit.InnerXml);
4. Expression to add it all up and assign it to a message
RemitXmlDoc = new System.Xml.XmlDocument();
RemitXmlDoc.LoadXml(strHeaderRemitMsg+”<BACSBody>”+sbRemitMsg.ToString()+”</BACSBody>”+strTrailerRemitMsg);
Do you think the pipeline is still the best way forward?
Kind Regards,
Grant
-
September 28, 2009 at 3:18 PM #23339
Hi Grant,
If you can’t get the pipeline component to work, I would suggest that you use XPath and XQuery inside your orchestration to parse your BodyPart entity (to determine batch size) and construct your output message accordingly.
Best,
Daniel.
-
September 29, 2009 at 11:19 AM #23345
Hi Daniel,
thank you once again i will work on that solution.
Thanks again for your time.
Grant
-
September 30, 2009 at 6:46 AM #23347
Hi All,
is it possible to do a foreach statement within and expression shape:
i.e.
Foreach (BACSBody <= 30)
{
RemXmlDoc = new System.Xml.XmlDocument();
RemitXmlDoc.LoadXml(strHeaderRemitMsg+”<BACSBody>”+sbRemitMsg.ToString()+”</BACSBody>”+strTrailerRemitMsg);
}
Or awa y do this?
Kind Regards,
Grant
-
September 30, 2009 at 8:47 AM #23350
Hi Grant,
BizTalk uses XLANGs as its programming language in Orchestrations and underlying shapes, it’s derived from C# and is limited in its scope and syntax. For instance, the statement “Foreach” is not allowed.
You can use XPath to achieve what you want in parsing and grouping the contents of your output message. Here’s a link on how to get started on XPath: http://www.w3schools.com/xpath/default.asp
The following link is a sample from BizTalkGurus on using XPath in orchestrations (written for version 2004 but still applicable for 2006 R2):
https://www.biztalkgurus.com/media/p/15516.aspx
Here’s a link to another blog that you would find useful dealing with XPath: http://geekswithblogs.net/sthomas/archive/2004/10/25/13269.aspx
I hope this is enough information to get you started… Let me know how you make out on this.
Daniel.
-
September 30, 2009 at 9:13 AM #23351
Hi Daniel,
I am using xPath to return the count of the amount of records.
Expression Sharp
nRecordCount = System.Convert.ToInt32(xpath(Input, “count(//*[local-name()=’Person’])”)); //Say return 100
///This is the new part i wanted to do
was if (nRecordCount ==< 30)
{
RemitXmlDoc.LoadXml(strHeaderRemitMsg+”<BACSBody>”+sbRemitMsg.ToString()+”</BACSBody>”+strTrailerRemitMsg);
But the problem is I may have to repeat this as there could be a return of 300 or more:
The part I do not understand is would I have to rewirte the adding of strHeaderRemitMsg+”<BACSBody>”+sbRemitMsg.ToString()+”</BACSBody>”+strTrailerRemitMsg
if xPath?
Kind Regards,
Grant
}
-
September 30, 2009 at 9:58 AM #23352
Hi Grant,
Have a look at the following link: http://blog.eliasen.dk/2006/11/05/LoopingAroundElementsOfAMessage.aspx
You would follow the same pattern that the blog’s author details in Suggestion 1 with the loop and counters, etc.
Inside your loop, you would assign the following statement to a String variable in an Expression shape: MyVar = MyVar + “<BACSBody>”+sbRemitMsg.ToString()+”</BACSBody>” every time you loop through. Then you would have a decide shape inside the loop to look for a counter of batch of 30 records: if it is 30 records then you will have an Expression shape where you will do RemitXmlDoc.LoadXml(strHeaderRemitMsg + MyVar + strTrailerRemitMsg); and ouptut this message to a Send Port (if you want), reset the counter and move along in the workflow.
This scenario would work well if your message is not that large, assuming that’s the case, otherwise your orchestration will get a performance hit.
Regards,
Daniel.
-
September 30, 2009 at 2:26 PM #23356
Hi Daniel,
A really big thanks you!! I see the way now J
If may ask one final thing please, I knock together what you mentioned.
//Expression Shape (Get Record Count)
nRecordCount = System.Convert.ToInt32(xpath(Input, “count(//*[local-name()=’Person’])”));
nLoopCount =1;
//Loop
nLoopCount <= nRecordCount
//Decide
nLoopCount <= 30
////Expression Shape (Do Stuff)
System.Diagnostics.EventLog.WriteEntry(“ExpressionTrre”,System.Convert.ToString(nLoopCount));
////Expression Shape
nLoopCount = nLoopCount + 1;
My first 30 records take this route and the others that the ELSE route.
Now I think there is a problem with my counter in my loop, where would I reset this?
Kind regards,
Grant
-
September 30, 2009 at 2:55 PM #23357
Hi Grant,
You should have another secondary counter (i.e. nMessageCount) which keeps track of number of messages to batch. In your Decide shape, your first If Branch rule should have conditional statement like nMessageCount == 30 , and in the same flow, have an Expression shape where you reset this counter and your message variable myVar :
nMessageCount = 0;
myVar = “”;
Also, at the end of the loop, make sure to do the “stuff” one more time (the logic from your If Branch rule) so that you collect any remaining records that were not previously batched in the loop. Remember that you should increment the nMessageCount variable as you do for the nLoopCount.
You should be all set to achieve what you want.
Daniel.
-
September 30, 2009 at 3:16 PM #23358
Hi Daniel,
You are a gent thank you for your time and help. [:D]
Best Regards,
Grant
-
October 6, 2009 at 3:52 AM #23396
Hi Daniel,
Sorry to bother you again on this subject, I went to implement what you had suggested which seems correct but I have run into the following issue:my decide shapes are there job ie. nLoopCount <= 30 and then the expression has the following RemitXmlDoc.LoadXml(strHeaderRemitMsg + MyVar + strTrailerRemitMsg); But what I get is for the 43 records being returned in the count I get 43 times the same message beiong repeated in the out put file:
Any ideas
Grant -
October 6, 2009 at 10:28 AM #23402
Hi Grant,
In my previous post, I mentioned that your Decide shape should have the If Branch rule with its conditional statement set to nMessageCount == 30 , with nMessageCount being a secondary counter that you would use as a message batch counter, and you would reset that counter in the If Branch rule workflow.
Also, are you iterating through your original message in your loop, because you should not be getting the same message each time your loop comes around? To concatenate your messages together after extracting each one from your original message, define a Scope shape with transaction type Atomic, and inside that scope shape, define two variables, one of type System.Xml.XmlNode and the other of type System.Xml.XmlNodeList (let’s call them vXmlNode and vXmlNodeList). Then define an Expression shape in your Scope shape, that have the following lines of code (let’s call your original message InputMessage):
vXmlNodeList = xpath(InputMessage, “/*[local-name()=’Employees’ and namespace-uri()=”]/*[local-name()=’Employee’ and namespace-uri()=”][” + nLoopCount + “]”);
vXmlNode = vXmlNodeList.Item(0);
myVar = myVar + vXmlNode.InnerText;
This should help you achieve what you want. Let me know how you make out on this.
Daniel.
-
October 6, 2009 at 10:42 AM #23403
Hi Daniel,
I am going to follow what you have said word for word so are you saying in the decide shape I have nLoopCount <= 30 &
nMessageCount == 30 ? did not think you could have both?Sorry
Grant
-
October 6, 2009 at 10:44 AM #23404
ops ok you can let me do yhe rest of stuff you mention.
Thanks
Grant
-
October 6, 2009 at 11:10 AM #23405
Daniel,
am I right in thinking
vXmlNodeList = xpath(InputMessage, “/*[local-name()=’Employees’ and namespace-uri()=”]/*[local-name()=’Employee’ and namespace-uri()=”][” + nLoopCount + “]”);
nLoopCount is of type System.Int32 as it complaing about the conversation and I want to makesure I am following you correctly?
-
October 6, 2009 at 11:16 AM #23406
Hi Grant,
Yes, convert that variable to String like this: System.Convert.ToString(nLoopCount)
Sorry for the omission.
Daniel.
-
October 6, 2009 at 11:26 AM #23407
Sorry Daniel,
But does the converstion have to be outside the xpath..?
This is what I have vXmlNodeList = xpath(BACSRemittanceMsg,”string(//*[local-name()=’BACSRemittance_DATA’ and namespace-uri()=’http://P5.BizTalk.Schemas.PP_SAPToBottomlineBACSRemittance_App_FF’%5D/*%5Blocal-name()=’BACSBody’ and namespace-uri()=”]/*[local-name()=’BACSRemittance’ and namespace-uri()=”]/*[local-name()=’Remittance’ and namespace-uri()=”]/*[local-name()=’RemittanceDetail’ and namespace-uri()=”]/*[local-name()=’BACSRemittance_DATA’ and namespace-uri()=’http://P5.BizTalk.Schemas.PP_SAPToBottomlineBACSRemittance_App_FF’%5D/*%5Blocal-name()=’BACSBody’ and namespace-uri()=”]/*[local-name()=’BACSRemittance’ and namespace-uri()=”]/*[local-name()=’Remittance’ and namespace-uri()=”]/*[local-name()=’RemittanceDetail’ and namespace-uri()=”][” + System.Convert.ToString(nLoopCount) + “]”);
Grant
-
October 6, 2009 at 12:23 PM #23408
Hi Grant,
You can stick the function that does the conversion inside the call to xpath, when you pass the second argument to it.
Daniel.
-
October 6, 2009 at 12:37 PM #23410
Hi Daniel,
Can I just give you a summary of where I am so not to waste too much of your time before I deploy and test?
Shape
Expression
nLoopCount =1;
nMessageCount = 1;
Loop start
nLoopCount <= nRecordCount
Decide Shape
nLoopCount <= 30 & nMessageCount == 30
Atomic Scope
vXmlNodeList = xpath(BACSRemittanceMsg, “System.Convert.ToString(//*[local-name()=’BACSRemittance_DATA’ and namespace-uri()=’http://P5.BizTalk.Schemas.PP_SAPToBottomlineBACSRemittance_App_FF’%5D/*%5Blocal-name()=’BACSBody’ and namespace-uri()=”]/*[local-name()=’BACSRemittance’ and namespace-uri()=”]/*[local-name()=’Remittance’ and namespace-uri()=”]/*[local-name()=’RemittanceDetail’ and namespace-uri()=”]/*[local-name()=’BACSRemittance_DATA’ and namespace-uri()=’http://P5.BizTalk.Schemas.PP_SAPToBottomlineBACSRemittance_App_FF’%5D/*%5Blocal-name()=’BACSBody’ and namespace-uri()=”]/*[local-name()=’BACSRemittance’ and namespace-uri()=”]/*[local-name()=’Remittance’ and namespace-uri()=”]/*[local-name()=’RemittanceDetail’ and namespace-uri()=”][” + nLoopCount + “]”));
vXmlNode = vXmlNodeList.Item(0);
MyVar = MyVar + vXmlNode.InnerText;
Expression Add count
nLoopCount = nLoopCount + 1;
nMessageCount = nMessageCount + 1;
Any mistakes ?
Grant
-
October 6, 2009 at 1:01 PM #23411
Hi Grant,
See my response below, in the quote, I am highlighting the changes in bold… Hope this makes sense.
[quote user="Zen"]
Hi Daniel,
Can I just give you a summary of where I am so not to waste too much of your time before I deploy and test?
Expression Shape (Initialize variables)
nLoopCount = 1;
nMessageCount = 1;
nRecordCount = ? (put your line of code here)
Loop shape (nLoopCount <= nRecordCount)
Atomic Scope shape (contains the following expression shape)
Expression shape (get individual node)
vXmlNodeList = xpath(BACSRemittanceMsg, “//*[local-name()=’BACSRemittance_DATA’ and namespace-uri()=’http://P5.BizTalk.Schemas.PP_SAPToBottomlineBACSRemittance_App_FF’%5D/*%5Blocal-name()=’BACSBody’ and namespace-uri()=”]/*[local-name()=’BACSRemittance’ and namespace-uri()=”]/*[local-name()=’Remittance’ and namespace-uri()=”]/*[local-name()=’RemittanceDetail’ and namespace-uri()=”]/*[local-name()=’BACSRemittance_DATA’ and namespace-uri()=’http://P5.BizTalk.Schemas.PP_SAPToBottomlineBACSRemittance_App_FF’%5D/*%5Blocal-name()=’BACSBody’ and namespace-uri()=”]/*[local-name()=’BACSRemittance’ and namespace-uri()=”]/*[local-name()=’Remittance’ and namespace-uri()=”]/*[local-name()=’RemittanceDetail’ and namespace-uri()=”][” + System.Convert.ToString(nLoopCount) + “]”);
vXmlNode = vXmlNodeList.Item(0);
MyVar = MyVar + vXmlNode.InnerText;
Decide Shape
If Branch rule (nMessageCount == 30)
Expression shape (logic for batching message)
Do something here to construct your batch message with myVar
nMessageCount = 0;
myVar = “”;
Expression shape (Add counters)
nLoopCount = nLoopCount + 1;
nMessageCount = nMessageCount + 1;
End of Loop
Expression shape (logic for batching rest of message)
Do something here to construct your batch message with myVar
Any mistakes ?
Grant
[/quote]
-
October 6, 2009 at 1:39 PM #23412
Hi Daniel,
Got slightly confused so I have update accordingly with some questions:
Initialize Loop variables
nRecordCount = System.Convert.ToInt32(xpath(BACSRemittanceMsg, “count(//*[local-name()=’BACSRemittance_DATA’ and namespace-uri()=’http://P5.BizTalk.Schemas.PP_SAPToBottomlineBACSRemittance_App_FF’%5D/*%5Blocal-name()=’BACSBody’ and namespace-uri()=”]/*[local-name()=’BACSRemittance’ and namespace-uri()=”]/*[local-name()=’Remittance’ and namespace-uri()=”]/*[local-name()=’RemittanceDetail’ and namespace-uri()=”]/*[local-name()=’DocumentIdentifier’ and namespace-uri()=”])”));
On the Decide shape I have only got an nLoopCount <= 30 & nMessageCount == 30 // should this only be nMessageCount == 30 ?
Expression shape (get individual node) This error in bold
vXmlNodeList = xpath(BACSRemittanceMsg, “//*[local-name()=’BACSRemittance_DATA’ and namespace-uri()=’http://P5.BizTalk.Schemas.PP_SAPToBottomlineBACSRemittance_App_FF’%5D/*%5Blocal-name()=’BACSBody’ and namespace-uri()=”]/*[local-name()=’BACSRemittance’ and namespace-uri()=”]/*[local-name()=’Remittance’ and namespace-uri()=”]/*[local-name()=’RemittanceDetail’ and namespace-uri()=”]/*[local-name()=’BACSRemittance_DATA’ and namespace-uri()=’http://P5.BizTalk.Schemas.PP_SAPToBottomlineBACSRemittance_App_FF’%5D/*%5Blocal-name()=’BACSBody’ and namespace-uri()=”]/*[local-name()=’BACSRemittance’ and namespace-uri()=”]/*[local-name()=’Remittance’ and namespace-uri()=”]/*[local-name()=’RemittanceDetail’ and namespace-uri()=”][” + System.Convert.ToString(nLoopCount) + “]”);
Error msg Syste.convert.ToString(nLoop must be in form of xpath
vXmlNode = vXmlNodeList.Item(0);
MyVar = MyVar + vXmlNode.InnerText;
Do something here to construct your batch message with myVar (Grant(Added))
MyVar = MyVar + “<BACSBody>”+sbRemitMsg.ToString()+”</BACSBody>”;
RemitXmlDoc.LoadXml(strHeaderRemitMsg + MyVar + strTrailerRemitMsg);
Kind Regards,
Grant
-
October 6, 2009 at 2:09 PM #23413
Hi Grant,
1) In your Decide shape, your If rule branch should have conditional statement set to nMessageCount == 30 only.
2) The syntax error in your xpath expression can be solved by doing this:
vXmlNodeList = xpath(BACSRemittanceMsg, “/*[local-name()=’BACSRemittance_DATA’ and namespace-uri()=’http://P5.BizTalk.Schemas.PP_SAPToBottomlineBACSRemittance_App_FF’%5D/*%5Blocal-name()=’BACSBody’ and namespace-uri()=”]/*[local-name()=’BACSRemittance’ and namespace-uri()=”]/*[local-name()=’Remittance’ and namespace-uri()=”]/*[local-name()=’RemittanceDetail’ and namespace-uri()=”]/*[local-name()=’BACSRemittance_DATA’ and namespace-uri()=’http://P5.BizTalk.Schemas.PP_SAPToBottomlineBACSRemittance_App_FF’%5D/*%5Blocal-name()=’BACSBody’ and namespace-uri()=”]/*[local-name()=’BACSRemittance’ and namespace-uri()=”]/*[local-name()=’Remittance’ and namespace-uri()=”]/*[local-name()=’RemittanceDetail’ and namespace-uri()=”][” + System.Convert.ToString(nLoopCount) + “]”)
3) You should construct your MyVar variable in the Expression shape as following:
MyVar = MyVar + “<BACSBody>” + vXmlNode.InnerText + “</BACSBody>”;
Hope this helps.
Daniel.
-
October 6, 2009 at 2:15 PM #23414
Daniel,
I am really greatful for all your help:
1. still get the same syntax error:
2. If I have to construct the message as MyVar = MyVar + “<BACSBody>” + vXmlNode.InnerText + “</BACSBody>”;
Do I still need this MyVar = MyVar + “<BACSBody>”+sbRemitMsg.ToString()+”</BACSBody>”;
RemitXmlDoc.LoadXml(strHeaderRemitMsg + MyVar + strTrailerRemitMsg);
Sorry to be a pain
Grant
-
October 6, 2009 at 2:34 PM #23415
Hi Grant,
1. Try the following to see if this works:
vXmlNodeList = xpath(BACSRemittanceMsg, “/*[local-name()=’BACSRemittance_DATA’ and namespace-uri()=’http://P5.BizTalk.Schemas.PP_SAPToBottomlineBACSRemittance_App_FF’%5D/*%5Blocal-name()=’BACSBody’ and namespace-uri()=”]/*[local-name()=’BACSRemittance’ and namespace-uri()=”]/*[local-name()=’Remittance’ and namespace-uri()=”][” + System.Convert.ToString(nLoopCount) + “]”)
Also, you might want to download and install this tool from the following link:
http://www.bizbert.com/bizbert/2007/11/25/DanSharp+XmlViewer.aspx
It helps with pinpointing and validating XPath expressions and queries from XML data that you load into it. I found it useful when doing certain projects in BizTalk using XPath.
2. No, you do NOT need that statement in your code anymore: MyVar = MyVar + “<BACSBody>”+sbRemitMsg.ToString()+”</BACSBody>”;
I hope this all works out for you.
Daniel.
-
October 6, 2009 at 2:58 PM #23416
Hi Daniel,
Syntax still an issue:
Thanks for a link to the tool
Kind Regards,
Grant
-
October 7, 2009 at 9:37 AM #23418
Hi Grant,
I suggest that you use the tool (which link I sent to you) to troubleshoot your XPath query, as it is impossible for me to do that, since I don’t know the data structure of your XML contents. Once you find the path to your individual messages in that original message, it’s not hard to plug in your variable nLoopCount to iterate over each individual message in the XPath query expression.
Best of luck,
Daniel.
-
October 7, 2009 at 9:43 AM #23419
Hi Daniel,
thanks for coming back to me on this as I am banging my head of a wall on this, I have went between what you said before and I still am as a loss. is there anyway I can send you some screen-shots just incase what I am doing is blindly wrong?
Thanks again
Grant
-
October 7, 2009 at 9:56 AM #23421
Hi Grant,
I’ve sent you a request to add you as a Friend on this site. Check your Friends link for more information…
Daniel.
-
October 7, 2009 at 10:07 AM #23422
Hi Daniel,
I added you and typed some data > Select start conv and it went back to the main screen?
Can you try and say something to me?
Grant
-
October 30, 2009 at 10:21 AM #23596
Hi Daniel,
I would like to take this opportunity to thanks you for all your help over the last few weeks, you where always there to give me ideas/guidance. You even sent me email to see how I was doing with the issue I had and helped me to completion. You had your own work to-do but you where still there helping me, thank you so so much.
Kind Regards,
Grant
-
-
-
-
-
-
-
-
-
-
-
AuthorPosts
- The forum ‘BizTalk 2004 – BizTalk 2010’ is closed to new topics and replies.