In some situations it might be useful, to maintain the parameters for executing the SSIS package locally instead of using the parameters provided by the InfoPackage.

To do so, just add the NotificationMapping XML sequence to the config file to overwrite the parameters provided by SAP. To find the correct parameters InfoSource and SourceSystem are the key columns.

Notification-Server-SAP-Override-01

<xml version="1.0" standalone="yes"?>
<BINotificationConfigBase xmlns="http://tempuri.org/BINotificationConfig.xsd">
  <BIListen>
    <Host>GARGIHost>
    <GatewayService>sapgw57GatewayService>
    <ProgramID>XTRACT01ProgramID>
  BIListen>
  
  <NotificationMapping>
    <InfoSource>ZAWVENDInfoSource>
    <SourceSystem>XTRACTSYSSourceSystem>
    <ExecCommand>dtexec.exeExecCommand>
    <CommandArgs>/f "C:\Source\XtractIS\Demos\BWLoadTest\BWLoadTest\BI7 InfoObject AdventureWorks ZAWVEND.dtsx" /set \package.variables[RequestID].Value;%REQUESTID%CommandArgs>
  NotificationMapping>   
  
  <OHSMapping>
    <OHSDestination>ZTH03OHSDestination>
    <ExecCommand>dtexec.exeExecCommand>
    <CommandArgs>/f "c:\Source\XtractIS\Demos\ZTH03.dtsx" /set \package.variables[RequestID].Value;%REQUESTID%CommandArgs>
  OHSMapping>
  
BINotificationConfigBase>

Here is the result:

Notification-Server-SAP-Override-02