Error in SLDCHECK

HI All,
We are trying to connect ECC6 to PI7.0.Getting the below error.
Calling function LCR_LIST_BUSINESS_SYSTEMS
Retrieving data from the SLD server...
Function call returned exception code     4
=> Check whether the SLD is running!
Have done all the possible config mentioned in the guide.Can anyone please mention how to resolve the issue.Thanks.

Hi,
Please search on SDN you will find ample of threads for this issue, here are few of them:
[SLDCHECK Error;
[LCR_LIST_BUSINESS_SYSTEMS in the sldcheck;
[Re: Error on SLDCHECK;
and many more on sdn or google
Regards,
Rahul Grover

Similar Messages

  • After chang pwd  PISUPER getting error in SLDCHECK not working T-C:SXMB_FIR

    Hi All,
    After changing PISUPER password at ABAP side i got the below error in SLDCHECK.
    Calling function EXCHANGE_PROFILE_GET_PARAMETER
    Retrieving data from the XI Profile...
    Function call returned exception code     3
    Access to the XI Profile is currently disrupted.
    => Check whether you can access the XI Profile using a web browser!
    & Even when i execute SXMB_IFR getting the below error,
    3: Error while reading configuration for secure communication
    Message no. SAI_GLOBAL030
    One more is PISUPER I also changed in exchangeprofile of connection.
    Please help ASAP.
    Regards,
    Karthik.
    Edited by: Karthiksap on Jul 25, 2011 9:50 AM

    Hi Naveen,
    Now i given old password to PISUPER using SU01.  But still i am getting the below error when i access sxmb_ifr
    error log:
    3: Error while reading configuration for secure communication
    Message no. SAI_GLOBAL030
    and also in sldcheck getting :
    Calling function EXCHANGE_PROFILE_GET_PARAMETER
    Retrieving data from the XI Profile...
    Function call returned exception code     3
    Access to the XI Profile is currently disrupted.
    => Check whether you can access the XI Profile using a web browser!
    In exchangeprofile->connection  link i changed pisuper password, do i need to update this. Please also let me know after chaning j2ee_admin do i need to update anywhere.
    Regards,
    Karthik.

  • Error on SLDCHECK

    Hi Expert,
    Need your help on SLD error find the error message as below, we have configure SAP XI system and set the RFC connection between JAVA and ABAP instance it working finebut it give me message that 
    Use transaction SLDAPICUST if you wish to maintain the SLD server access data
    Launching the SLD GUI in a separate browser window...
    => Verify in the browser GUI that the SLD is in a healthy running state!
    Calling function LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call returned exception code     4
    => Check whether the SLD is running!
    see the below error of SLDCHECK transaction
    Properties of RFC destination SAPSLDAPI
      RFC host:
    %%RFCSERVER%%
      program id:      SAPSLDAPI_PXI
      gateway host:
    SAPXI
      gateway service: sapgw00
    Testing the RFC connection to the SLD java client...
    RFC ping was successful
    SLD server access settings:
      host name:   localhost
      port number: 50000
      user       : xiuser
    Use transaction SLDAPICUST if you wish to maintain the SLD server access data
    Launching the SLD GUI in a separate browser window...
    => Verify in the browser GUI that the SLD is in a healthy running state!
    Calling function LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call returned exception code     4
    => Check whether the SLD is running!
    Summary: Connection to SLD does not work
    => Check SLD function and configurations

    Yeh RK
    I Check the RFC RFC destinations SLD_NUC or SLD_UC it tested ok
    please find the LCR_LIST_BUSINESS_SYSTEMS in SE37
    function lcr_list_business_systems.
    ""Lokale Schnittstelle:
    *"  IMPORTING
    *"     REFERENCE(GIVE_ROLES) TYPE  CHAR1 DEFAULT SPACE
    *"     REFERENCE(GIVE_PRODUCTS) TYPE  CHAR1 DEFAULT SPACE
    *"     REFERENCE(BYPASSING_CACHE) TYPE  CHAR1 DEFAULT SPACE
    *"  EXPORTING
    *"     REFERENCE(BUS_SYSTEMS) TYPE  LCR_T_BSYSPROD
    *"  EXCEPTIONS
    *"      NO_RFC_DESTINATION
    *"      NO_LANDSCAPE_DIRECTORY
    *"      COMMUNICATION_ERROR
    *"      LD_ERROR
    *"      SLD_API_EXCEPTION
      types:
            begin of ty_sld_s_bskey,
              bs_key_name  type sld_bskey,
              bs_caption   type string,
            end of ty_sld_s_bskey.
      types:
            ty_sld_t_bskey        type standard table of ty_sld_s_bskey.
      constants:
            c_bus_systems_list    type indx_srtfd value 'BUS_SYSTEM_LIST2'.
      data: sld_host              type string value '?',
            sld_port              type string value '?',
            rfc_dest              type string value '?',
            rc                    type i,
            s_indx                type lcrt_indx,
            s_details             type lcrs_bsysprod,
            t_details             type lcr_t_bsysprod,
            bskey                 type sld_bskey,
            s_bslist              type ty_sld_s_bskey,
            t_bslist              type ty_sld_t_bskey,
            t_bslist_cache        type ty_sld_t_bskey,
            is_cached             type c,
            tracelevel            type i,
            text                  type string,
            ex                    type ref to cx_sld_api_exception,
            accessor              type ref to cl_sld_accessor,
            bsystem               type ref to cl_sld_cim_instance,
            t_bsystems            type sld_t_instref,
            t_properties          type sld_t_string.
      clear: bus_systems.
    read buffer:
      import bs_list2  to t_bslist_cache
             from database lcrt_indx(xi)
             id c_bus_systems_list to s_indx.
      if sy-subrc = 0.
        is_cached = 'X'.
      endif.
      if is_cached = 'X' and s_indx-aedat = sy-datum
         and bypassing_cache = space.
        t_bslist = t_bslist_cache.
      else.
        try.
          get all business systems from SLD server:
            create object accessor.
            accessor->set_tracelevel( tracelevel ).
            text = 'Name'. "#EC NOTEXT
            append text to t_properties.
            text = 'Caption'. "#EC NOTEXT
            append text to t_properties.
            t_bsystems =
              accessor->enumerate_instances(
                cname        = 'SAP_LogicalBusinessSystem'
                localonly    = space
                propertylist = t_properties
            loop at t_bsystems into bsystem.
              s_bslist-bs_key_name = bsystem->get_property( 'Name' ). "#EC NOTEXT
              s_bslist-bs_caption  = bsystem->get_property( 'Caption' ). "#EC NOTEXT
              append s_bslist to t_bslist.
            endloop.
            update cache:
            clear s_indx.
            s_indx-mandt = sy-mandt.
            s_indx-aedat = sy-datum.
            s_indx-usera = sy-uname.
            s_indx-pgmid = sy-cprog.
            export bs_list2 from t_bslist
                   to database lcrt_indx(xi)
                   id c_bus_systems_list from s_indx.
          catch cx_sld_api_exception into ex.
            text = ex->get_text( ).
            case ex->textid.
              when cx_sld_api_exception=>communication_failure
                or cx_sld_api_exception=>system_failure.
                rc = 1.
              when cx_sld_api_exception=>sld_server_exception
                or cx_sld_api_exception=>sld_client_exception.
                rc = 2.
              when others.
                rc = 3.
            endcase.
          fallback, if appropriate:
            if is_cached = 'X' and bypassing_cache = space.
              rc = 0.
              t_bslist = t_bslist_cache.
            endif.
        endtry.
      endif.
    exception cleanup:
      case rc.
        when 1.
          rfc_dest = accessor->get_rfcdestination( ).
          sld_host = accessor->get_host( ).
          sld_port = accessor->get_port( ).
          message e004(lcr) with rfc_dest sld_host sld_port
                                 raising communication_error.
        when 2.
          message e003(lcr) raising ld_error.
        when 3.
          message e010(lcr) raising sld_api_exception.
      endcase.
    get details for all listed business systems:
      loop at t_bslist into s_bslist.
        clear s_details.
        if give_roles is initial and give_products is initial.
          s_details-bs_key_name = s_bslist-bs_key_name.
          s_details-bs_caption  = s_bslist-bs_caption.
          append s_details to bus_systems.
        else.
          text = s_bslist-bs_key_name.
          call function 'LCR_GET_BS_DETAILS'
            exporting
              bs_key_name            = text
              bypassing_cache        = bypassing_cache
            importing
              bs_details             = t_details
            exceptions
              no_business_system     = 1
              no_rfc_destination     = 2
              no_landscape_directory = 3
              communication_error    = 4
              ld_error               = 5
              sld_api_exception      = 6
              others                 = 7.
          case sy-subrc.
            when 0.
              if give_roles is initial and give_products is initial.
                read table t_details index 1
                     into s_details
                     transporting bs_key_name bs_caption bs_role.
                if sy-subrc = 0.
                  append s_details to bus_systems.
                endif.
              else.
                append lines of t_details to bus_systems.
              endif.
            when 1.
              s_details-bs_key_name = bskey.
              append s_details to bus_systems.
            when 2 or 3 or 4.
              message e004(lcr) with rfc_dest sld_host sld_port
                             raising communication_error.
            when 5.
              message e003(lcr) raising ld_error.
            when others.
              message e010(lcr) raising sld_api_exception.
          endcase.
        endif.
      endloop.
    endfunction.

  • RFC connection Error in SLDCheck

    Hi All,
    I am trying to logon to Integration builder for that i getting the ESR builder address is not maintain. for this i have chk in SLDCheck t code ,there i am getting LCRSAPRFC connection error.I have test the RFC connection in that i am getting the
    the error in register server program
    Error Details     ERROR: program LCRSAPRFC_XID not registered
    now wht i have to do for troubleshooting
    Regards

    Thanx  for reply
    when I test connection to  Connection Test SLD_UC     error
    Logon     Connection Error
    Error Details     Error when opening an RFC connection
    Error Details     ERROR: program SLD_UC not registered
    Error Details     LOCATION: SAP-Gateway on host sapdevpi / sapgw00
    Error Details     DETAIL: TP SLD_UC not registered
    Error Details     COMPONENT: SAP-Gateway
    Error Details     COUNTER: 62
    Error Details     MODULE: gwr3cpic.c
    Error Details     LINE: 1778
    Error Details     RETURN CODE: 679
    Error Details     SUBRC: 0
    Error Details     RELEASE: 701
    Error Details     TIME: Fri Jan  8 11:05:42 2010
    Error Details     VERSION: 2
    RFC SLD_UC is connection T 
    Gateway Host  sapdevpi
    Gateway server  sapgw00
    same error with
    Connection Test SLD_NUC
    Connection Test SAPSLDAPI   ( program Id SAPSLDAPI_DPI )
    Connection Test SAPJ2EE
    In Connection Test LCRSAPRFC error  program id LCRSAPRFC_DPI
    Logon     Cancel
    Error Details     max no of 100 conversations exceeded / CPIC-CALL: 'ThSAPCMRCV' : cmRc=17 thRc=45
    Error Details     ERROR: max no of 100 conversations exceeded
    Error Details     LOCATION: CPIC (TCP/IP) on host sapdevpi
    Error Details     COMPONENT: CPIC (TCP/IP) with Unicode
    Error Details     COUNTER: 82
    Error Details     MODULE: r3cpic_mt.c
    Error Details     LINE: 10791
    Error Details     RETURN CODE: 466
    Error Details     SUBRC: 0
    Error Details     RELEASE: 701
    Error Details     TIME: Fri Jan  8 11:12:56 2010
    Error Details     VERSION: 3
    Regards
    shahid

  • Error While SLDCHECK

    Hi Experts,
    My SLDCHECK is Fine Up to Yesterday.
    Today  Suddenly It's Not Working. It's Saying the Following Error.
    Please find the Error Attachment.
         http://rapidshare.com/files/40556304/SLDCHECK.jpeg.html
    Please let me Know What to Do Now
    Regards
    Khanna

    Hi Sridhar,
    Thanks For Your Help By Providing the details Of the JPEG To All.
    Login is possible with the PIAPPLUSER.
    I Checked With the TC SLDAPICUST-----Primary Check box is Checked For the USer PIAPPLUSER.
    Here is the Result of the SLDCHECK in the Screen shot
    <b>Properties of RFC destination SAPSLDAPI          </b>  
      RFC host:       
    %%RFCSERVER%%       
      program id:      SAPSLDAPI_PNW       
      gateway host:       
    epnwsrv       
      gateway service: sapgw01       
    Testing the RFC connection to the SLD java client...       
    <b>RFC ping was successful      </b> 
    <b>SLD server access settings:       </b>
      host name:   epnwsrv       
      port number: 50100       
      user       : PIAPPLUSER       
    Use transaction SLDAPICUST if you wish to maintain the SLD server access data       
    Launching the SLD GUI in a separate browser window...       
    <b>=> Verify in the browser GUI that the SLD is in a healthy running state!     </b>  
    Calling function LCR_LIST_BUSINESS_SYSTEMS       
    Retrieving data from the SLD server...       
    <b>Function call returned exception code     4     </b>  
    <b>=> Check whether the SLD is running!          </b>  
    <b>
    Summary: Connection to SLD does not work            
    => Check SLD function and configurations          </b>  
    Now checking access to the XI Profile            
    <b>Properties of RFC destination LCRSAPRFC      </b> 
      RFC host:       
    %%RFCSERVER%%       
      program id:      LCRSAPRFC_PNW       
      gateway host:       
    epnwsrv       
      gateway service: sapgw01       
    Testing the RFC connection to the SLD java client...       
    <b>RFC ping was successful        </b>
    Calling function EXCHANGE_PROFILE_GET_PARAMETER       
    Retrieving data from the XI Profile...       
    <b>Function call terminated sucessfully     </b>  
    Retrieved value of       
    section   = Connections       
    parameter = com.sap.aii.ib.server.connect.webas.r3.ashost       
    -> value  =       
    <b>Summary: Connection to the XI Profile works correctly           </b>
    Please Help me
    Regards
    Khanna

  • Error message sldcheck

    Hello togehter,
    I hope someone coul'd help me. When I check the SLD it comes the following error message:
    Properties of RFC destination SAPSLDAPI
      RFC host:
    %%RFCSERVER%%
      program id:      SAPSLDAPI_UNICODE
      gateway host:
    192.168.42.43
      gateway service: sapgw02
    Testing the RFC connection to the SLD java client...
    RFC ping returned exception with message:
    Error when opening an RFC connection
    Summary: Connection to SLD does not work
    => Check SLD function and configurations
    Now checking access to the XI Profile
    Properties of RFC destination LCRSAPRFC
      RFC host:
    %%RFCSERVER%%
      program id:      LCRSAPRFC_UNICODE
      gateway host:
    192.168.42.43
      gateway service: sapgw02
    Testing the RFC connection to the SLD java client...
    RFC ping returned exception with message:
    Error when opening an RFC connection
    With the transaction SXMB_IFR I didn't come in the SLD Browser. I want to connected the two logistics Ssystem BW with SAP ECC. 6.0 the Systemnumber is equal but the IP adress not.
    I hope someone can help me ?
    gianpiero

    Hello,
    I cannot start the Visual Administrator of the J2EE engine for checking the services. How can I install it?
    thank you for your help.
    In transaction SMGW i HAVE THIS FOLLOWING INFORMATION.
    LU NAME    TP NAME  SYS. TYPE           HOST NAME    HOST ADRESS  CONNECTION STATUS
    walldorf2      sapgw02    LOCal web AS       walldorf2           192.168.42.43               ok
    walldorf2      igs.w22      registreded server  walldorf2            192.168.42.43              ok
    Also I have this getaway monitor Networ buffer
    16.03.2009                     Dynamic List Display                            1
    Idx
    Stat
    Type
    IPv4 Address
    HostName
    0
    @5B@
    Alias
    192.168.42.43
    walldorf2
    1
    @5B@
    Alias
    127.0.0.1
    localhost
    2
    @5B@
    192.168.42.43
    walldorf2
    3
    @5B@
    127.0.0.1
    walldorf2.CreateCtrl.com
    4
    @5B@
    Alias
    192.168.42.42
    Walldorf1
    5
    @5B@
    192.168.42.42
    walldorf1.createctrl.com
    6
    @5D@
    sapserv3
    7
    @5B@
    192.168.42.218
    ccpcm13.createctrl.com
    8
    @5B@
    Alias
    192.168.42.43
    Walldorf2
    9
    @5B@
    Alias
    192.168.42.42
    walldorf1
    the above points are all green with exception of point 6
    16.03.2009                     Dynamic List Display                            1                    
         Idx     Stat     Port     Service
         0     @5B@     3302     sapgw02
         1     @5B@     3202     sapdp02
         2     @5B@     3301     sapgw01
         3     @5B@     3300     sapgw00
         4     @5D@     0     Walldorf2
         5     @5D@     0     saggw00
         6     @5B@     3333     sapgw33
    the above points are all green witht exception of points 4 and 5.
    With Transaction SWF_XI_CUSTOZING all the points are ok.
    So i don't come into the System Landscape Directory or  may I first I configure withe the sm59
    LCRSAPRFC AND SAPSLDAPI ?
    Please help me ?
    thanks
    gianpiero
    Hello coul'd someone help me.
    I have another problem: In transaction SMICM I cannot see my port number of my Testsystem.
    see J2EE HTTP PORT.
         Zustand des Applikationsservers     
    HTTP Application Server Handler          
    ABAP Server operational        = TRUE          
    J2EE Server configured         = TRUE          
    J2EE HTTP port                 =     ?     
    J2EE HTTPS port                =     `ß     
    J2EE Server operational        = FALSE          
    Default root access handler    = ABAP          
    URL Prefix Table loaded        = TRUE          
    URL Prefix Table               
             URL Prefix             Virtual Host        Case Sensitive Part
    /sap/public/formgraphics/           :;     
    /sap_java/           :;     
    /test30/           :;     
    /sap/           :;     
    thank you for your help
    Edited by: Gianpiero Bucchieri on Mar 17, 2009 11:03 AM

  • SLDCHECK Error

    hi experts,
    the error in SLDCHECK is
    Calling function LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call returned exception code 4
    => Check whether the SLD is running!
    thanks
    ajai

    thanks for reply,
    i am using PI 7.0.
    in sldcheck all are working good only i got this warming.
    Exchange Infrastructure: Test LCR Connection
    Properties of RFC destination SAPSLDAPI
      RFC host:
    %%RFCSERVER%%
      program id:      SAPSLDAPI_GIS
      gateway host:
    ecc6-server
      gateway service: sapgw00
    Testing the RFC connection to the SLD java client...
    RFC ping was successful
    SLD server access settings:
      host name:   ecc6-server
      port number: 50000
      user       : PIAPPLUSER
    Use transaction SLDAPICUST if you wish to maintain the SLD s
    Launching the SLD GUI in a separate browser window...
    => Verify in the browser GUI that the SLD is in a healthy ru
    Calling function LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call returned exception code     4
    => Check whether the SLD is running!
    Summary: Connection to SLD does not work
    => Check SLD function and configurations
    Now checking access to the XI Profile
    Properties of RFC destination LCRSAPRFC
      RFC host:
    %%RFCSERVER%%
      program id:      LCRSAPRFC_GIS
      gateway host:
    ecc6-server
      gateway service: sapgw00
    Testing the RFC connection to the SLD java client...
    RFC ping was successful
    Calling function EXCHANGE_PROFILE_GET_PARAMETER
    Retrieving data from the XI Profile...
    Function call terminated sucessfully
    Retrieved value of
    section   = Connections
    parameter = com.sap.aii.ib.server.connect.webas.r3.ashost
    -> value  =
    Summary: Connection to the XI Profile works correctly
    thnaks
    ajai

  • Component Monitoring returns error -- SLD access not ok ????

    dear all
    if i try to start the component monitoring from the runtime workbench i get the following error .
    transaction SLDCHECK works fine and also the configuration in the visual admin (SLD data supplier ) works fine  ==> test get data from SLD.
    the SLD is running on another server .
    definitions in sldapicust are done !!
      Error during communication with System Landscape Directory: User credentials are invalid or user is denied access
    stack trace:
    com.sap.aii.rwb.exceptions.BuildLandscapeException: Error during communication with System Landscape Directory: User credentials are invalid or user is denied access
         at com.sap.aii.rwb.agent.server.SLDAgentBean.convertException(SLDAgentBean.java:1358)
         at com.sap.aii.rwb.agent.server.SLDAgentBean.buildSLD(SLDAgentBean.java:659)
         at com.sap.aii.rwb.agent.server.SLDAgentBean.provideSld(SLDAgentBean.java:269)
         at com.sap.aii.rwb.agent.server.SLDAgentBean.getXIDomain(SLDAgentBean.java:597)
         at com.sap.aii.rwb.agent.api.SLDAgentObjectImpl0.getXIDomain(SLDAgentObjectImpl0.java:369)
         at com.sap.aii.rwb.agent.api.SLDAgent_Stub.getXIDomain(SLDAgent_Stub.java:415)
         at com.sap.aii.rwb.agent.client.EJBAgent.getXIDomain(EJBAgent.java:254)
         at com.sap.aii.rwb.web.application.model.AppMainModel.getSelectedDomain(AppMainModel.java:136)
         at com.sap.aii.rwb.web.componentmonitoring.model.DomainRep.build(DomainRep.java:101)
         at com.sap.aii.rwb.web.componentmonitoring.model.ObjectIdentificationTree.getComponentTree(ObjectIdentificationTree.java:101)
         at jsp_component_monitoring1133863088524._jspService(jsp_component_monitoring1133863088524.java:207)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:538)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:186)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:295)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:351)
         at com.sapportals.htmlb.page.PageProcessorServlet.handleRequest(PageProcessorServlet.java:68)
         at com.sapportals.htmlb.page.PageProcessorServlet.doPost(PageProcessorServlet.java:22)
         at com.sap.aii.rwb.web.componentmonitoring.viewcontroller.CmPageProcessor.doPost(CmPageProcessor.java:35)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:295)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:351)
         at jsp_FC_Secure1133863082937._jspService(jsp_FC_Secure1133863082937.java:26)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:538)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:186)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:95)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:160)
    the "configuration" button in the runtime workbench gives the following error :
    Unable to read XI domain from the SLD. Monitoring cannot therefore be configured. Error message: com.sap.aii.rwb.exceptions.BuildLandscapeException: Error during communication with System Landscape Directory: User credentials are invalid or user is denied access
    which user is used for this connection and where is this definition done ? 
    many thanks for your help
    hannes toefferl

    dear all
    many thanks for your fast and helpful response .
    1) i can't see anything in the SLD log , because the user is not able to login to the SLD as you can see at the bottom of my first post.
    2) the domain entries in the SLD are done and also correct .
    3)our SLD ist running on the productive XI system in the J2EE of the XI system . we use the ABAP UME of this XI system . there i can see , that the user "XIRWBUSER" is locked after several attempts . so it seems to me , that the password of this user is wrong .
    now my questions : where can i change the user and password for this connection ?
    4) i get the error with SLD connection for all the other components as well (only in the runtime workbench) . the XI itself works fine.
    thank you
    hannes

  • SPROXSET ...Unable to rectify Business systems not found issue..

    Hi,
    On doing a test of my proxy I am frustrated with an error " Business system not found". I have maintained SPROXSET values as IFR_aDDRESS = XI.XYZ.COM, IFR_PORT = 51000, IFR_USER = PIAPPLUSER and IFR_PASSWORD = XIPASS.
    I encounter this error whenever I do a test on SPROXY and I can't see the business systems from the SLD. What am I missing here? My sldcheck , sldapicust are all good. The only error in sldcheck is LCR_SAP_BUSINESS_SYSTEMS gives a retuen code fo 4. Please advise on what I am missing here.
    Teresa

    Check RFC destination
    The below links may be useful
    How do you activate ABAP Proxies?
    How do you activate ABAP Proxies? - Activate Proxy
    ABAP Server Proxies - ABAP Server Proxy
    ABAP Proxies in XI(Client Proxy) - ABAP Client Proxy
    BSP a Developer's Journal Part XIV - Consuming WebServices with ABAP
    File to R/3 via ABAP Proxy - ABAP Proxy
    http://help.sap.com/saphelp_nw04/helpdata/en/14/555f3c482a7331e10000000a114084/frameset.htm

  • ERROR MESSAGE IN - SLDCHECK.

    When i run the transaction SLDCHECK , i get the following error message.
    >
    Calling function LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call returned exception code     4
    => Check whether the SLD is running!
    Please let me know the importance of the customizing in transaction SLDAPICUST. ( all the parameters specified here).
    should the user specified here have access to SLD?. I am asking this because i end up getting the below error message when i debug the Function module
    LCR_LIST_BUSINESS_SYSTEMS from the application system
    >
    AbapSLDRequestHandler.getObjectServer(): User cred
    entials are invalid or user is denied access
    >
    And below  error message when i debug FM LCR_GET_BS_DETAILS in the
    application system.
    >
    exception in SLD client: AbapSLDRequestHandler.execEnumerateInstances(): User credentials are invalid or user is denied access
    >
    Any help would be appreciated.

    Go through this
    http://help.sap.com/bp_epv170/EP_US/Documentation/How-to/Configuration/Post_Install_SLD_NW_2004s.pdf
    http://help.sap.com/saphelp_nw2004s/helpdata/en/14/39084136b5f423e10000000a155106/frameset.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/xi/workingwithSystemLandscapeDirectory+%28SLD%29&
    Regards,
    Sarvesh

  • Error while running SLDCHECK

    Hi Friends
        I have done the job of SAP PI post configuration but even when i am running SLDCHECK transaction, the following error i am getting. Can any one help please..
    01.11.2007                                        Exchange Infrastructure: Test LCR Connection                                               1
    Properties of RFC destination SAPSLDAPI     
      RFC host:
    %%RFCSERVER%%
      program id:      SAPSLDAPI_PI1
      gateway host:
    ps3707
      gateway service: sapgw01
    Testing the RFC connection to the SLD java client...
    RFC ping was successful
    SLD server access settings:
      host name:   ps3707
      port number: 50100
      user       : SLDAPIUSER
    Use transaction SLDAPICUST if you wish to maintain the SLD server access data
    Launching the SLD GUI in a separate browser window...
    => Verify in the browser GUI that the SLD is in a healthy running state!
    Calling function LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    <b>Function call returned exception code     4</b>
    => Check whether the SLD is running!     
    <b>Summary: Connection to SLD does not work</b>     
    => Check SLD function and configurations     
    Now checking access to the XI Profile     
    Properties of RFC destination LCRSAPRFC
      RFC host:
    %%RFCSERVER%%
      program id:      LCRSAPRFC_PI1
      gateway host:
    ps3707
      gateway service: sapgw01
    Testing the RFC connection to the SLD java client...
    RFC ping was successful
    Calling function EXCHANGE_PROFILE_GET_PARAMETER
    Retrieving data from the XI Profile...
    Function call terminated sucessfully
    Retrieved value of
    section   = Connections
    parameter = com.sap.aii.ib.server.connect.webas.r3.ashost
    -> value  =
    Summary: Connection to the XI Profile works correctly     
    Thanks
    Sriram.

    Hi Ram,
    Few steps taken from below guid.
    http://help.sap.com/saphelp_nw04/helpdata/en/78/20244134a56532e10000000a1550b0/content.htm
    (1) Check status of SLD server and, if required, start the SLD server
    From the SLD main page http:///sld using the user and password maintained in transaction SLDAPICUST.
    (5) Check the user maintained in the SLDAPICUST parameters within transaction SU01
    Within transaction SU01 check the validity of the user and password maintained in SLDAPICUST.
    ·        Does this user exist?
    ·        Is its password valid?
    ·        Is this user unlocked?
    ·        Check the validity period of this user.
    ·        Check if the role SAP_XI_APPL_SERV_USER is assigned to this user.
    Regards,
    Sarvesh

  • XI SLDCHECK error

    hi all
    I have installed XI3.0 and created business scenario(R3 4.7 * 110) but during call of SLDCHECK transaction it gives me the following error and doesn't connect to SLD.
    Properties of RFC destination LCRSAPRFC
      RFC host:        %%RFCSERVER%%
      program id:      LCRSAPRFC_EC1
      gateway host:    exxept01
      gateway service: sapgw01
    Testing the RFC connection to the SLD java client...
    RFC ping was successful
    SLD server address settings:
      host name:   10.147.250.9
      port number: 50100
    Use transaction LCRSERVADDR (XI 1.0) or SLDAPICUST (XI 2.0) if you wish to maintain the SLD server address
    Launching the SLD GUI in a separate browser window...
    => Verify in the browser GUI that the SLD is in a healthy running state!
    Clearing the local SLD cache
    Calling function LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call returned exception code     3
    => Check whether the SLD is running!
    Summary: Connection to SLD does not work
    => Check SLD function and configurations
    ....I've search topics, notes and sdn contents and found nothing on duplicate conversation ids .  if anybody has any idea what could be causing this please let me know!
    THANKS
    nelson

    Hi Chilla
    I finished according to your guide, but it didn't help solve the problem.
    I'd like to write down my configuration and content more clearly as follows:
    1&#12289;configuration of R/3 role
      SXMB_ADM-&#12297;Configuration Data(Integration Engine)
      Role of Business System: Application System
      Corresponding Integ. Server : http://10.147.250.9:8001/sap/xi/engine?type=entry
       other field is empty.
       but a mistake is made when testing, it says  "No access to system landscape at
    present"  .
    2&#12289;Connecting to the Integration Server
    RFC destination : INTEGRATION_DIRECTORY_HMI
    con type : H
    Technical Seeting tab
        Target Host : 10.147.250.9
        PathPrefix : /dir/CacheRefresh
        Service No. : 50100
    Logon /Security tab
        Logon Procedure : Basic Authentication
        SSL : Inactive
        language : en
        Client 001
        User : Pisuper
        password : ***
    the user and key are already created in the Integration Server with related &#26435;&#38480;,but
    when the sysytem is executing the "test Connection",there is dialogue box, and i fill
    in the blanks as follows:
    Resource     dir
    Client       001 &#65288;Integration Server clinet)
    User name    pisuper
    Password     ***
    Language     EN
    but a mistake of HTTP/1.1 401 Unauthorized is made when i dial the enter key.
    3&#12289;I created a service connected with default_host->sap -> xi -> engine and set it as
    Activate Link
    4&#12289;Registering Queues
    5&#12289;Connecting Non-Unicode Business Systems has successfully being created LCRSAPRFC&#12289;
    SAPSLDAPI and the testing is also passed.
    6&#12289;connection created by Tcode SLDAPICUST is as follows:
       Alias : SAP_CONFIG
       Prim : (CHECKED)
       HostName: 10.147.250.9
       port: 50100
       user: PISUPER
       Password: ******
    7&#12289;when executing the SLDCHECK,i could logon sld, but problem arising as follows
      Properties of RFC destination SAPSLDAPI
      RFC host:        %%RFCSERVER%%
      program id:      SAPSLDAPI_EC1
      gateway host:    10.147.250.9
      gateway service: sapgw01
    Testing the RFC connection to the SLD java client...
    RFC ping was successful
    SLD server address settings:
      host name:   10.147.250.9
      port number: 50100
    Use transaction SLDAPICUST if you wish to maintain the SLD server address
    Launching the SLD GUI in a separate browser window...
    => Verify in the browser GUI that the SLD is in a healthy running state!
    Testing the SLD API
    SLD API ping was successful
    Clearing the local SLD cache
    Calling function LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call terminated sucessfully
    List of business systems maintained in the SLD:
      EC1_106
      YH0_800
      EC1_001
      ZDH_900
      EC1_105
    Calling function LCR_GET_BS_DETAILS
    Retrieving data from the SLD server...
    Function call returned exception code     5
    => Check whether the SLD is running!
    Summary: Connection to SLD does not work
    => Check SLD function and configurations
    p.s:the client created on the base of XI3.0 platform is successfully tested and
    executing the own example .

  • The sldcheck error

    Hi all,I had a sldcheck error,the log:
    Exchange Infrastructure: Test LCR Connection
    Properties of RFC destination SAPSLDAPI
      RFC host:
    %%RFCSERVER%%
      program id:      SAPSLDAPI_DXP
      gateway host:
      gateway service:
    Testing the RFC connection to the SLD java client...
    RFC ping was successful
    SLD server access settings:
      host name:   dsapxprd
      port number: 50000
      user       : PIAPPLUSER
    Use transaction SLDAPICUST if you wish to maintain the SLD server access data
    Launching the SLD GUI in a separate browser window...
    => Verify in the browser GUI that the SLD is in a healthy running state!
    Calling function LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call returned exception code     4
    => Check whether the SLD is running!
    Summary: Connection to SLD does not work
    => Check SLD function and configurations
    Now checking access to the XI Profile
    Properties of RFC destination LCRSAPRFC
      RFC host:
    %%RFCSERVER%%
      program id:      LCRSAPRFC_DXP
      gateway host:
      gateway service:
    Testing the RFC connection to the SLD java client...
    RFC ping was successful
    Calling function EXCHANGE_PROFILE_GET_PARAMETER
    Retrieving data from the XI Profile...
    Function call terminated sucessfully
    Retrieved value of
    section   = Connections
    parameter = com.sap.aii.ib.server.connect.webas.r3.ashost
    -> value  =
    Summary: Connection to the XI Profile works correctly
    Who can help me?

    Hi,
    ask your basis guys to check if PIAPPLUSER is not locked in XI......if it is locked, then unlock it......
    check SLDAPICUST if it is having the XI details correctly to access SLD............
    if your PIAPPLUSER is getting locked frequently, then ask your basis guys to change the password of service users in XI using the OSS Note for password change of service users..........
    Regards,
    Rajeev Gupta

  • SLDCHECK error when configuring SAP-CRM 7.0 to Single Stack SAP-PI 7.31 Java only

    Hello Experts,
    This would be a usual exercise when we are connecting SAP application to SAP-PI 7.31 JAVA only and the most usually asked question in different ways. I had performed successfully connection test according to Michael Blog or https://help.sap.com/saphelp_nw73/helpdata/en/3b/dec6eaf3ac42fba8f92f2413ec930f/content.htm
    Both SAP-CRM 7.0 and SAP-PI 7.31 JAVA only are hosted on the same physical hardware.
    Surprisingly , when tested with Tx SLDCHECK it shows error that RFC destination SAPSLDAPI and LCRSAPRFC are missing "SLD Configuration error".
    Do we  have to still consider creating the 2 RFC destination SAPSLDAPI and LCRSAPRFC
    Regards
    Rebecca

    Hello,
    Please refer to the following link:
    https://help.sap.com/saphelp_nw73/helpdata/en/48/a9bc457e28674be10000000a421937/content.htm
    Thanks.
    Jim

  • Tcode SLDCHECK error

    Dear all,
    when I run Transaction SLDCHECK following erro occure , We are using SAP PI 7.0  EHP1 uder oracle and RHEL 5.3
    also changed CPIC_MAX_CONV to 2000 and 5000 but problem is still
    Exchange Infrastructure: Test LCR Connection
    Properties of RFC destination SAPSLDAPI
      RFC host:
    %%RFCSERVER%%
      program id:      SAPSLDAPI_DPI
      gateway host:
    sapdevpi
      gateway service: sapgw00
    Testing the RFC connection to the SLD java client...
    RFC ping returned exception with message:
    max no of 100 conversations exceeded / CPIC-CALL: 'ThSAPCMRCV' : cmRc=17 thRc=45
    Summary: Connection to SLD does not work
    => Check SLD function and configurations
    Now checking access to the XI Profile
    Properties of RFC destination LCRSAPRFC
      RFC host:
    %%RFCSERVER%%
      program id:      LCRSAPRFC
      gateway host:
      gateway service:
    Testing the RFC connection to the SLD java client...
    RFC ping returned exception with message:
    Error when opening an RFC connection
    Regards
    shahid

    Hi Kanagaraja,
    thankx for reply
    1.  in Transaction SLDAPICUST
    SAP_CONFIG     1     sapdevpi     50000     PIAPPLUSER
    2. Yes  SLD is running
    3.  RZ70 ou put
    LD DS Start Program
       0: sapdevpi_DPI_00                           : Execute program: SLDRFC
       0: sapdevpi_DPI_00                           : Execute program: SLDMSGSRV
       0: sapdevpi_DPI_00                           : Execute program: SLDLIVECACHE
       0: sapdevpi_DPI_00                           : Execute program: SLDIPSERV
       0: sapdevpi_DPI_00                           : Execute program: SLDINSTSP
       0: sapdevpi_DPI_00                           : Execute program: SLDINSTSC
       0: sapdevpi_DPI_00                           : Execute program: SLDINSTPRD
       0: sapdevpi_DPI_00                           : Execute program: SLDGWSRV
       0: sapdevpi_DPI_00                           : Execute program: SLDDBSYS
       0: sapdevpi_DPI_00                           : Execute program: SLDCOMPSYS
       0: sapdevpi_DPI_00                           : Execute program: SLDCLIENT
       0: sapdevpi_DPI_00                           : Execute program: SLDBCSYS
       0: sapdevpi_DPI_00                           : Execute program: SLDAPPL_SERV
       0: sapdevpi_DPI_00                           : Execute program: SLDASSOC
       0: sapdevpi_DPI_00                           : Collection of SLD data finished
       0: sapdevpi_DPI_00                           : Data collected successfully
       0: sapdevpi_DPI_00                           : RFC data prepared
       0: sapdevpi_DPI_00                           : Used RFC destination: SLD_UC
       0: sapdevpi_DPI_00                           : RFC call failed: Error when opening an RFC connection
       0: sapdevpi_DPI_00                           : Batch job not scheduled
    Regards
    shahid

Maybe you are looking for

  • Getting rid of podcasts not downloaded

    I am using most current 7.1.5 iTunes. My question is: How do I get rid of the listing of undownloaded podcasts. By this I mean when you subscribe to a podcast all episodes show up. Thats great, but what if I don't want to download some of them. It ta

  • Insérer un enregistrement

    Bonjour, je suis à faire un formulaire enregistrement, et l'option dans l'onglet comportement de serveur insérer enregistrement n'y est pas comme vous pouvez le constaté sur mon image, Même chose dans le menu insertion, la fonction Objets de données

  • Can't reply or send

    I am suddenly unable to reply or send mail. When I click on the buttons, nothing happens. When I attempt to type into the forward mail window I cannot. This happened days after my mail on old Powerbook Lombard cannot send or receive mail. The mail pr

  • How to close the object after generation Excel file

    I have generated excel file. I save that file using "Save" button on dialog-box. After i go to menu navigation at that time i got javascript error. please give me the solution how to close objects after generating excel file.

  • Apple TV (1st Gen)   AirPlay?

    Hi, Will AirPlay ever come to the 1st gen Apple TVs? I have a 2nd gen downstairs and it's great but keep my old 1st gen in the bedroom - I can't upgrade it as the bedroom TV has no spare HDMI inputs so I'm using the component cables. Thanks!