Search username in XI communication channel

Hi,
is there any way to know user name for example "ABC" is being used in which XI communication channel, other than going into each channel and looking for the required user name?
Thanks.

There is no standard feature that helps to search the communication channel  based on a particular parameter like username, filename, directory etc. As a workaround, you can download the communication channel details in spreadsheet as explained in the blog /people/iliya.kuznetsov2/blog/2009/06/18/simple-reporting-over-pi-communications-channels .
Regards,
Sunil chandra

Similar Messages

  • Communication Channel Search?

    Anyway I can do a search through scenarios in the Integration Directory for a sender communication channel without having to drop down through all scenarios?
    I have a sender communication channel kicking off, but I cannot find it.
                           Thank-You.

    Hi,
    in the integration directory from the Menu
    Object --> find
    Select object type 'Communication channel'
    Regards
    Vijaya

  • End of communication channel while running proc

    Hi ,
    As soon as i run a proc i get the following error
    BEGIN cdw_load.pa_cdw_gi_extract.pr_cdw_gi_usr_rep_extract('PL'); END;
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    Process ID: 31568
    Session ID: 963 Serial number: 693
    THE OTHER STATEMENTS /PROGRAMS in the same data base run fine.
    i checked the oracle directories are present.
    Please help
    procedure is below
    procedure pr_cdw_gi_usr_rep_extract(i_cntry_cd in varchar2)
    as
    -- Procedure PR_GI_USR_REP_EXTRACT is created to extract data for user rep extract.
    -- Modification History - None
    -- Additional Procedure included and Purpose
    -- PR_LOG_ERROR is added to handle the exceptions.
    v_file utl_file.file_type;
    v_file_name varchar2 (50);
    v_file_rec nvarchar2 (32767);
    va_strng nvarchar2 (200);
    v_errcode varchar2 (30);
    v_errmessage varchar2 (300);
    v_cntry_cd codi.dim_mrkt.cntry_cd%type;
    v_message hz_metadata.hz_job_log_detail.processor_message%type;
    v_job_seq_id pls_integer := 0;
    v_slct_cnt pls_integer := 0;
    v_mrkt_id number := 0;
    v_rec_cnt number := 0;
    v_prev_3rd_cmpgn number := 0; -- Limit the search on frp table to a max of 3 campaigns
    v_prev_2nd_cmpgn number := 0; -- LObtain the campaign previous campaign
    v_cmpgn_perd_id number := 0; -- Obtain the latest available camapign from frp ..
    --cursor for extracting the data for usr_rep
    -- Note: The search campaigns (3 camapigns) were used in an inlist as partition pruning was not happenning with BETEEEN clause
    cursor ext_usr_rep
    is
    select 1 from dual ;
    -- procedure for logging the errors during exception handling
    procedure log_error(v_message varchar2)
    as
    begin
    hz_metadata.pa_log_gsl.end_logging ('ABORT');
    hz_metadata.pa_log_gsl.log_error (p_entity_value => 'N/A',
    p_app_message => v_message,
    p_system_message => sqlerrm,
    p_reprocess_ind => null,
    p_continue_on_error => 'Y'
    commit;
    dbms_output.put_line ('Usr Rep - Extract not generated');
    end log_error;
    -- end of the log_error procedure
    -------main begin ----------------------------
    begin
    v_cntry_cd := upper(i_cntry_cd);
    v_message := 'Capture the market id';
    select distinct mrkt_id
    into v_mrkt_id
    from codi.dim_mrkt
    where cntry_cd = v_cntry_cd;
    **v_file_name := 'OMSRPT_'||v_cntry_cd ||'_USR_REP.TXT';**
    v_message := 'Logging details in to JOB LOG table';
    pa_generic.lcl_init_logging (p_module_nm => 'Extracting data for User representatives',
    p_program_nm => 'PR_GI_USR_REP_EXTRACT',
    p_entity_nm => v_file_name,
    p_job_nm => 'EXTRACT - DATA FOR USER REPRESENTATIVES',
    p_job_log_id => pa_generic.g_job_seq_id,
    p_cntry_cd => v_cntry_cd
    commit;
    execute immediate 'alter session set global_names=false';
    -- Fetch the start and end camapigns for limiting the search on fact_rep_prfrmnc
    select nvl(max(fld_sls_cmpgn_perd_id), 20040301) into v_cmpgn_perd_id from cdw.sum_mrkt_acct_sls where mrkt_id = v_mrkt_id ;
    -- Fetch the 3rd previous campaign
    v_prev_3rd_cmpgn := pa_generic.fn_get_past_cmpgn(v_mrkt_id,v_cmpgn_perd_id,3) ;
    -- Fetch the 2nd previous campaign
    v_prev_2nd_cmpgn := pa_generic.fn_get_past_cmpgn(v_mrkt_id,v_cmpgn_perd_id,2) ;
    v_message := 'Opening the file';
    v_file := utl_file.fopen_nchar ('CDW_GI_EXTRACT_' || v_cntry_cd || '_DIR', v_file_name, 'W', 32000);
    --loop and fetch the cursor ext_usr_rep1
    v_message := 'Opening Cursor ';
    for ext_usr_reprec in ext_usr_rep
    loop
    va_strng := ext_usr_reprec.cur_fet;
    utl_file.put_line_nchar (v_file, va_strng);
    v_slct_cnt := v_slct_cnt + 1;
    end loop;
    v_message := 'Closing the file ';
    utl_file.fclose (v_file);
    v_message := 'Log the successful completion message';
    hz_metadata.pa_log_gsl.end_logging ('SUCCESS');
    v_message := 'Update the stats';
    hz_metadata.pa_log_gsl.log_count (p_app_message => 'DATABASE OPERATION STATISTICS',
    p_insert_count => 0,
    p_update_count => 0,
    p_select_count => v_slct_cnt,
    p_error_count => 0
    exception
    when utl_file.invalid_path
    then
    log_error (v_message || ' due to invalid path');
    raise;
    when utl_file.invalid_mode
    then
    log_error (v_message || ' due to invalid mode');
    raise;
    when utl_file.invalid_operation
    then
    log_error (v_message || ' due to invalid operation');
    raise;
    when utl_file.write_error
    then
    log_error (v_message || ' due to write error');
    raise;
    when utl_file.internal_error
    then
    log_error (v_message || ' due to internal error');
    raise;
    when utl_file.invalid_filehandle
    then
    log_error (v_message || ' due to invalid file');
    raise;
    when no_data_found
    then
    log_error (v_message || ' due to no data');
    raise;
    when too_many_rows
    then
    log_error (v_message || ' due to more rows');
    raise;
    when others
    then
    log_error (v_message);
    raise;
    end pr_cdw_gi_usr_rep_extract;

    ORA-3113 may be caused also (or should I say mostly ?) by Oracle bugs: you need to check your database instance alert log for ORA-07445 or ORA-00600 error message and for related trace file:
    oerr ora 3113
    03113, 00000, "end-of-file on communication channel"
    // *Cause: The connection between Client and Server process was broken.
    // *Action: There was a communication error that requires further investigation.
    //          First, check for network problems and review the SQL*Net setup.
    //          Also, look in the alert.log file for any errors. Finally, test to
    //          see whether the server process is dead and whether a trace file
    //          was generated at failure time.

  • Getting error in target SOAP communication channel

    Hi all,
    I am trying to send data from Http client to Webservice.In moni i got a message processed successfully means getting black flag.But i got an error in SOAP Communication channel as "error in response".
    I got this message from that error 
    <b>"SOAP: response message contains an error XIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - HTTP 407 Proxy Authentication Required ( The ISA Server requires authorization to fulfill the request. Access to the Web Proxy service is denied.  )"</b>
    Source side i dont configure Http adapter.Target side i configured SOAP adapter.In that SOAP adapter i configured these fields.1)Target URL 2)Configure Proxy 3)Configure proxy user authentication.
    I want get response from webservice.Please help me.
    Thanks,
    Gopi.

    Hi,
    Make sure that you have specified the proper host and port values, in the text box that appears when you check the configure proxy check box(in receiver soap adapter).
    Looks like the webservice requires a proxy authentication.
    Select the check box "configure proxy user authentication"(in receiver soap adapter) and provide the correct username and password.
    Regards,
    Smitha.
    Message was edited by: Smitha Rao

  • Unable to Find out Adapter Engine in the Communication Channel

    Hi Experts,
    I am Unable to select the Adapter Engine As Integration Server in the File Sender Communication Channel.
    Please Let Me Know
    Regards
    Khanna

    HI Khanna
    Check the SLD that Adapter Engine is insatlled and all the adapter has the metadata there.
    Go to Transaction Code SXI_CACHE in the Inetgration Server(XI- ABAP stack) Then you can see the list of components.
    Just have a look into Menu Bar - in there goto : GoTo->Adapter Engine Cache ( if the status is green - then it is correct-otherwise you need to refreshit.)
    You just go thru mentioned document from service.sap.com/nw04
    You will get the full info about that.
    /people/michal.krawczyk2/blog/2005/09/07/xi-why-dont-start-searching-for-all-errors-from-one-place
    /people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions
    http://help.sap.com/saphelp_nw2004s/helpdata/en/0d/28e1c20a9d374cbb71875c5f89093b/frameset.htm
    Just try with Visual Administrator to check the services for the adapter engine are running or not
    All services starts with SAP XI..
    SAP XI AF Core
    SAP XI AF CPA Cache
    SAP XI AF Messaging
    SAP XI Adapter XI
    SAP XI AF Security
    Check SAP note on CPACache- 741214 and also 824236.
    Let me know if any errors..
    Cheers..
    Vasu
    <i>** Reward Points if found useful **</i>

  • EXCHANGE_PROFILE_ACCESS error in Communication Channel

    Dear All,
    We are facing trouble in RWB.
    Scenario:
    SLD is running on separate server (Solution Manager on Windows)
    XI [PI 7] on Solaris
    IR, ID is working fine. SLDCHECK successful. We are able to import software components in IR.
    But when we try to check communication channel through RWB, we face following error:
    Received XI System Error. ErrorCode: EXCHANGE_PROFILE_ACCESS ErrorText:   ErrorStack: Error while reading exchange profile for system XID and client 100
    Transmitting the message to endpoint http://<host>:8000/sap/xi/engine?type=entry using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.aii.af.ra.ms.api.RecoverableException: EXCHANGE_PROFILE_ACCESS:.
    We have searched for notes, but couldn't find any.
    Any help please.
    regards, Sean.

    hi
    check whether the role SAP_BC_AI_LANDSCAPE__DB_RFC
    is assigned to the user which is maintained in the connection data
    check the below link for reference
    http://help.sap.com/saphelp_nw04/helpdata/en/5e/f85141196ff423e10000000a155106/content.htm
    regards
    kummari

  • Error in communication channel javaxresourse.Resourseexception

    We are getting an error in communication channel javax.resourse.Resourseexception. We are send a payload witn size in excess of 10mb. I also have a message which is in delivering status for quite some time now after which our communication channel stopped working and startwd to give tthis error. Could it because of this message ? Or i need to increase size parameter . In which tcode or place wherei can see the permited file size. I am new to pi and and seeing this error for tje firat time . Request your  help

    >Could it because of this message ? Or i need to increase size parameter . In which tcode or place wherei can see the permited file size. I am new to pi and and seeing this error for tje firat time . Request your help
    Go to SXMB_ADM and click integration engine configuration -> click edit mode configuration -> see the tuning parameter EO_MSG_SIZE_LIMIT set and value of it. If it not set, talk to basis to set the this tuning parmeter and value desired.
    Search SDN on this topic for further details

  • Communication Channel monitoring in PI 7.1

    Hi Folks,
        How to do the adapter monitering & Communication channel monitoring in teh sap PI 7.1.
    Regards,
      Santosh

    Hi,
    Have you searched in SDN,??
    there is no difference compare to other versions
    RWB-->ComponentMonitoring>Adapter Engine->Communication channel monitoring--->select communication Channel.fileter,then monitor it.
    Regards,
    Raj

  • Need help in troubleshooting communication channel using soap adapter

    Hello friends
    I have a simple scenario.
    I have created 2 communication channels, one for searching a record and another for updating it with a new value
    Both uses SOAP as sender and RFC as receiver with a Standard BAPI.
    Everything was working ok, but without any changes, all of a suddent I am not being able to update the values and when I checked RWB, I see for Update SOAP Adapter Channel, the messages say
    Request received for a channel
    but in a second it says 'Call Failed'.
    I haven't made any changes.
    I even tried restarting XI and ERP servers but still getting the same error.
    Any suggestions or feedback will be greatly appreciated.
    Thanks
    Ram

    THE PROBLEM WAS WITH A JOB GETTING HUNG IN THE QUEUE AND I HAD TO FORCIBLY KILL THAT. THAT TOOK CARE OF THE PROBLEM

  • Adapter type is not coming in Communication channel

    Hi all,
             I am facing a problem while creating a communication channel as i am not able to see any adapter type and its showing as non editable field  .
    i have cretaed my own software component in SLD  am i missing something in SLD configuration ??  because of that  i am not able to see any adapter over there .
    regards,
    praveen

    Praveen,
    You need to import SAP BASIS Software Component Version into Integration Repository.
    You need to download it from service market place.
    https://websmp205.sap-ag.de/~form/handler?_APP=00200682500000001943&_EVENT=SEARCH&HIDE=&SEARCH_SPAT=X&SEARCH_BPAT=X&SEARCH_CD=X&SEARCH_P=X&SEARCH_PV=X&SEARCH_C=X&SEARCH_CV=X&SEARCH_TA=&SEARCH_V=&HIDE_EXPERT_SEARCH=X&SEARCH_MAX_RESULT=20
    In Search Term Enter "SAP BASIS <version>".
    Now click on XI CONTENT SAP_BASIS 7.00 -
    > Database independent -
    > SAPBASIS13_0-20000888.ZIP Just save this file on your machine and unzip it.
    Now put this in the import directory: \usr\sap\<SID>\SYS\global\xi\repository_server\import\
    In IR, TOOLS ---> Import design objects and import it.
    Regards,
    Sarvesh
    ***Reward points for helpfull ans, in your last thresd you did not assingned points to any buddy.

  • FTP communication channel generating logs in NWA Logs and Traces

    Dear all
    Wishihg you all a very happy new year. I have a peculiar issue, where I am using a FTP adapter, and files are deposited in an FTP location. This processing is runnign succesfully. However, my NWA logs says that there is communication issues while putting htis file in the server.
    Whenever there is a transaction happening this error gets generated in NWA log.
    Does any one have any idea why this is happening.
    Many thanks & Regards : Bobby Bal
    Below mentioned is the error message.
    Message:   Error during disconnect from ftp server ediftp-pw09.colpal.com, ignored: com.sap.aii.adapter.file.ftp.FTPEx: 421 Unexpected reply codeTerminating connection.
    Severity:   Error
    Date:   2012-01-10
    Time:   09:18:12:191
    Category:   /Applications/ExchangeInfrastructure/AdapterFramework/Services/ADAPTER/ADMIN/File
    Location:   com.sap.aii.adapter.file.File2XI.disconnectFTPServer
    Application:   
    Thread:   XI File2XI[XXX_WMS_SENDER_CC/SYS321/XX_ChinaWMS]_34877
    Data Source:   j2ee/cluster/server1/log/applications_01.log
    Arguments:   
    Passport User Activity ID:   7f0f0ddd38fd11e1b099c68806a4be02
    Message ID:   com.sap.SOA.apt_file.0058
    Session:   0
    Transaction:   
    User:   J2EE_GUEST
    Time Zone:   0-500
    Customer Message Component:   BC-XI-CON-AFW
    Runtime Component:   com.sap.aii.af.lib
    Correlation ID:   144518351000001784
    Passport Session:   7F0F0DDD38FD11E1B099C68806A4BE02
    Passport Connection:   7f0f0ddd38fd11e1b099c68806a4be02
    Passport Connection Counter:   0
    Log ID:   C000A7E404320DFE00000000013600A4
    Host:   xppapp14
    System:   XPP
    Instance:   DVEBMGS14
    Node:   server1

    Hi Bobby,
    1. Check whether the user you are using has access control i.e Read/Write Access from the folder in FTP server..
    2. Check it at OS level by directly pasting or pick the files..
    3. From SAP end check the user credientials provided in the file adapter i.e username of the FTP server and the Password of the FTP server it is case-sensitive.
    4. Try to give the exact path from where the file is to be picked and reactivate the scenario.
    5. what is the file size of the file that is going to be picked from the ftp server.
    6. Then finally check in Communication channel monitoring detailed log what is the error it was coming and check the log in XI server you can clearly notice the error.
    Even some times it will access at OS level but not through the server for this reactivate the adapter and provdie the user credentials and the path once again..
    Regards,
    Ravi

  • Loadjava with end-of-file on communication channel

    Hello,
    I have a job that needs to load all the OIM jar files in the lib/ and ext/ directories into the database.
    The majority of the jar files got loaded fine. However, some of them would result in the following error:
    resolving: class com/thortech/xl/security/wl/XellerateAuthenticationProviderImpl
    Error while resolving com/thortech/xl/security/wl/XellerateAuthenticationProviderImpl
    ORA-03113: end-of-file on communication channel
    This was for the xlAuthentication.jar file in the lib directory.
    I was trying to load them in a oracle 10g db on my laptop. The loadjava command I used is as follows:
    loadjava -user username/pwd@SID -v -resolve -genmissing filename.jar
    Please let me know how you fixed this if you ran into it before.
    Thanks

    Ashok,
    a) Full Database version: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0
    b) OS, MS Windows XP
    c) I am trying to reproduce the errors so I can post the log, but I have not been successful. I reloaded the jars that caused an error end-of-file on communication channel. The error disappeared completely for some jars. For other jars, I got cannot resolve due to class not found error.
    There is one more jar that I would like to try reloading, which is the weblogic.jar. The last time I tried to load it, it ran for a day and half.
    I'll try loading weblogic.jar and let you know how it goes.
    Thanks

  • Communication Channel Error: Help Please.

    Dear SAP Friends,
    May I ask how do I go about resolving the error message I have right now with my two communication channels:
    Configuration error:
    com.sap.aii.af.service.util.configuration.Configuration.ExceptionSet:The following configuration errors were detected:
    -Error creating archive directory 'd:\<Folder1>\<Folder2>\<Folder3)\
    Your prompt response is greatly appreciated. Thank you very much in advance!
    Best Regards,
    Albert

    Hi,
    As said above you should check your writing rights. You should use a username which have the rights to write on the given location.
    I hope it will solve your problem. If it solved it please mark your question as answered.
    Best Regards

  • JDBC Sender Communication Channel Error

    Hi,
    We are facing the below error in Sender JDBC communication channels:
    The JDBC driver returned the following error message: 'java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]No ResultSet set was produced.'
    We are getting this error in channels which are using stored procedures but not in channels using direct sql query statements.
    The database is not having any data currently.
    So is the above error because of no data or some other issue?
    Any ideas?
    I have searched the sdn but didnt find anything appropriate.so posting a new thread.
    Thanks,
    Anu.

    Can you try again after filling in few records in the DB? I am suspecting the way SP has been written ... check if it is required to return value from SP?

  • Unsolicted update in communication channel

    I received a counter update in my communications channel for the following post: https://forums.oracle.com/thread/2569282
    I'm neither tracking or following the discussion or space and I have not been participating in that discussion. I also have not accepted (ignored) any friend requests. Thought I just let you know in case this might indicate a more general issue or bug.

    A very successful person once told me "Stop doing it if it is no fun any more."  This was after he sold his stable of Ferraris.
    There does not have to be a strong link between quality software and large organizations.  In fact, there might be some negative correlation.  There has to be a strong sales organization and strong marketing.   There is little feedback from the technically astute users to the decision makers.
    Linkedin, Facebook, and yes, Google all put out some garbage.  I think the "new development paradigms" turn programmers into amateurs.  (The google groups UI has some obvious goofs - favorited groups don't get bolded to indicate new messages until after you look at the group, the reply editor quoting adds a ridiculous amount of blank lines, search totally borked, and on and on.)  There's also a shininess factor - when something is new and shiny, people may give good feedback, developers crank out great stuff, but once the money's been shoveled in, bloat happens, as well as a push to mediocrity.

Maybe you are looking for