Cumulative update information
For BizTalk Server 2009
The fix that resolves this issue is included in cumulative update package 7 for BizTalk Server 2009.
For more information about how to obtain the cumulative update package, see
Cumulative update package 7 for BizTalk Server 2009 .
Hotfix information
After you apply this fix, you have to set
Override4010FunctionalAckWith5010FunctionalAck to
True as shown in the following screen shot:
The new setting is not available in the default pipelines. To use the new setting, you must create a new custom receive pipeline. Next, drag
EDI Disassembler and
Batch Marker component from the ToolBox. Then, use that custom pipeline in the required port. The new custom pipeline together with
EDI Disassembler will now have the new setting.
Additionally, if you have to set
GS08 to "005010X230," use
EDI Override Context properties to generate the required
GS08 on the outgoing 997 functional acknowledgement message for HIPAA 5010 Errata. Sample code from a custom pipeline component to set
GS08 to "005010X230" is as follows:
public IBaseMessage Execute(IPipelineContext pContext, IBaseMessage pInMsg)
{
const string ediPropertyNs = "http://schemas.microsoft.com/Edi/PropertySchema";
const string systemPropertiesNs = "http://schemas.microsoft.com/BizTalk/2003/system-properties";
const string overrideEdiHeader = "OverrideEDIHeader";
const string gs08 = "GS08";
const string messageType = "MessageType";
const string faDocType = "http://schemas.microsoft.com/Edi/X12#X12_997_Root";
if (pInMsg.Context.Read(messageType, systemPropertiesNs).ToString() == faDocType)
{
pInMsg.Context.Write(overrideEdiHeader, ediPropertyNs, (object) "true");
pInMsg.Context.Write(gs08, ediPropertyNs, (object) "005010X230");
}
return pInMsg;
}
See
how to use EDI Override Context properties in the MSDN website.