|
Home > Archive > BizTalk Server General > February 2005 > Cumulative concatenate functoid Bts2004
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Cumulative concatenate functoid Bts2004
|
|
| jeremy 2005-01-10, 5:52 pm |
|
I am having some problems using the cumulative concatentate functoid,
particulary with the scoping parameter. The default scoping parameter
concatenates
the entire document while I want to concatenate only the detail elements in
each record (which is unbounded). Providing a scoping parameter of 1
provides an empty string???
Anything else than 1 provides the entire document like the default of 0.
Anyone else experiencing this problem or have suggestions around it...ie
custom xslt?
inbound
<Invoices>
<Record>
<header></header>
<Detail><Value>a</Value></Detail>
<Detail><Value>b</Value></Detail>
<Detail><Value>c</Value></Detail>
</Record>
<Record>
<header></header>
<Detail><Value>d</Value></Detail>
<Detail><Value>e</Value></Detail>
</Record>
</Invoices>
undesired result
<Invoices>
<Summary>
<Detail><Value>abcde</Value></Detail>
</Summary>
<Summary>
<Detail><Value>abcde</Value></Detail>
</Summary>
</Invoices>
desired result
<Invoices>
<Summary>
<Detail><Value>abc</Value></Detail>
</Summary>
<Summary>
<Detail><Value>de</Value></Detail>
</Summary>
</Invoices>
| |
| Tan Nguyen 2005-02-11, 5:55 pm |
| There is a known issue with the cumulative functoids and the scoping
parameter. Please install the BizTalk Server 2004 SP1.
Regards,
Tan Nguyen
Microsoft BizTalk Server
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
| Thread-Topic: Cumulative concatenate functoid Bts2004
| thread-index: AcT3RH8bA36Jf7rcQLmnooxpkSWIVg==
| X-WBNR-Posting-Host: 66.6.80.48
| From: =?Utf-8?B?amVyZW15?= <jeremy@discussions.microsoft.com>
| Subject: Cumulative concatenate functoid Bts2004
| Date: Mon, 10 Jan 2005 10:45:03 -0800
| Lines: 52
| Message-ID: <D6CE7A6B-A7B2-4062-A947-F44B13D93C82@microsoft.com>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| Newsgroups: microsoft.public.biztalk.general
| NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
| Path: cpmsftngxa10.phx.gbl!TK2MSFTNGXA03.phx.gbl
| Xref: cpmsftngxa10.phx.gbl microsoft.public.biztalk.general:23401
| X-Tomcat-NG: microsoft.public.biztalk.general
|
|
| I am having some problems using the cumulative concatentate functoid,
| particulary with the scoping parameter. The default scoping parameter
| concatenates
| the entire document while I want to concatenate only the detail elements
in
| each record (which is unbounded). Providing a scoping parameter of 1
| provides an empty string???
| Anything else than 1 provides the entire document like the default of 0.
|
| Anyone else experiencing this problem or have suggestions around it...ie
| custom xslt?
|
| inbound
|
| <Invoices>
| <Record>
| <header></header>
| <Detail><Value>a</Value></Detail>
| <Detail><Value>b</Value></Detail>
| <Detail><Value>c</Value></Detail>
| </Record>
| <Record>
| <header></header>
| <Detail><Value>d</Value></Detail>
| <Detail><Value>e</Value></Detail>
| </Record>
| </Invoices>
|
|
|
| undesired result
|
| <Invoices>
| <Summary>
| <Detail><Value>abcde</Value></Detail>
| </Summary>
| <Summary>
| <Detail><Value>abcde</Value></Detail>
| </Summary>
| </Invoices>
|
|
| desired result
|
| <Invoices>
| <Summary>
| <Detail><Value>abc</Value></Detail>
| </Summary>
| <Summary>
| <Detail><Value>de</Value></Detail>
| </Summary>
| </Invoices>
|
| |
| jeremy 2005-02-12, 5:48 pm |
| Tan, the hotfix for this issue that was provided to us worked until the
service pack was released.
Thanks,
Jeremy
"Tan Nguyen" wrote:
> There is a known issue with the cumulative functoids and the scoping
> parameter. Please install the BizTalk Server 2004 SP1.
>
> Regards,
> Tan Nguyen
> Microsoft BizTalk Server
>
> This posting is provided "AS IS" with no warranties, and confers no rights.
>
> --------------------
> | Thread-Topic: Cumulative concatenate functoid Bts2004
> | thread-index: AcT3RH8bA36Jf7rcQLmnooxpkSWIVg==
> | X-WBNR-Posting-Host: 66.6.80.48
> | From: =?Utf-8?B?amVyZW15?= <jeremy@discussions.microsoft.com>
> | Subject: Cumulative concatenate functoid Bts2004
> | Date: Mon, 10 Jan 2005 10:45:03 -0800
> | Lines: 52
> | Message-ID: <D6CE7A6B-A7B2-4062-A947-F44B13D93C82@microsoft.com>
> | MIME-Version: 1.0
> | Content-Type: text/plain;
> | charset="Utf-8"
> | Content-Transfer-Encoding: 7bit
> | X-Newsreader: Microsoft CDO for Windows 2000
> | Content-Class: urn:content-classes:message
> | Importance: normal
> | Priority: normal
> | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
> | Newsgroups: microsoft.public.biztalk.general
> | NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
> | Path: cpmsftngxa10.phx.gbl!TK2MSFTNGXA03.phx.gbl
> | Xref: cpmsftngxa10.phx.gbl microsoft.public.biztalk.general:23401
> | X-Tomcat-NG: microsoft.public.biztalk.general
> |
> |
> | I am having some problems using the cumulative concatentate functoid,
> | particulary with the scoping parameter. The default scoping parameter
> | concatenates
> | the entire document while I want to concatenate only the detail elements
> in
> | each record (which is unbounded). Providing a scoping parameter of 1
> | provides an empty string???
> | Anything else than 1 provides the entire document like the default of 0.
> |
> | Anyone else experiencing this problem or have suggestions around it...ie
> | custom xslt?
> |
> | inbound
> |
> | <Invoices>
> | <Record>
> | <header></header>
> | <Detail><Value>a</Value></Detail>
> | <Detail><Value>b</Value></Detail>
> | <Detail><Value>c</Value></Detail>
> | </Record>
> | <Record>
> | <header></header>
> | <Detail><Value>d</Value></Detail>
> | <Detail><Value>e</Value></Detail>
> | </Record>
> | </Invoices>
> |
> |
> |
> | undesired result
> |
> | <Invoices>
> | <Summary>
> | <Detail><Value>abcde</Value></Detail>
> | </Summary>
> | <Summary>
> | <Detail><Value>abcde</Value></Detail>
> | </Summary>
> | </Invoices>
> |
> |
> | desired result
> |
> | <Invoices>
> | <Summary>
> | <Detail><Value>abc</Value></Detail>
> | </Summary>
> | <Summary>
> | <Detail><Value>de</Value></Detail>
> | </Summary>
> | </Invoices>
> |
>
>
|
|
|
|
|