Home Page › Forums › BizTalk 2004 – BizTalk 2010 › Naming send file in Biztalk and passing it to BRE › Re: Naming send file in Biztalk and passing it to BRE
September 21, 2009 at 4:57 PM
#23288
The %SourceFileName% macro uses the FILE.ReceivedFilename property from the message.
I suspect you are not setting this property on the outbound message after you have called the BRE.
You should copy the property from the inbound message to the outbound message i.e.
OutboundMessage(FILE.ReceivedFilename) = InboundMessage(FILE.ReceivedFilename);