How to monitor messages using CIDX Communication Channel

I created a CIDX Communication Channel. XI failed to get a message from the source. How to monitor the messages using CIDX communication channel.

Not sure about the monitoring but u may recheck the communication channel settings as shown:
Sender
http://help.sap.com/saphelp_nw2004s/helpdata/en/0a/512041cfb7f423e10000000a155106/content.htm
Receiver
http://help.sap.com/saphelp_nw2004s/helpdata/en/68/1b20410e91f523e10000000a155106/content.htm
Regards,
Prateek

Similar Messages

  • Communication Channel Monitoring not showing up Communication  Channels

    Hi All,
    PI 7.1 : I  have created Communication Channel using File Adapter in ID and activated it. Adapter engine is Central Adapter Engine. But in Runtime Workbench I am not able to see communication channels created under Component Monitoring -> Adapter Engine -> Communication channel Monitoring. Please let me know what is the problem.
    And in ID I am getting below warning message for that Communication Channel.
    Message:  Unable to Check Whether Communication Channel is compatible with selected Adapter Engine since version information for  Adapter Engine is missing in SLD.
    Any idea? I appreciate your  quick help.
    Thanks,
    Carl

    Hi Abhishek,
    I have selected inID ,  File dapater software component  SAP BASIS 7.11 name space http://sap.com/xi/XI/System, adapter "file " is in that name space in ESR. In ESR there is only one BASIS Software Component SAP BASIS 7.11.
    Thanks,
    Carl

  • BD Lookup Error _ Not using the COmmunication channel!

    Dear all,
    I Tried to  do DB Lookup as told in this blog by siva
    /people/siva.maranani/blog/2005/08/23/lookup146s-in-xi-made-simpler
    I used the below code.
    I am not Getting any error, the mapping is successfully ACTIVATED. But in the Receiver field i am Getting Null as output , the DB lookup which i have mentioned is not connecting to the Database and executing and fetching the query. Just inthe receiver field its througing the Null valuse. The Required Value is not fetched by using the communication channel.
    I am getting the above error when i try to TEST THE MAPPING in IR.
    Below is the code i used.
    SERVER:XI 3.0
    SP:18
    RECEIVER DATABSE: MSQL SERVER 2000
    CODE----
    //write your code here
    String Query = "";
    Channel channel = null;
    DataBaseAccessor accessor = null;
    DataBaseResult resultSet = null;
    Query = "Select cir_id from circle where cir_sap = 'IDBL'";
    try{
    channel = LookupService.getChannel("<Business Service/System Name>","JDBC_channel_receiver Communication channel");
    accessor = LookupService.getDataBaseAccessor(channel);
    resultSet = accessor.execute(Query);
    for(Iterator rows = resultSet.getRows();rows.hasNext();){
    Map rowMap = (Map)rows.next();
    result.addValue((String)rowMap.get("cir_id"));
    catch(Exception ex){
    result.addValue(ex.getMessage());
    finally{
    try{
    if (accessor!= null) accessor.close();
    catch(Exception ex){
    result.addValue(ex.getMessage());
    END CODE----
    Please help me out.
    I am getting output as null. But in database value is there for cir_id where cir_sap='IDBL'.
    Regards,
    Prakash

    As i told before i have tested the interface, its not showing any error, its Activated and throwing Null as output.
    Its not fetching the value from database. In CC Monitoring also the adapter is in Green Status. No error over there. Its throwing the output as Null (Default value in the code.)
    Below is the connection parameter i have used:
    DRIVER:com.microsoft.jdbc.sqlserver.SQLServerDriver
    CONNECTION : jdbc:microsoft:sqlserver://<IP>:1433;DatabaseName=test_db
    But in the blog
    /people/siva.maranani/blog/2005/08/23/lookup146s-in-xi-made-simpler
    If u can see properly, he has mentioed some extra parameters in the JDBC Connection Parameters.
    But the screenshot is not proper so i am not able to see the querry he has used in Connection parameters.
    Please help
    Could anyone tell how to write the Select statement in Connection Parameter for Adapter as given (Partialy in screenshot in BLOG)?
    Regards,
    Prakash
    Edited by: senthilprakash selvaraj on Jul 1, 2008 7:33 AM

  • Non-EDI messages via AS2 Communication Channel

    Hi,
    We have many EDI interfaces running via AS2 communication channel provided by Seeburger.
    I was wondering whether AS2 should only be used for EDI message or any other normal XML formats also.
    If AS2 can be used for other formats also, what is the difference then sending the request via AS2  rather than HTTP.
    Since AS2 is using HTTP transport protocol, I could rather use HTTP communication channel itself.
    Let me know the differences please!

    I was wondering whether AS2 should only be used for EDI message or any other normal XML formats also.
    As far as I know, it is not restricted, I used AS2 protocol to transfer flat files in my last project
    If AS2 can be used for other formats also, what is the difference then sending the request via AS2 rather than HTTP.
    AS2 has more features than plain HTTP, like support MDN message, which allow sender to know the status of receipt immediatly.
    AS2 can be used as Aync or Sync.
    It can keep file name which is useful in some integration with financial institutes.
    Receipts of the file can not deny their receipts of the messages (NonRupdiation)
    Since AS2 is using HTTP transport protocol, I could rather use HTTP communication channel itself
    Yes, you could, but you might loss the feature that AS2 protocol provides, and some  trading partner only ask for AS2 protocol for the transmission of the files.
    Regards
    Liang

  • If message failed at communication channel, then need to send idoc to R/3

    Hi folks,
    i got a requirment like .....If message failed at communication channel, then need to send idoc to R/3.
    can anybody suggest the possible solution.

    HI
    If you use a catching a MAIL - PI ALERT and based on that alert if u creating an IDOC then it is good if u really supress the alert immediately once the ALERT comes but if u really check and supress the ALERT fine Otherwise a CONTINOUS IDOCs will get created at SAP system.
    Also there might be some natural generic reasons for communication channel fails
    a)  somtimes if the target FTP is down
    b)  if there is some issue with FILE ENOUGH
    c)  If File adpater is placing same file already exists or with already Opened by some target application
    d)  Dynamica file naming issue. (technical issue)
    WHy cant u do scenario in the below steps without keeping BPM, CATCHING ALERTS which doesnt give exact QUARANTEE
    Do one thing make a technical design in such a way into 1 flow or 2 flows in worst case
    In INTERFACE MAPPING-->
    a) Insert your current Normal Graphical mapping
    b) Javamapping:- This code will take the first mapping output as Input through Stream Transformation and create a same FILE through JAVA FTP Comments at specified Cleint Location. I recommend in order to avoid direct interraction of writing a file at client FTP better always write at your Local PI NFS Application outbound directory which doesnt require host name and user and pwd. Even if it requires you can do a RFC lookup and maintain a host, Port, User ID, pwd, Directory, FIle naming pattern in that table or else simply DO VALUE MAPPIING and pass it through XML INPUT from FIrst mapping as additional fields
    c) WITH IN THE SAME JAVAMAPPING: -
       If it successfully writes a file - wRite a TRACE log ("FILE NAME+ Sucecssfully written+ File Bytes")
       Then create an simple small XML OUTPUT and PASS that JAVA MAPPING OUTPUT To 3rd Grahical Mapping as Input it might be less than 5KB.
    Note: - Remember that this output XML should be ina Multmapping SPLIT MERGET FORMAT with 1 FIELD or required INFO
    as KEY FIELD INFO using DOM FACTORY
    d) GRAPHICAL MAPPING: -
      SOURCE IS JAVAMAPPING OUTPUT and TARGET HAS 2 messages
                           Message 1) SAME INPUT SMALL XML OUTPUT COMING FROM JAVA MAPPING OUTPUT
                           Message 2) IDOC TY{E STRUCTURE
    Keep a Condition based on KEY VALUE Coming from source field execute either 1 Message1 or Message 2
    In this way you can complete in a single Flow. 
    Later you can deifnee a simple flow to PICK and DROP from SOURCE file  Writing through javamapping to client location Or else
    WRITE A small OS SCRIPT and CALL in Receiver FILE COMMUNICATION at OS Command so that while writing a LOG file it will move the file from Source FTP to CLient FTP location.
    Regards
    Amar Srinivas Eli

  • Message Interface and Communication Channel are not getting in RW B

    Hi
    I have created a sceario in which i have created following things
    2 - External Definition of Same XSD
    2 - Data Types
    2 - Message Types
    4 - Message Interfaces
    2 - XSLT mappings
    2 - Interface Mapping
    I have created on two scenario objects in XI ID.
    But In RWB i can see only one sceario message interfaces and communication channels but the for other scenario MIs and Communication channels are not visible in RWB
    I have created all the things in only one Namespace.
    What could be the problem .please help me
    Regards

    Hi,
    Have you activated it?
    Can you see it in SXI_CACHE?
    If one is no please run report SAI_CACHE_REFRESH
    Kind regards,
    Wojciech

  • In repository what is the use of communication channel templates

    Hi People
                     what is the use of communication channel templates in integration repository? and  when we are using that please tell me the ASAP
    Thanks & Regards
    shekar

    HI,
    The communication channel template is for the documentation purpose that will give the information about the sender and receiver communication channels in IR. So No need to goto ID and check the related CCs each time for every scenario.
    You can preconfigure a communication channel with a communication channel template. You can use the communication channel template as a template to define a communication channel at configuration time.
    If you want to create multiple communication channels with some identical configuration data, you should use a communication channel template.
    Thanks
    Swarup

  • How to monitor Message Bridge runtime using WLST

    Hi Readers,
    I would like to monitor Message Bridge runtime on weblogic 8.1 using WLST script.
    Can anybody tell if there is any possibility? Is there a MBEAN avaialble for Messaging Bridge.?
    Edited by: user13254842 on 09-Sep-2010 23:17

    Hi,
    I don't recall whether the console provides a way to monitor the bridge, or whether the MessagingBridgeRuntimeMBean hangs off of some parent mbean, but you can obtain arbitrary mbeans using standard JMX query calls.
    Some scratch code that I have:
      private static MBeanServerConnection getConnection(
        String urlStr,
        String username,
        String password,
        String mbeanServer
      ) throws Exception {
        // This code implicitly requires weblogic classes to be in the classpath
        // in order to run efficiently, but its possible to get it to work without
        // any WL at all.   See
        //   http://e-docs.bea.com/wls/docs90/jmx/accessWLS.html#1118690
        // The code could be changed to automatically detect if WL is in
        // the classpath, and switch to "iiop" mode if it isn't.
        URI url = new URI(urlStr);
        Hashtable h = new Hashtable();
        h.put(Context.SECURITY_PRINCIPAL, username);
        h.put(Context.SECURITY_CREDENTIALS, password);
        h.put(
          JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,
          JMX_PROTOCOL_PROVIDER
        JMXServiceURL serviceURL = new JMXServiceURL(
           url.getScheme(), url.getHost(), url.getPort(), JMX_JNDI_ROOT + mbeanServe
        JMXConnector connector = JMXConnectorFactory.connect(serviceURL, h);
        return connector.getMBeanServerConnection();
    conn = getConnection(url, user, pass, "weblogic.management.mbeanservers.domainruntime")
    String type = "JMSServerRuntime";    // not sure may need to add "MBean" or strip off "Runtime", bridge = "MessagingBridgeRuntime"
    Set xxx =    conn.queryMBeans(new ObjectName("*:Type=" + type + ",*"), null);Hope this helps,
    Tom
    Edited by: TomB on Jun 10, 2009 2:57 PM

  • How to monitor messages on PI 7.3 AEX

    Hi Experts,
                       We are going to use PI 7.3 with a Java only service (AEX) for our project. While going through the SAP documentation for 7.3, found the following link which mentiones in a Note :
    "When you use the Advanced Adapter Engine Extended (AEX), the Runtime Workbench cannot be used for monitoring purposes"
    Link : http://help.sap.com/saphelp_nw73/helpdata/en/af/d36bc882e846f29ddef9dc1741527b/frameset.htm
    I searched in SDN and service marketplace but could not find any document specific to AEX monitoring only where 7.3 is used as a Java only installation.
    Do we need to do the monitoring via Solman only in this case?
    Would be helpful if anyone can provide me with any helpful links
    Regards
    Shiladitya

    Hi,
    1.Go to Monitoring tab -> Adapter Engine -> Message Monitor.
    When accessing Message Monitoring, you initially see an overview of messages according to a time range.
    2.Integration Directory offers one-click navigation from Communication Channel editor to the web channel monitoring using new channel PING function. This enables testing a channel in the local channel monitor .
    3.Support only Java-based adapter types.
    regards,
    ganesh.
    Edited by: ganesh.nijampudi on Dec 13, 2011 12:56 PM

  • How to receive alert mails when communication channel fails

    Hi everybody,
    Today there were in the "Communication Channel Monitoring" of the Runtime Workbench some Communication Channels in a "red" status and I would like to know if it is possible to receive per mail any alerts about a failing communication channel?
    In SXMB_MONI the error is the following:
    <SAP:AdditionalText>com.sap.aii.af.ra.ms.api.DeliveryException: RfcAdapter: receiver channel has static errors: can not instantiate RfcPool caused by: com.sap.aii.af.rfc.RfcAdapterException: error initializing RfcClientPool:com.sap.aii.af.rfc.core.repository.RfcRepositoryException: can not connect to destination system due to: com.sap.mw.jco.JCO$Exception: (102) RFC_ERROR_COMMUNICATION: Connect to message server host failed Connect_PM TYPE=B MSHOST=ECPOPR1.corp GROUP=PRODUCCION_SANTANDER R3NAME=PR1 MSSERV=sapmsPR1 PCS=1 ERROR partner not reached (host ECPOPR1.corp, service sapmsPR1) TIME Mon Apr 20 03:25:16 2009 RELEASE 640 COMPONENT NI (network interface) VERSION 37 RC -10 MODULE nixxi_r_mt.cpp LINE 8688 DETAIL NiPConnect2 SYSTEM CALL SiPeekPendConn ERRNO 79 ERRNO TEXT A remote host refused an attempted connect operation. COUNTER 1</SAP:AdditionalText>
    Usually, I receive mail alerts when messages failed since I have CCMS configurated but in the CCMS I don´t see any entries for this kind of errors with a Communication Channel...
    Thanks in advance,
    Regards,
    Olivier

    Hi!
    You can receive Alerts even though you are configured CCBPM. Through Control Step you can throw alerts but only difference between PI7.1 and XI is in 7.1 you can easily create Alert categoy in ESR itself at java stack but in XI you can't create it in Java stack you need to create this ALert category though ALRTCATDEF   t code  in ABAP Stack even though in 7.1 you created in Java Stack it will be reflecting in ABAP Stack.
    Next thing is later you need to Configure ALert Rules in RWB and in ABAP Stack at Alert Category you need to Add your XI SAP ID;s at FIxed Receipients and before adding this Ask your Basis people to link your company mail ID or any mail ID with SAP ID so that you can receive Alerts both in RWB ALert Inbox as well as your Mail Server.
    Since the above experts given diff blogs you can easily configure...
    I hope u understand the flow....right ?
    Regards::
    Amar Srinivas Eli

  • Finding a System Error Message (reflected in communication channel)

    Hi,
    I am working on release 3.0. I have found a System Error Message reflected in JDBC communication channel due to a data problem. I assume that this message is old and I can not find the message. It seems that I need the exact date and time when the message was created in order to find this message. I would like to find the payload to view the data and cancel the message.
    Does anyone have any tips on how to find this sort of message?
    Thanks,
    Leanne

    use the standalone Logviewer to read the log files. Works great.
    "If you have an SAP Web Application Server Java 6.20 or below you may also get a standalone_logviewer.zip file at the SAP Service Marketplace at service.sap.com/download u2192 SAP NetWeaver u2192 Release ‘04. In this case JDK version 1.3 or higher must be installed on the system. The java version must be same on the server and the client.
    In the SAP Web AS Java 6.30 installation a folder named logviewer_standalone can be found under: <path Of J2EE installation>/<SysID>/JC<nr>/j2ee/admin/logviewer_standalone. Verify that the batch file logviewer.bat is installed in the directory logviewer-standalone.
    (source -> http://help.sap.com/saphelp_nw04/helpdata/en/e4/540c404a435509e10000000a1550b0/frameset.htm)
    procedure is ..
    1.open Visual Administrator
    2.click Log Configurator
    3.Runtime->Destinations you can find out which destination is for defaultTrace.X.trx.
    4.change the formatter from "com.sap.tc.logging.ListFormatter" to "com.sap.tc.logging.TraceFormatter"
    if change couldn't take effect,reboot j2ee.
    regards
    chandra

  • How to monitor messages in PI 7.1

    Dear SAP,
    We are using PI 7.1. We would like to monitor messages in PI 7.1.
    There are the RWB in PI 7.1 and the NWAPI in PI 7.11.
    Question :
    I have a found a guide called "How To ... Monitoring Exchange Infrastructure 3.0)".
    This guide can be used to monitor message in XI 3.0 and PI 7.0.
    Do you know if there a more recent guide to implement the PI 7.0 monitoring ?
    Thanks
    Best regards
    NetWeaverAdmin

    Dear Shabarish,
    If I understand you well, even for PI 7.1 EHP1, you recommand to continue to use the RWB to monitor our PI system ?
    And we have to wait PI 7.3 to use the NWAPI ?
    Is it right ?
    Thanks
    Best regards
    NetWeaverAdmin

  • How to monitor message in BPM?

    Hi all
    I try to find in forums but I did not find. Could you please to guide me how I can to see message content in each step in BPM.
    Thanks and Regards
    Park

    Hi park,
    To monitor messages for BPM... got transaction SXMB_MONI_BPE
    there u can check each step.....
    hey... check the slide....also useful......
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/1db5e190-0201-0010-1c90-d9de570c6b18
    Regards
    Biplab
    <i>Reward with point if useful</i>

  • Configuration Wizard in ID is not using existing Communication Channel

    Hi,
    I am using PI 7.1.
    I created a Communication channel FileSenderCC for a Business System Sys_Sample_One_D with Party as blank.
    After creating i can see below object in the list of communication channels in the left pane.
    |Sys_Sample_One_D|FileSenderCC
    After this when i use Menu: Tools -> Configuration Wizard -> Internal Communication, to configure the scenrio, I selected the Business System Sys_Sample_One_D and Adapter Type "File", and proceed, while selecting the sender communicaiton channel, it cannot find the FileSenderCC that i created.
    If i manually enter FileSenderCC, and complete the scenario, it is creating a new communication channel with the samename, and not using the exisitng one.
    After that i see two communication channels in the left pane.
    |Sys_Sample_One_D|FileSenderCC
    *|Sys_Sample_One_D|FileSenderCC
    does this happen in PI 7.1 only, because when i worked in 7.0 long time back, i dont think i got this issue.

    Hi,
    I had the same issue on PI 7.1, it looks like a bug, but I found no note about it.
    I think you should open an OSS message for this.
    Kind Regards,
    Sergio

  • How to encrypt an outbound http communication channel?

    How can i take a synchronus outbound communication channel and encrypt it using https? In the dropdown I only see http and rfc destination?
    Thanks

    Hi
    Have look at this
    http://help.sap.com/saphelp_nw04s/helpdata/en/4f/65c3b32107964996a56e4165077e24/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/a4/d0201854fb6a4cb9545892b49d4851/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/55ba9790-0201-0010-aa98-ce8f51ea93cd
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/b2e7020d-0d01-0010-269c-a98d3fb5d16c
    http://help.sap.com/saphelp_nw04s/helpdata/en/a8/882a40ce93185de10000000a1550b0/content.htm
    /people/sap.user72/blog/2005/06/16/using-digital-signatures-in-xi
    How to achieve encryption in XI
    Encryption in XI
    XI Encryption
    Thanks

Maybe you are looking for