Question

send parameters in outbound

  • 24 August 2023
  • 1 reply
  • 41 views

Badge +6

Hi Team,

 

is there any way we can pass some parameters (from BR  on column changed after commit )to outbound xml maps . we want to call external system to send few information on outbound parameters 

 

like highlighted in below  

<perform_outbound_integration>
  <parameters>
     <dataconnector>Metrix.Integration.JSONOutboundConnector</dataconnector>
    <extract_entity>Notification</extract_entity>
    <message_name>statusNotifications</message_name>
    <enable_time_constrain>N</enable_time_constrain>
    <even_status>@event_status</even_status>
    <input>
      <primary_table_constraints>
        <task_id>@task_id</task_id>
      </primary_table_constraints>
    </input>
  </parameters>
</perform_outbound_integration>


1 reply

Userlevel 4
Badge +12

Hi @seeda ,

Are you mentioning something like restructuring the standard message format of sending outbound message here? If this is the case, you need to be aware that this is the standard perform definition (MPM) message for outbound messages. If you add additional parameters other than the defined params, the system will try to find out a matching perform definition message according to your format in which eventually throw an error saying a valid match not found. But obviously you should be able to send these additional information in the message body itself by creating additional columns in the xml map. If you want to restructure the outbound message, then you will need to build a custom mpm.

Reply