SLDAccess set to true, but not available

Hi all,
I get the following error when Running a Proxy to mail Scenario.
This happens in the Call adapter pipeline Step of the receiver mail adapter.
error message "com.sap.engine.interfaces.messaging.api.exception.ConfigException: SLDAccess set to true, but not available"
I did the Following:
1.  tried SLDCHECK -
works fine
2.  XIAFUSER/PIAFUSER is not locked.
3.  The SLD is reachable
4.  XI business system has correct "Pipeline URL" parameter defined
What could have gone wrong.
Any help would be appreciated.
Regards
Abhishek

Hi,
Check the doc and links.
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/09cb9ffb-0701-0010-4183-c2e8f405bf9a
Note 768148 - Using a separate SLD
Note 720717 - Reduce the number of System Landscape Directories (SLD)
Note 936318 - Dividing a SLD instance
Note 935474 - Consolidate SLD instances
Regards,
Phani

Similar Messages

  • Change the pwd of the WBEM client:SLDAccess set to true but not available

    Hello,
    I checked on ABAP side with transaction SLDCHECK, everything fine.
    Then checked http://server:port/sld/ListServlet?bsview=true
    *Please find the log content below:*
    WARNING com.sap.lcr.cimsrv.ChangePasswordServlet: Password Change that service client users don't have initial passwords.Alternatively, logon to the SLD user interface with the corresponding user and assign a new password client settings must be updated accordingly.
    So suggestion was to change the WBEM client password.
    Due to the above scenario, *Error in SXMBMONI*_ is:
    com.sap.aii.af.ra.ms.api.ConfigException: SLDAccess set to true, but not available
    Can anyone let me know how to resolve this issue.
    Thanks in advance.
    Ganesh Karicharla

    HI ganesh
    check this thread for reference
    Unable to find an associated SLD element
    regards
    kummari

  • SLDAccess set to true, but not available -  http to RFC Scenario

    Hello Experts,
    I have created http to RFC scenario in DEV system and it is working fine.
    But after transporting the scenario to QAS system. It is giving following error.
    com.sap.engine.interfaces.messaging.api.exception.ConfigException: SLDAccess set to true, but not available
    Please advice on this ...
    Thanks ,
    Vishal

    There could be many things that could be checked.
    1. Perform SLDCHECK and look for inconsistencies.
    2. Check if service user XIAFUSER is locked or not.
    3. Perform a full CPACache refresh.
    Regards,
    Prateek

  • Ability to perform ALTER SESSION SET SQL TRACE but not all alter clauses

    I see that in order to run the ALTER SESSION SET SQL TRACE command, the user should be explicitly granted alter session privilege as the CREATE SESSION privilege alone is not enough. Is there a way to grant the ability to perform ALTER SESSION SET SQL TRACE but not the other clauses such as GUARD, PARALLEL & RESUMABLE?.
    Thanks
    Sathya

    If you are using Oracle 10g and above, you can use DBMS_SESSION.session_trace_enable procedure,
    it doesn't require alter session system privilege.
    Simple example:
    SQL> connect test/test@//192.168.1.2:1521/xe
    Connected.
    SQL> alter session set tracefile_identifier='my_id';
    Session altered.
    SQL> alter session set sql_trace = true
      2  ;
    alter session set sql_trace = true
    ERROR at line 1:
    ORA-01031: insufficient privileges
    SQL> execute dbms_session.session_trace_enable;
    PL/SQL procedure successfully completed.
    SQL> select * from user_sys_privs;
    USERNAME                 PRIVILEGE                    ADM
    TEST                      CREATE PROCEDURE                NO
    TEST                      CREATE TABLE                    NO
    TEST                      CREATE SEQUENCE                    NO
    TEST                      CREATE TRIGGER                    NO
    TEST                      SELECT ANY DICTIONARY               NO
    TEST                      CREATE SYNONYM                    NO
    TEST                      UNLIMITED TABLESPACE               NO
    7 rows selected.
    SQL> execute dbms_session.session_trace_disable;
    PL/SQL procedure successfully completed.
    SQL> disconnect
    Disconnected from Oracle Database 10g Release 10.2.0.1.0 - Productionand here is result from tkprof:
    TKPROF: Release 10.2.0.1.0 - Production on So Paź 23 00:53:07 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Trace file: xe_ora_176_my_id.trc
    ( ---- cut ---- )
    select *
    from
    user_sys_privs
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.08       0.08          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        2      0.01       0.01          0         15          0           7
    total        4      0.09       0.09          0         15          0           7
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 61 
    Rows     Row Source Operation
          7  HASH GROUP BY (cr=15 pr=0 pw=0 time=11494 us)
          7   CONCATENATION  (cr=15 pr=0 pw=0 time=4913 us)
          0    MERGE JOIN CARTESIAN (cr=4 pr=0 pw=0 time=1169 us)
          0     NESTED LOOPS  (cr=4 pr=0 pw=0 time=793 us)
          0      TABLE ACCESS FULL SYSAUTH$ (cr=4 pr=0 pw=0 time=592 us)
          0      INDEX RANGE SCAN I_SYSTEM_PRIVILEGE_MAP (cr=0 pr=0 pw=0 time=0 us)(object id 312)
          0     BUFFER SORT (cr=0 pr=0 pw=0 time=0 us)
          0      TABLE ACCESS FULL USER$ (cr=0 pr=0 pw=0 time=0 us)
          7    NESTED LOOPS  (cr=11 pr=0 pw=0 time=3429 us)
          9     HASH JOIN  (cr=9 pr=0 pw=0 time=2705 us)
          9      TABLE ACCESS FULL SYSAUTH$ (cr=4 pr=0 pw=0 time=512 us)
         63      TABLE ACCESS FULL USER$ (cr=5 pr=0 pw=0 time=914 us)
          7     INDEX RANGE SCAN I_SYSTEM_PRIVILEGE_MAP (cr=2 pr=0 pw=0 time=510 us)(object id 312)
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      SQL*Net message to client                       2        0.00          0.00
      SQL*Net message from client                     2       20.64         20.65
    BEGIN dbms_session.session_trace_disable; END;
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.01       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           1
    Fetch        0      0.00       0.00          0          0          0           0
    total        2      0.01       0.00          0          0          0           1
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 61 

  • Full list of MS SQL 2000 features that are supported in compatibilty 80 mode but not available in 2008 R2 compatibility 100

    Hello Everyone,
    Could you possibly suggest where I can find a full list MS SQL 2000 features that are supported in 2008 R2 compatibilty 80 mode but not available in  compatibility 100?
    Thanks
    SSIS question

    Hi Tom,
    What you are saying makes sense, if the compatibility level is 90 then the old ANSI joins are expected to be rectified.
    I wrote a script to check - it's an easy exercise, all you need is to loop through the catalog views and for each SP or scalar function run this command:
    set fmtonly on exec <object> set fmtonly on and in the catch block handle the error related to compatibility.
    For checkign the views similar thing set noexec on <select top 1 * from view> set noexec off.
    This works very fast as none of the code is actually executed.
    Caveat thought  triggers and table functions. I could not find the way how to check them. so will have to extract the DDLs and just check the text for old ansi joins. Not very reliable, but that's all I can think of at the moment.
    Any chance you know how to compile a trigger or table function without running.
    For table functions when I tried set noexec on they still asked for parameters, something I was trying to avoid.
    Thanks
    SSIS question

  • Schedule lines present on R/3 but not available on BW.

    Schedule lines present on R/3 but not available on BW.
    It is observed that some schedule line records are uploaded to BW with recordmode ‘R’ causing deletion from ODS, though they are present on R/3 side (in EKET). We use 2lis_02_scl to upload schedule line data system BI 7.0. Anyone faced such problem?
    Points shall be assigned if found helpful.

    Kalyan ,
    refer to oss notes : 690106
    here he talks about what is the real motive for changing R mode to X mode .
    So but this notes does an undo operation for the same .
    We need to re do the same again in start routine if we want to maintain the deleted records . Also search the OSS by giving the data source name & record mode R , then you will also get the original problem in extractors with R mode .
    i forgot about the OSS numbers
    -Sourav

  • HT201272 How do I download previously purchased albums from iTunes when the album has either disappeared from my computer or the tunes are not playable?  The album shows as purchased on the iTunes store, but not available to download to my authorized devi

    How do I download previously purchased albums from iTunes when the album has either disappeared from my computer or the tunes are not playable?  The albums show as purchased on the iTunes store, but not available to download to my authorized device.  I also have albums that appear in my library, but are not able to be added to my iPod from my computer

    When you download something from the iCloud, it is a brand new licensed copy. Your iCloud account just contains a notation that you have this app. It isn't storing an actual copy of the app from your Mac.

  • I would like to upgrade my OS from 10.6.8. I can't find any higher version on the site. Yosemite is the latest but not available. Can someone help please?

    I would like to upgrade my OS from 10.6.8. I can't find any higher version on the site. Yosemite is the latest but not available. Can someone help please?

    If Yosemite is not available to you, your system may not meet the minimum requirements.
    How to install OS X Yosemite on your Mac - Apple Support

  • MPPE required but not available

    Hi,
    Seems like this issue is recurring on the discussion board.
    I am running pptp-vpn on an osx server 10.5.7, which is also an OD master.
    EDIT: Should add that I was using my OD accounts to VPN, not local accounts.
    Until yesterday, the pptp-vpn worked. But today I get this error (I did some changes to the DNS server yesterday, and shutdown the OD replica, probably what caused it):
    "MPPE required but not available."
    Logs here:
    #Start-Date: 2009-07-31 09:28:31 CEST
    #Fields: date time s-comment
    2009-07-31 09:28:31 CEST Loading plugin /System/Library/Extensions/PPTP.ppp
    2009-07-31 09:28:31 CEST Listening for connections...
    2009-07-31 09:28:54 CEST Incoming call... Address given to client = 10.3.10.1
    Fri Jul 31 09:28:55 2009 : Directory Services Authentication plugin initialized
    Fri Jul 31 09:28:55 2009 : Directory Services Authorization plugin initialized
    Fri Jul 31 09:28:55 2009 : PPTP incoming call in progress from 'HEREWASMYCLIENTIP'...
    Fri Jul 31 09:28:55 2009 : PPTP connection established.
    Fri Jul 31 09:28:55 2009 : using link 0
    Fri Jul 31 09:28:55 2009 : Using interface ppp0
    Fri Jul 31 09:28:55 2009 : Connect: ppp0 <--> socket[34:17]
    Fri Jul 31 09:28:55 2009 : sent [LCP ConfReq id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0xfebd0071> <pcomp> <accomp>]
    Fri Jul 31 09:28:55 2009 : rcvd [LCP ConfReq id=0x1 <asyncmap 0x0> <magic 0xc1569522> <pcomp> <accomp>]
    Fri Jul 31 09:28:55 2009 : lcp_reqci: returning CONFACK.
    Fri Jul 31 09:28:55 2009 : sent [LCP ConfAck id=0x1 <asyncmap 0x0> <magic 0xc1569522> <pcomp> <accomp>]
    Fri Jul 31 09:28:55 2009 : rcvd [LCP ConfAck id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0xfebd0071> <pcomp> <accomp>]
    Fri Jul 31 09:28:55 2009 : sent [LCP EchoReq id=0x0 magic=0xfebd0071]
    Fri Jul 31 09:28:55 2009 : sent [CHAP Challenge id=0x87 <90748838ee766580e2607fe03aabb64d>, name = "MYSERVERHOSTNAMEHERE"]
    Fri Jul 31 09:28:55 2009 : rcvd [LCP EchoReq id=0x0 magic=0xc1569522]
    Fri Jul 31 09:28:55 2009 : sent [LCP EchoRep id=0x0 magic=0xfebd0071]
    Fri Jul 31 09:28:55 2009 : rcvd [LCP EchoRep id=0x0 magic=0xc1569522]
    Fri Jul 31 09:28:55 2009 : rcvd [CHAP Response id=0x87 <ed961c48a2d2bf4a740d5bc5c8fe52120000000000000000fad480211366fb8d7360a82a1cfe50 c9e994fe5f85c9166900>, name = "larsrohdin"]
    Fri Jul 31 09:28:55 2009 : sent [CHAP Success id=0x87 "S=EB025BB4770A6FF010F57860F8B00FDE74FDDC00 M=Access granted"]
    Fri Jul 31 09:28:55 2009 : CHAP peer authentication succeeded for larsrohdin
    Fri Jul 31 09:28:55 2009 : DSAccessControl plugin: User 'larsrohdin' authorized for access
    Fri Jul 31 09:28:55 2009 : MPPE required, but keys are not available. Possible plugin problem?
    Fri Jul 31 09:28:55 2009 : sent [LCP TermReq id=0x2 "MPPE required but not available"]
    Fri Jul 31 09:28:55 2009 : rcvd [CCP ConfReq id=0x1 <mppe +H -M +S +L -D -C>]
    Fri Jul 31 09:28:55 2009 : rcvd [LCP TermAck id=0x2]
    Fri Jul 31 09:28:55 2009 : Connection terminated.
    Fri Jul 31 09:28:55 2009 : Connect time 0.0 minutes.
    Fri Jul 31 09:28:55 2009 : Sent 0 bytes, received 0 bytes.
    Fri Jul 31 09:28:55 2009 : PPTP disconnecting...
    Fri Jul 31 09:28:55 2009 : PPTP disconnected
    2009-07-31 09:28:55 CEST --> Client with address = 10.3.10.1 has hungup
    I have tried everything in this thread:
    http://discussions.apple.com/thread.jspa?threadID=1286988&tstart=0
    and this one:
    http://discussions.apple.com/thread.jspa?messageID=6560466
    But no luck.
    Any ideas? Anyone? Really do not want to reinstall my server again.
    Or as another solution, is there any third party pptp-servers out there for osx server, as this one is really unreliable.
    Best Regards,
    Lars Rohdin
    Message was edited by: larsrohdin

    Tyghe got it right, HOWEVER, if your OD is munged for any reason OR there are more than one user, you many need to be more 'invasive' about cleaning up and then fixing this issue
    If you run the command `vpnaddkeyagentuser /LDAPv3/<od servername>` and it just keeps prompting me like it isn't authenticating, you OD is probably either unstable or non functional. Probably needs an archive and demote-promote.
    If you run the command and it runs without prompting me for any username or password and adds an entry into the system keychain but does not create a user on the OD server, it is probably similar to issue as above.
    The way I would deal with this is to clear the keychain of EVERY entry, then open WGM, delete all the VPN MPPE users, and try the command again. There will only be one user that contain the 'secret' password for MPPE use, attached to VPN and the password is placed in to the keychain, all others are now dead.
    Peter

  • Upgrade requested but not available

    I purchased full Acrobat XI Standard, downloaded and installed. Now an upgrade with serial number is requested but not available. How can I resolve?

    http://forums.adobe.com/community/download_install_setup/creative_cloud_faq
    -has a link about why you are prompted to enter a serial number which may help

  • ODBC Driver installed, but not available

    Hello,
    i have installed 32bit ODBC Instant Client (instantclient-odbc-nt-11.2.0.4.0) on a Windows 7 64bit system. Installation suceeds without any errors,
    but the Driver is not available as a ODBC Datasource (odbcad32). Path to Instant Client is set in the Environment Variable.
    Best regards,
    Torsten 

    Hi Torsten
    instantclient-odbc-nt-11.2.0.4.0 is 32-bit driver it will be available in c:\WINDOWS\SysWOW64\odbcad32.exe
    Note: The names are in reverse i.e. for 32 bit odbc, you search in SysWOW64 and for 64 bit you search in System32. This is as designed by Microsoft.
    http://msdn.microsoft.com/en-us/library/windows/desktop/ms712362%28v=vs.85%29.aspx
    Thanks
    Thiyagu

  • Photoshop Photography Program advertised, but not available in Hungary?

    After filling out the order form for Photoshop Photography Program the PS + LR boundle, after processing the payment the website gave an erroe message: Payment System Unavailable and offered me to try again, or place the order over the phone. I have spent about 2 hours total on the phone, mostly waiting and on hold calling a UK based number. Adding up the charge for the minutes calling UK from Hungary, the phone bill might be as much as a full PS license.
    I also spoke to a manager at the sales, I told him my story and he told me that they extended the special, so it did not end on the 2nd of December. The special will remain 'til the 8th of December. He transferred my call to another sales agent. She was helpful, but she couldn't process the payment either. She told me that I can not purchase this type of plan, because ungary is not registered. Whatever that means, it is mindblowing that they advertise the plan that not available from here. What a bunch of BS!
    I am wandering, if anyone has a little more info on this matter!
    Thanks, ZFoto

    What file(s) do you want to associate with Shockwave Player?
    SW player is a browser add-on, not a standalone player.
    You can test it at http://www.adobe.com/shockwave/welcome/

  • Trying to book ACE exam for Indesign CC - but not available

    Why is an ACE exam for Indesign CC not available and when will it be? I have been trying to book it via Pearson Vue for some time but no luck. Photoshop, Illustrator, Premiere, Dreamweaver are all available as ACE exams for CS6 and CC but no Indesign. Are you dropping Indesign from the ACE curriculums?

    Thanks Rajshree
    The link you posted directs to the CS6 exam, I was wondering why CC isn't available for Indesign (but is for other softwares). I have already contacted Pearson Vue and they said that Adobe hasn't supplied them with any Indesign CC exam and to contact Adobe regarding why.
    I tried to contact Adobe but they said that they could only offer software support and didn't have info about the ACE process.
    I'm thinking this is a dead end.
    Thanks again for your reply thou

  • Gear Fit being advertised but not available!

    The Samsung gear fit is being advertised in the weekly ad in my area, RI/MA but it is not available ANYWHERE! What is the issue? The weekly ad popup states that it is in stock at 7 stores near me but then when you go to actually buy it online for store pickup you cannot. I called some of the stores and they all said that they do not have it and have not had it for some time. Why advertise an item that you cannot buy?

    Hello Kenundrum,
    Our advertisements are intended to make you aware of our great prices so that you can rush right over to see us and acquire those items that interest you. It's not our goal to create frustration by having the products in which you're interested be out of stock -- though it admittedly can happen, especially for highly sought after devices. I apologize for having disappointed you.
    I'm very grateful for the feedback you've provided on your experience. I'm disheartened that the situation forced you to adapt your birthday gift-giving plans. It's my hope that you'll give Best Buy another chance to delight you one day soon.
    Thank you for writing to us.
    Sincerely,
    John|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Magazine marked as INSTALLED in AppStore, but not available on iPad

    I bought a magazine in the newsstand App. I lost the network during the download of the issue. I decided to start over. So I double-clicked the Home button, pressed the magazine app icon, and removed the magazine App by clicking on the red minus.
    When I wanted to reinstall the magazine, it shows up as INSTALLED in the app store. But it does not exist on my iPad.
    I already wiped my iPad (factory reset) and restored the backup. But this did not help. The magazine is missing, and I cannot re-download it.
    How can I access my purchased magazine now?
    Any hints are appreciated.

    OK. I confess, I am an idiot.
    There is not a problem with Apple TV or the content.
    I mistakenly thought that I had a season pass. Instead, for shows which do not offer season passes (why is that possible), I mark a show as a favorite, so I can find it later and get new episodes.
    This was one of those cases. So the "New" episodes were newly available, but not yet purchased. And thus, of course I can only see the ones I've already watched because I had not purchased all the new episodes.
    I apologize for my tone. I am certain that the Shade of Steve Jobs finds my lack of faith disturbing...
    tl;dr
    No problem here.

Maybe you are looking for