Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

FIX: Hotfix enables support for 997 functional acknowledgements for HIPAA 5010 Errata in BizTalk Server 2009


View products that this article applies to.

Summary

This article describes a hotfix that supports 997 functional acknowledgements for HIPAA 5010 Errata in Microsoft BizTalk Server 2009.

↑ Back to the top


Resolution

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: 

Override4010FunctionalAckWith5010FunctionalAck

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.


↑ Back to the top


Status

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

↑ Back to the top


References

For information about the service packs and cumulative update list for BizTalk Server, see Service pack and cumulative update list for BizTalk Server and Information about BizTalk hotfixes and service pack support

↑ Back to the top


Keywords: kbqfe, kbfix, kbsurveynew, kbexpertiseadvanced, kb

↑ Back to the top

Article Info
Article ID : 2724375
Revision : 1
Created on : 1/7/2017
Published on : 11/30/2014
Exists online : False
Views : 255