cancel
Showing results for 
Search instead for 
Did you mean: 

Communication Channel information in abap tables

Former Member
0 Kudos

Hi ,

Could you let me know any abap table which contains information about communication channels in PI 7.0.

I have checked the following link

But the table SMPREL3 is not active in our data dictionary. is there any other table which stores this information.

-


My requirement is to get the list of all channels which have quality of service as EOIO in the processing tab of the comm channel.

Let me know if there are any other ways of checking this.

Accepted Solutions (0)

Answers (3)

Answers (3)

0 Kudos

Here Is complete solution:

select * from XI_DIRKEYCHANNEL; --- Channel Name and Channel ID

select * from XI_DIRSYNCADMIN; --- Channel ID and Channel Date

select * from XI_DIRDATACHANNEL; -- Channel ID and Channel whole XML as field ATTRBTS

To decipher LOB data type ATTRBTS field of above table to get channel data.

use below string:

select cast(BINTOSTR(cast(ATTRBTS as binary)) as varchar) from XI_DIRDATACHANNEL;

Navdeep Swami

PI Expert

Former Member
0 Kudos
Former Member
0 Kudos

Hi Varun,

Check "SSRVCHANNEL" table in the PI server.

This table contains the communication channels information.

Regards

Ramesh

Former Member
0 Kudos

Hi,

Try this as well...

SSRVBINDING

Regards,

Giuseppe