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

Similar Messages

  • 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

  • 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.

  • 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.

  • 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.

  • AdapterMonitoring: Empty communication channel list

    Hi out there,
    i'm trying to create a RFCAdapter-Sender in SAP XI without success. I will find out the error and go to "Component Monitoring" -> "Display" (All) -> "Adapter Engine" -> "Communication Channel Monitor" But here is no communication channel shown. I have created my RFC-Sender-Adapter accordingly to a blog and the integration directory show the status of the adapter is active, but if i create a RFC-Destination (Registrated Programm) and test , than i get every time the error, that the programm id is not registred. I have no idea - i think i trydeverything to find out the reason....
    can anyone help me to find the right log-files or give tips what else i can do ?
    Thanks a lot
    André

    thought it would be of helpful to you...esp regarding the program id
    <a href="http://www.topxml.com/biztalkutilities/walkthroughs/SAP%20Configuration.pdf#search=%22sap%20sm59%20program-id%22">http://www.topxml.com/biztalkutilities/walkthroughs/SAP%20Configuration.pdf#search=%22sap%20sm59%20program-id%22</a>
    <a href="http://publib.boulder.ibm.com/infocenter/wbihelp/v6rxmx/index.jsp?topic=/com.ibm.wbia_adapters.doc/doc/mysap3/sap109.htm">http://publib.boulder.ibm.com/infocenter/wbihelp/v6rxmx/index.jsp?topic=/com.ibm.wbia_adapters.doc/doc/mysap3/sap109.htm</a>

  • Communication channel doesn't show in runtime workbench

    Hi,
    In Integration monitoring Runtime Workbench does not show communication channel list in communication channel monitoring. It shows empty but we have created lot of communication channels. This is problem in XI adapter or any other problem? Please can anyone tell the solution for that.
    Regards
    Vijay

    Hi,
    If ur searching for Xi and Receiver IDOC adapter in RWB.U cant find them in RWB then run in IS.try to check ur sender adapter and u can find the complete flow of it.
    Thanks and Regards,
    Phani Kumar

  • Validate source data at communication channel level only....

    Hello Experts
       I want to validate the source data just after picking the file i.e at communication channel level. The error file or record has to moved to the archive folder. This is my thought correct me if  i am wrong.
    Thanks in advance

    Hi Arjun,
    Communication channel only pick up the data,its does not have capability to check the content,if you want to implement this logic for communication channel,writing adapter module is the right option.
    You need to write a logic in EJB Module  to validate the content ,its purely depending on Logic how you are going to write in JAVA.
    if you are using PI7.1 you can validate your payload before picking up the message.
    search in sdn you will find some usefull documents how to write adapter module.
    Regards,
    Raj

  • Can't select Adapter Type during creating communication channel.

    Hi, all
    I want to create a configuration scenario in Integration Builder (Configuration).
    After assign a business system, try to create a sender communication channel, but the Adapter Type filed has no values to select, and depicted as "Undefined".
    What configuration I have missed?

    You need to import SAP BASIS Software Component Version into Integration Repository based on your SP Level & XI or PI.
    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 ( if using PI ) -
    > Database independent -
    > SAPBASIS<SP Level>.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

Maybe you are looking for

  • I can't sync an album(imported from a CD)on my itunes library to my iphone 5?

    I just bought a new cd, imported it successfully onto my itunes library so I am able to play the songs on my windows 7 netbook but I just cant sync them to my iphone5, when I connect the phone to my laptop and click on the music it shows the album th

  • How to populate the field VTTK - EXTI1 in the shipment

    Hi there, I have a situation where I need to populate the field VTTK - EXTI1  with certain values, I would like to know if there is a user exit or badi to do this.  Actually the field is empty and it's possible to enter any value. Thanks in advance R

  • Strange dots in Phantom "packed" .cine-files with Mac OSX 10.9

    Hi there I have problem with my Miro .cine-files. After upgrading my operating system to MAC OSX 10.9 (Maverick) I found strange dots on the right side of the frame in my footage shot with the Phantom Miro 320LC. I first thought it might be a bad pix

  • Invisible cursor in illustrator 5.5 after OSX Mavericks update

    Hi there, I realised, that after update to OSX Mavericks (10.9) there is almost invisible type cursor (as you hit T and try to edit text) in my Illustrator CS 5.5. Have you experienced this problem too? Well, it is not invisible, but like 10% black o

  • Displaying same record in multiple tabs

    Hi, I'm using Jdevelope 11.1.2.3.0. I have an AF:TABLE with hundred columns. My requirement is to show them in multiple tabs. For example, in the first tab i have to show 10 columns, second tab next 10 columns and do not show the first 10 columns tha