Skip to Content
Technical Articles
Author's profile photo Freddy Valderrama

SAP PI/PO Communication Channel Tool

Hello community SAP.

Purpose of this blog post

In this blog post I will show you how can you work this a new communication channel tool in order to start or stop a channel in SAP PO from a SAP ABAP Program.

My system

My System: SAP S/4HANA 1909 and SAP PO 7.5

 

SAP Note relevant

2691666 – How to extract PI Communication Channel list

 

Steps

  1. You need to create a new program in the sap transaction SE38 as you can see in the developer system.

SE38

Write the name of the program, change the Attibutes/Type as “Executable program” and click on SAVE

Program%20Name

In the following window you can select a Package and a transportation request or you just can select Local Object.

2. Paste the following code and activate it.

CODE

 

 

 

3. You can now run the program.

The program take the name of SAP PO, port and the user from the configuration as you can see, just write you private password.

 

If all is OK you can see the list with the complete details of the communication channel.

 

You can see the C.C Total in SAP PO and their Status.

  1. If you do double click at one channel you will get a message from the system in order to reject or approver the change of status.
  2.  If you do doble click at the first green line you will get a mesage in order to reject or approver starting all the Communication Channels.
  3. If you do doble click at the second red line you will get a mesage in order to reject or approver stopping all the Communication Channels.
  4. If you do doble click at the thir blue line you will download the current status of the all channel in order save it as backup and you can update this same status in the future.
  5. If you do doble click at the yellow line you will upload and update the previus status downloaded.

Prerequisites

It is necessary the communication channel has the

control data in the communication channel monitor in External

Configuration and Monitoring Home / Monitoring / Communication Channel Monitor 

 

Conclusion

With this program we can manage our communication channel from another easy way.

 

Thanks for reading.

 

Freddy Valderrama

SAP ABAP/WF/PO/MDG Consultant

Assigned Tags

      2 Comments
      You must be Logged on to comment or reply to a post.
      Author's profile photo Marc Bernard
      Marc Bernard

      Hi Freddy,

      looks like a nice tool. Pasting code into a blog and making devs create this manually is so old fashioned. Check out abapGit and put your code in a git repository. This will make it so much easier for others to get your tool to give it a try.

      Best,

      Marc

      Author's profile photo Freddy Valderrama
      Freddy Valderrama
      Blog Post Author

      Thank you Marc.