SLD Check Failed (LCR_LIST_BUSINESS_SYSTEMS function doesn't work)

Hi all,
I have done SLDCHECK but then got this result below :
Already verify all the user working fine, please advise me.
Thank you and Regards
Fernand
Properties of RFC destination SAPSLDAPI
  RFC host:
%%RFCSERVER%%
  program id:      NWA_PROGRAM
  gateway host:
demokl
  gateway service: sapgw01
Testing the RFC connection to the SLD java client...
RFC ping was successful
SLD server access settings:
  host name:   demokl
  port number: 50100
  user       : SLDDSUSER
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

hi
check sldapicust - tX
it has to be PIAPPLUSER there
change it to PIAPPLUSER and it will work
regards
krishna
Message was edited by:
        Krishnamoorthy Ramakrishnan

Similar Messages

  • Lightroom 5.7.1, Yosemite OS X - Synchronise Folder function doesn't work in Lr. Is there a compatibility issue? I can see the folders/images in Finder but when trying to synchronise folders in Lr it does not recognise that there are any images and theref

    Lightroom 5.7.1, Yosemite OS X - Synchronise Folder function doesn't work in Lr.
    Is there a compatibility issue? I can see the folders/images in Finder but when trying to synchronise folders in Lr it does not recognise that there are any images and therefore unable to import to catalogue. Anyone has any idea how to make it work. Thanks a lot.

    Hi Elba,
    Thank you very much for your reply. Not sure, however, that we are talking about the same problem.
    I am trying to perform the same function in Lr that I have been doing for many years in the past and has only been a problem in the last few days (possibly coinciding with upgrading to Yosemite, trying to find out whether that is the problem)
    I am not intending to sync any files with Creative Cloud but only trying to use 'Synchronize Folder' function in Lr. Normally, I would right click on a particular folder in Lr catalogue and click on that function to check that the Lr Catalogue is perfectly matching my drives where the original photos are actually stored.
    The problem that I only started to encounter is that I can see the files on the actual drives but they do not appear in my Lr Catalogue and they are completely invisible to Lr. I simply can not get Lr to recognise them and then import them to catalogue.
    If for example, I export images to Ps and then save and close them, they do appear on my drive but are invisible to Lr and I can't get them imported into the catalogue. Import to folder also not producing any results as they are still invisible to Lr.
    Completely baffled by it. Any idea what could be the reason?
    Kind regards,
    Nik

  • The to_date function doesn't work ?

    Hello
    I don't know why my to_date function doesn't work on my pc.
    my statement is pretty complex so i just tried simple one
    select to_date('10-Jan-2006','dd-mon-yyyy') from dual;
    but even this one doesn't work it says it is invalid month
    howcome?
    is it because my Windows XP (not english version) doesn't recognise month Jan?
    i tried it another place it worked
    so is there any language pack / patch i need to install? ?
    so does OS matters?
    or how to fix this..please help me

    By default SQL Developer picks up it's language settings up from (on Windows) the Regional and Language Options. You can see what it has set by querying the NLS_SESSION_PARAMETERS view.
    Assuming you don't want to change to using DD-MM-YYYY formats for your months or change your regional settings on your PC, you need to tell SQL Developer which language you want, which you can do by adding the following lines to the file sqldeveloper\jdev\bin\sqldeveloper.conf:
    AddVMOption -Duser.language=en
    AddVMOption -Duser.country=US

  • Cannot print with a Samsung ML2160 printer (mono laser) and Pages. Print function doesn't work, only drag and drop in printer's queue

    Hello,
    I just purchased a Samsung ML2160 printer and it doesn't work with nor my Pages program, nor the Preview (to print PDF). No matter the way I tried, the Print function doesn't work and I cannot neither print or even enter the printer preferrences menu! My MacBook Pro has worked before with other printers, but now with the Samsung it doesn't work at all... Though, if I drag and drop a document, jpg, pdf in the printer queue, it prints just fine, but that method gives me absolutely no freedom to the printing... Could it be something from the Computer -> Machintosh HD -> Library -> Printers? Because a friend of mine was recently trying to save me some disk space, and therefore erasing part of the HP printer (to remove the previous printer I owned)...
    If anyone has any idea, that would be much appreciated
    Thank you in advance

    Do the sensible thing, as you say neither Preview nor Pages print, try other programs eg TextEdit. If none of them print then it is a System problem and very likely the printer drivers are AWOL or were never installed.
    Go to Samsung's website and download their software for the Mac:
    http://www.samsung.com/uk/consumer/print-solutions/print-solutions/mono-printers /ML-2160/XEU-support
    http://www.samsung.com/uk/support/model/ML-2160/XEU-downloads
    Peter

  • Since I got my new fixed disk my scan function doesn't work (HP Photosmart Premium All-in-One-Drucker - C309g), what should I do

    since I got my new fixed disk my scan function doesn't work (HP Photosmart Premium All-in-One-Drucker - C309g), what should I do

    Check whether you have the latest driver:
    Printer and Scanner software available for download:
    http://support.apple.com/kb/HT3669?viewlocale=en_US

  • I upgraded my 3 yr old iMac to Snow Leopard and now my HP C4150 Scanning function doesn't work (not recognized).  I downloaded updated Drivers from the HP site, but still no joy.  Any suggestions?

    I upgraded my 3 yr old iMac to Snow Leopard (OS X 10.6) and now my HP C4150 Scanning function doesn't work (not recognized).  I downloaded updated Drivers from the HP site and installed them, but still no joy.  Any suggestions?

    aspaceman,
    Perhaps I owe you an apology.   Having re-read that downloading from HP was unsuccessful I feel uncomfortable.  Can I suggest you update your 10.6 system (as noted in your profile) to 10.6.8 (if it is not already there) by using the
    Mac OS X 10.6.8 Update Combo v1.1 combo update plus any software updates that then apply.  

  • Sort function doesn't work E12

    the sort function doesn't work half the time on Elements 12 organizer.

    What about FUNCTION CLOCK_INFormula
    RETURN NUMBER
    IS
        l_hours_worked  NUMBER;
        l_to_return     NUMBER;
    BEGIN
        l_hours_worked := TO_NUMBER(NVL(:ATX_CLOCK_IN,'0'));
        IF (MOD((l_hours_worked - 0.02),0.25) = 0) THEN
            l_to_return := TRUNC((l_hours_worked - 0.02) * 4) / 4;
        ELSE
            l_to_return := TRUNC((l_hours_worked + 0.23) * 4) / 4;
        END IF;
        RETURN (l_to_return);
    EXCEPTION  
        WHEN VALUE_ERROR THEN
            RAISE_APPLICATION_ERROR ( -20100
            ,   'ERROR, Cannot represent '
            ||  :ATX_CLOCK_IN
            ||  ' as a number.');
    END CLOCK_INFormula;?
    This function assumes :ATX_CLOCK_IN is always positive.
    T.

  • Tap function doesn't work, recovered files in bin etc

    Hi
    I'm using Mac Book Pro 13' - Mac OS 10.6.8
    1) Every time, I switched on my laptop, the one finger (tap to click) function doesn't work (although I have set it up).
    I have to go to 'systems preferences' to set it up again.
    2) Why is there 'Recovered files' in the trash bin each I switched on my laptop? How to get rid of it?
    3) Sometimes when I work using Word 2011, it takes a long time to save (the little icon will be swirling and swirling) and then I had to force quit and lose unsaved info. Why does this happen and how to avoid it from happening?
    Pls help me. I'm in the middle of my thesis submission and urgently need solutions to my Mac problems. Thanks!

    Reinstall Photoshop. That often fixes the issue.

  • Preview function doesn't work in Cap2

    I just installed Captivate2. In the project I'm working on,
    the Preview function doesn't work. Or rather, it works
    sporadically... sometimes it does, and --- much more often -- it
    does not. What happens instead is, the "generating slides" message
    appears, and the progress-bar begins, but then suddenly the
    message/progress window disappears, WITHOUT generating the swf file
    and without doing any kind of preview. It happens on all the
    various options of the Preview function.
    It does work about one time in every ten attempts.
    This surely isn't acceptable... Anyone else encountering
    this???

    Hi UncleErnie
    By chance have you fiddled with the slide properties of any
    of the slides? One of the new options available in version 2 is to
    apply navigation options that cause slides to behave certain ways.
    So it stands to reason that if a slide was configured to jump to
    the end of the movie and the end of the movie option was to close
    the movie... Well, hopefully you see what I mean.
    Another question I would have is where are you editing your
    project? Are you possibly saving it to the company LAN and editing
    it using Captivate to make edits while in that location? If so,
    this is normally bad practice. Try moving the project locally and
    see if the issue resolves.
    Cheers... Rick

  • Why the italic function doesn't works in my Pages? I have already installed the actualization and it keeps not working...

    Why the italic function doesn't works in my Pages? I have already installed the actualization and it keeps not working...

    drag the other clip 'over' the main clip
    the 2nd clip has to be selected/yellow border...
    then you're prompted in the Inspector with the several options...

  • Snapshot function doesn't works in APEX 9.3.2, if the Aero Design is turned on

    Hello,
    the Snapshot function doesn't works in APEX 9.3.2, if the Aero Design is turned on. Once you click on tools > Snapshot > raster, the window where the displayed 3D model will be white.
    The same happens when  you click on the taskbar.
    There one other option than to turn off the Aero Design?
    System:
    OS: Windows 7 32bit
    APEX 9.3.2
    nvidia Quattro NVS160
    4GB RAM
    Dell Latitude E6400
    Thanks,
    Olli

    Hello,
    the Snapshot function doesn't works in APEX 9.3.2, if the Aero Design is turned on. Once you click on tools > Snapshot > raster, the window where the displayed 3D model will be white.
    The same happens when  you click on the taskbar.
    There one other option than to turn off the Aero Design?
    System:
    OS: Windows 7 32bit
    APEX 9.3.2
    nvidia Quattro NVS160
    4GB RAM
    Dell Latitude E6400
    Thanks,
    Olli

  • Scroll up function doesn't work at all.

    My Blackberry Bold9930 is having some issues and it is my second one this one is about two months old. First of all it has a dead pixel and I know you can not do anything about that. The other issue is with the track pad in some windows scroll up/down function doesn't work at all but left to right works. In some windows the scroll up/down function it will but others will not WHY? Windows that the function will not work that I know of are any pop up winds and the tap page in the browser some options pages etc. Why is this? Yes I have done restarts latest software I have done everything.

    Can you scroll using the touchscreen?
    Whenever my trackpad scroll "sticks" or seems to not work, it's because I have too many browser windows open, or too many apps open.  Which browser are you using?
    Try closing apps, closing windows, and leaving open only those you are actually using at the time.  A battery pull (quick pull in my case) usually cures a sluggish phone every time for me.

  • Spell Check in Story CS6 doesn't works

    Hi,
    I became a member of the creative cloud in December. I have started to use Adobe Story CS6 and the spell check doesn't work. Even if I type in gibberish, nothing gets underlined. I am using a computer with German Windows 7 64-bit but I am writing in English. I have installed the English versions of the software and I signed in to Story as "English".
    Any suggestions?
    Regards,
    pdm208

    That's not really "spellchecking". That's more of an in-document "spell-check feature". As opposed to a document-wide "spell-check function"
    Unfortunately, Adobe has failed to impliment a document wide spell check function in a document creation application (embarrasing). It's now 2014. I hope we don't have to wait more "years" for someone to get their act together on this.
    While importing scripts, documents and etc. from other software, there are always translation and importing issues. It's very unreasonable to make a user painstakingly go through an entire document to replace a "DOT" with an " ' "... and no! find and replace does seem to pick up on the DOT.
    If Adobe wants to make people pay a monthly service for their software with the ability to "push" updates at will... then they should at least update the word proccessng software with a functional spell check.
    I love the suite and have used it for years but, it really gives an "air of incompitence" when the most basic of features (the libraries have already been written 100x's over) are lacking in a word processing application.

  • In Yosemite, Magic Mouse double-click function doesn't work

    On my iMac running Yosemite 10.10.2, the double-click function on the Magic Mouse no longer works. So to open a folder, or anything for that matter, I must always do click-control ---and that doesn't work for everything. For example, I can't double click on a character in Glyphs, so this renders Glyphs useless. And so on... I have gone into preferences to see if anything was amiss in the settings, but everything checked out fine. Is there a fix for this, or do I have to wait for the next upgrade for Yosemite? Help! Thanks... --Royce

    What's the answer to this mouse problem, please? Why does my double-click no longer work on my magic mouse since downloading Yosemite 10.10.2 to my iMac? 
    What's up Apple?
    Mark

  • USB OTG function doesn't work on Z30STA100-6/10.3.1.2243

    Like the title says, USB OTG doesn't work on my Z30 STA100-6 running the latest official OS 10.3.1.2243. It worked before on 10.2.1.3062. I did tried basic troubleshooting procedures like turning the device OFF then ON, reformat my flash drives to FAT, FAT32, and exFAT and even installed OS 10.3.1.1949, 10.3.1.2072 and 10.3.1.2677 for confirmation, all of which it still didn't work. In short, I haven't got the chance to make this work on any 10.3.1. Another thing: Upon further checking, I noticed that the USB column on the Networks and Connections settings displays "Connected" just by simply inserting the OTG cable into the micro USB port on the Z30 running 10.3.1, that is, no flash drive inserted on the other end. I even confirmed this by going to the engineering screens and confirmed that the device, upon inserting just the OTG cable, detects it and displays it as "OTG dongle". Any help would be appreciated as I really want to get to the bottom of this.

    Hi
    According to the Microsoft page the "Error code 10" appears If the device has a FailReasonString value in its hardware key, that string appears as the error message. The driver or enumerator puts this registry string value there. If there is no FailReasonString in the hardware key, you receive the following error message:
    This device cannot start. (Code 10)
    Recommended resolution
    Device failed to start. Click Update Driver to update the drivers for this device. On the General Properties tab of the device, click Troubleshoot to start the Troubleshooting Wizard.
    Ps: This is only a Microsoft tip but if the USB device cannot work because of the low power supply you should check if it work with the external USB hub wich supports a external power supply

Maybe you are looking for

  • Interactive media question

    hello indesigners im trying to add a movie into my pdf whic im exporting from indesign.its a swf file from flash and im getting these results here:if anyone can shed some light pease thank you.

  • Time Gap in Message Processing in SAP PI

    Dear All, We are having soap to Proxy Synchronous ,in this Scnerio non SAP System call SAP PI Soap Service and send data to PI for Processing in ECC. We are facing a issue like suppose non sap system sends data to SAP PI Around 11 Am then when we che

  • Where can I obtain a copy of FireFox 12.0

    FireFox 13 takes entirely too long to load Msn.com. I wish to go back to FireFox 12 until such a time as webpage loading problems with FireFox 13 and beyond are resolved.

  • PC- Illustrator CS6 Running Slow

    As the title says, I'm working on a PC with Illustrator CS6, and latley it's been a pain in the ***. Every few actions Not Responding pops up in the top of the window and it takes a few seconds to load before returning to normal. It never full on cra

  • Help!, Ipad mini wont turn on even pressing both the home+power button

    iPad wont turn on anymore even i press the home + power button (sleep/wake), nor even if i plug it with the orig. usb to the pc and to the charger! It doesnt respond to anything!. To simplify my problem,  heres what i have done: * I let it plug into