Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.

Summary

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

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.


Status

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

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

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Was this information helpful?

What affected your experience?
By pressing submit, your feedback will be used to improve Microsoft products and services. Your IT admin will be able to collect this data. Privacy Statement.

Thank you for your feedback!

×