Enable sync scenario response payload in SAP PI 7.4 (Java Only)

This article will provide steps on how to enable sync scenario response payload in SAP PI. By default, synchronous scenario logging and staging is disabled to avoid consumption of resources.

But in case of errors in response mapping and for debugging we might need to understand data coming in response messages.

Two options are available to enable sync scenario response payload

  1. Global setting: this will enable staging of payload for all interfaces
  2. Local setting: this has more advantages as this can be handled from ICO and is very specific to the interface.

Read More

Synchronous timeout exceeded error in sap pi

A lot of time working on the synchronous scenario we see timeout exceeded error in sap pi.

Usually, to overcome this error we need to set the Java parameter in NWA but after SAP PI 7.31 we have the option of setting timeout parameter on the channel itself. This remains specific to that interface which has more advantages of not touching timeout parameter in global settings which affects all interfaces. It is very simple now to set the parameter in adapter module if we get synchronous timeout exceeded error in sap pi.

Read More

REST Adapter scenario in SAP PI – JSON/XML

This blog will provide a step-by-step guide on how to configure the sender REST adapter scenario in SAP PI. This document will help the PI developer/consultant who will like to learn about the Sender REST adapter configuration.

I will explain this by creating a simple asynchronous scenario REST –> PI –> File. usually, REST will be used for sync scenario but to provide

Usually, REST will be used for sync scenarios but to provide a basic understanding of how to configure REST adapter I am using Async.

In case you are interested in sync scenario here is a step by step guide Sync Scenario using REST adapter in SAP PI

REST Adapter scenario in SAP PI

Rest enabled application will send JSON format to SAP PI which will be converted into XML using REST Adapter.

Read More

File to IDOC Scenario in SAP PI 7.31 (AEX- Java Only)

This blog will provide the details steps involved in File to IDOC scenario in SAP PI 7.31 (Process Orchestration JAVA Only Environment)

Prerequisites:

  1. Connection Details to be available in SLDAPICUST for PI
  2. Update the SLD Data of ECC ABAP System.

Enterprise Service Repository:

All the Steps are same as any PI Version (7.0, 7.1, 7.11 etc  ABAP + Java environment). There are no changes in this.

  1. Create a Message Interface for File Interface (Outbound).
  2. Import the IDOC from ECC for Receiver Interface.
  3. Message Mapping and Interface Mapping to be done for Source and Target Message.

Read More