Same old LDAP issue

hey folks,
i am trying to validate an user from my LDAP db
here are my LDAP entries..
dn: cn=jim,o=attinfo,c=us
objectclass: inetOrgPerson
objectclass: ePerson
objectclass: organizationalPerson
objectclass: person
objectclass: top
cn: jim
sn: robinson
userpassword: {iMASK}>1e5rd9bCaqTnz9oQQSVhFYekLSoUp2vAnOWaZIKO8LfBBW1RuAJi2mvu 4dwcQ+4r5TPYQIFnQyT6QKGV4LEnQvpSLb7vckUjmt2FyrTKtVfJghCZiLvH61oXB1eEawkLFQOi cfjP2lYQYi0LdA5a4mS03I1JrdVdbF<
uid: jim
description:: and here is the java code to access that..
import javax.naming.ldap.*;
import javax.naming.*;
import javax.naming.directory.*;
import java.util.*;
public class TestLdap2{     
public TestLdap2(){     
try{     
DirContext ctx = null;
Hashtable ht = new Hashtable(2);
ht.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");     
ht.put(Context.PROVIDER_URL, "ldap://dbipaddr:389/o=attinfo");
     ctx = new InitialDirContext(ht);        SearchControls ctls = new SearchControls();        ctls.setSearchScope(SearchControls.SUBTREE_SCOPE);        NamingEnumeration ne = ctx.search("o=attinfo","(sn=robinson)",ctls);
        while(ne.hasMore()){
             SearchResult sr = (SearchResult) ne.next();
            System.out.println("DN: "+sr.getName());
Attributes attrbs = sr.getAttributes();          
   for (NamingEnumeration nE = attrbs.getAll();nE.hasMoreElements();)
                Attribute attr = (Attribute) nE.next();
                String attrID = attr.getID();                   System.out.println("ID: "+attrID);            
for (Enumeration vals = attr.getAll();vals.hasMoreElements();)
                 System.out.println("Vals: "+vals.nextElement());
ctx.close();     
} catch (Exception e){
          e.printStackTrace();     
public static void main(String args[]){
     new TestLdap2();     
}I am getting following error..
javax.naming.NameNotFoundException: [LDAP: error code 32 - No Such Object]; rema
ining name 'o=attinfo'
is it some kind of binding issue...
any help is appreciated..
thanx..

Hello, it isn't necessarily a 'binding' issue -- that indicates permissions issues. The problem is that you are searching for Jim in 'o=attinfo,o=attinfo', and ignoring the root ('c=us'). The easiest way to solve the problem is to change the line:
ht.put(Context.PROVIDER_URL, "ldap://dbipaddr:389/o=attinfo");
To the following:
ht.put(Context.PROVIDER_URL, "ldap://dbipaddr:389/c=us");
Thus, your initial context will be at the root, and when you search your context will change to 'o=attinfo,c=us' which should contain your entry.
Good luck,
Derek

Similar Messages

  • Corrupt sparseimage file (not same old Filevault issue)

    I'm having a problem -- I have a corrupt Sparseimage file, but none of the solutions that others have proposed have worked.
    No matter what I try, it keeps getting reported as corrupt.
    For example, the "half mount" tip that others have used to recover things:
    $ sudo hdid -nomount SecureSparse.sparseimage
    Password:
    hdid: attach failed - corrupt image
    That's all I can get. Launching it in the finder gives me the same thing, only in a dialog box.
    Trying to verify or repair it in Disk Utility does the same.
    The most verbose response I've gotten out of any utility is this:
    $ hdiutil convert -format UDZO -verbose -o disk.dmg SecureSparse.sparseimage
    hdiutil: convert: processing "SecureSparse.sparseimage"
    DIBackingStoreInstantiatorProbe: interface 0, score 100, CBSDBackingStore
    DIBackingStoreInstantiatorProbe: interface 1, score -1000, CRAMBackingStore
    DIBackingStoreInstantiatorProbe: interface 2, score 200, CCarbonBackingStore
    DIBackingStoreInstantiatorProbe: interface 3, score -1000, CDevBackingStore
    DIBackingStoreInstantiatorProbe: interface 4, score -1000, CCURLBackingStore
    DIBackingStoreInstantiatorProbe: interface 5, score -1000, CVectoredBackingStore
    DIBackingStoreInstantiatorProbe: selecting CCarbonBackingStore
    DIFileEncodingInstantiatorProbe: interface 0, score -1000, CMacBinaryEncoding
    DIFileEncodingInstantiatorProbe: interface 1, score -1000, CAppleSingleEncoding
    DIFileEncodingInstantiatorProbe: interface 2, score -1000, CEncryptedEncoding
    DIFileEncodingInstantiatorProbe: nothing to select.
    DIFileEncodingInstantiatorProbe: interface 0, score -1000, CUDIFEncoding
    DIFileEncodingInstantiatorProbe: nothing to select.
    DIFileEncodingInstantiatorProbe: interface 0, score -1000, CSegmentedNDIFEncoding
    DIFileEncodingInstantiatorProbe: interface 1, score -1000, CSegmentedUDIFEncoding
    DIFileEncodingInstantiatorProbe: interface 2, score -1000, CSegmentedUDIFRawEncoding
    DIFileEncodingInstantiatorProbe: nothing to select.
    DIDiskImageInstantiatorProbe: interface 0, score 0, CDARTDiskImage
    DIDiskImageInstantiatorProbe: interface 1, score 0, CDiskCopy42DiskImage
    DIDiskImageInstantiatorProbe: interface 2, score -1000, CNDIFDiskImage
    DIDiskImageInstantiatorProbe: interface 3, score -1000, CUDIFDiskImage
    DIDiskImageInstantiatorProbe: interface 5, score -100, CRawDiskImage
    DIDiskImageInstantiatorProbe: interface 6, score -100, CShadowedDiskImage
    DIDiskImageInstantiatorProbe: interface 7, score 1000, CSparseDiskImage
    DIDiskImageInstantiatorProbe: interface 8, score -1000, CCFPlugInDiskImage
    DIDiskImageInstantiatorProbe: interface 9, score -100, CWrappedDiskImage
    DIDiskImageInstantiatorProbe: selecting CSparseDiskImage
    DIDiskImageNewWithBackingStore: CSparseDiskImage
    DIDiskImageNewWithBackingStore: instantiator returned 103
    convert: unable to recognize "SecureSparse.sparseimage":
    corrupt image.hdiutil: convert: result: 103
    hdiutil: convert failed - corrupt image
    I am somewhat desperate here. I have several backups of this sparse file, but they are ALL CORRUPTED IDENTICALLY. (My machine syncs to the backup server every night, and apparently it synced after the corruption happened, and clobbered the un-corrupted version.)
    Does anyone have any idea how to interpret the above messages? I'd be interested in just knowing why this happened for a start, and in what way the file is corrupted...I'm willing to invest significant resources in recovering the data.
    Most of the recovery utilities I've seen will only work if Mac OS X will partially mount the image, and that isn't the case here.
    Power Macintosh G5 Dual 2GHz   Mac OS X (10.4.6)  

    Does anyone have an answer to this. Lots and Lots of data lost.
    The tail of
    hdiutil attach -debug myimage.sparseimage
    syncPhysicalAndLogicalForkLengths: returning 0 (cached logEOF: 3592318976, physEOF: 3592318976)
    CBSDBackingStore::closeDataFork: about to close 5CSparseFile::~CSparseFile: WARNING flushing header and index nodes failed. Invalid argument
    syncPhysicalAndLogicalForkLengths: entry (cached logEOF: 3592318976, physEOF: 3592318976)
    : returning 0 (new cached logEOF: 3592318976, physEOF: 3592318976)
    DIDiskImageNewWithBackingStore: returning 0x00000067
    DIResolveBackingStoreToDiskImage: unable to resolve to any disk image class. 103.
    DIResolveURLToDiskImage: resolving disk image format failed. 103.
    status proc called: attach
    error code: 103
    status proc called: cleanup
    2006-05-25 18:36:04.170 diskimages-helper[547] DIHelperAttach performOperation: returning 103
    2006-05-25 18:36:04.170 diskimages-helper[547] DIHelper perform_operation: returning {payload = {}; "result-code" = 103; }
    2006-05-25 18:36:04.170 hdiutil[546] connectToFramework: proxy has finished operation
    2006-05-25 18:36:04.171 hdiutil[546] results are: {payload = {}; "result-code" = 103; }
    2006-05-25 18:36:04.171 hdiutil[546] _threadResultsError is 103
    2006-05-25 18:36:04.171 hdiutil[546] connectToFramework: terminating proxy
    2006-05-25 18:36:04.171 diskimages-helper[547] terminateHelper
    DIHLDiskImageAttach() returned 103
    <CFDictionary 0x323870 [0xa08011c0]>{type = immutable, count = 0, capacity = 0, pairs = (
    hdiutil: attach failed - corrupt image
    nebula:/Volumes/Europa/bad/Disk Images cgraham$ 2006-05-25 18:36:04.272 diskimages-helper[547] -DIHelperAgentMaster terminateUIAgentConnection
    2006-05-25 18:36:04.272 diskimages-helper[547] -exitIfPossible:0 (_drivesServed 0)
    2006-05-25 18:36:04.273 diskimages-helper[547] -exitWatchThread: trying to get exit lock
    2006-05-25 18:36:04.273 diskimages-helper[547] -exitWatchThread: got exit lock
    2006-05-25 18:36:04.273 diskimages-helper[547] -exitWatchCompleted:0
    2006-05-25 18:36:05.273 diskimages-helper[547] suicide:<NSCFTimer: 0x320770>

  • My Time Capsule has just failed, 2 months after the end of 12m warranty. same old known power supply issue, "just unlucky" says my local Apple service center. ***?

    i bought a 2TB Time Capsule in Sep 2010. its just failed last week, less than 2 months after the expiry of the 12month warranty.
    and 3 months after the end of Apple's offer to replace all the many Time Capsules that have failed previously due to this same fault.
    nice timing guys.
    "yeah, its dead. same old known power supply issue", says my local Apple service center, "just unlucky".
    huh? "unlucky"? you sell products with known defects, and when it fails i'm "unlucky". nice.
    "OK, anyway, how much to fix it ?", i ask.
    "you can't fix them, its closed", is the reply, "you have to buy another one".
    "hmpf. OK, how do I get my backed-up data off it ?"
    "you can't. we could try break it open and recover the hard disk i guess, but no guarantees we'd get it, and you'd have to pay for us to do that, whether it works or not of course".
    "er.... is there a hidden camera in here? are we on TV? you can't be serious ? ..and this piece of garbage is what i've been using for a secure backup of my precious, irreplaceable, priceless personal data  ???"

    ceeb28744.  Welcome to the Apple Users Support Community.  Sorry to hear your TC died!  You said it was a 2TB so I would guess it be the model A1355/MB997LL/A or MC344LL/A.  Believe it or not all users of these time capsules will eventually experience this problem like you have.  There is a 99.5% (or better) chance that the only thing that is wrong with it is the internal power supply.  If you will go to this site.... https://sites.google.com/site/lapastenague/a-deconstruction-of-routers-and-modem s/apple-time-capsule-repair  and once there look over at the left side and you will find:
    Apple Time Capsule Repairers    and from that list you will be able to choose from a list of individuals that could repair your TC and have it returned to you fully operational again.  The individuals on the list are hardware technicians and they can save you a lot of money and time.
    Larry

  • HT204053 I previously use an apple id , I have tried to reset and even changed the id on the settings on my phone but each time I try to update an apple apps , I keep getting the same old ID on my phone. What do I do?

    I previously use an apple id called *** @hotmail.co.uk, I have tried to reset and even changed the id on the settings on my phone but each time I try to update an apple apps , I keep getting the same old ID on my phone. What do I do?
    <Email Edited by Host>

    Is the same true for using the App Store with a desktop machine? Someone installed a program on my machine (the IT department) and I would like to install the updates but it was installed under a different Apple ID. This anyone know how to change, or work around this particular issue?
    Any thoughts or suggestions are greatly appreciated.
    Cheers

  • Same old message - no solution! "this iphone cannot be used because the apple mobile device service is not started"

    Hello all,
    This driving me crazy - I have done it all - read through every forum and post - inculding all here. None of them resolves my issue...
    The details:
    Iphone - 4 - with IOS 5.0.1 (not the 4S)
    itunes version 10.5.2 64bit
    Laptop - running Windows 7 home premium 64bit
    (and just in case) - running Norton 360 with firewall settings for all iphone programs set to 'allways' I assume this is better than auto (yes I tried both)
    I've done the lot - reset the services , start / stopped them, automatic etc etc. no joy - as soon as i plug the phone in via USB the same old message:
    "this iphone cannot be used because the apple mobile device service is not started" driving me mad.
    Itunes will not recognize it as a device etc. nothing - PLEASE HELP....

    If the issue continues after restarting AMDS, then you'll need to remove and reinstall AMDS and iTunes.
    Completely uninstall AMDS, iTunes, and all Apple software. Click the appropriate links below for steps:
    Windows XP
    Windows Vista or Windows 7
    Restart the computer.
    Download and install (or reinstall) the latest version of iTunes from www.apple.com/itunes. Installing iTunes will also install AMDS.
    Restart the computer.
    Start iTunes and connect the device. It should be recognized properly in Windows.

  • Recover from old ldap file

    Hi All,
    We faced a problem with the weblogic password as we kept getting the authentication error when we tried to login to console or sbconsole.
    We had to reset the password for weblogic admin user for which we renamed the ldap directory in the AdminServer/data/ and reset the password.
    Now we are able to login to console using the weblogic password, but not able to login to sbconsole.
    As the ldap folder was renamed, the users and groups were also lost. Since I dont have the security realms export, I am not able to restore the data.
    I still have the old ldap folder. Can you please help me in recovering the groups and users from the old ldap folder?
    Regards,
    Anup

    Hi Anup,
    Try this once,
    For change the password you need  do the next step:
    1.- You need access  to sbconsole
    2.- Click at the left menu panel  in configuration security.
    3.-Select the user administrator that you want to change password (in this case my adminuser, common de administrator user is weblogic )
    4.-click in button configuration and put the new password.
    5.-when you change password disconnect of sbconsole and connect wtih new credentials. You need do the same step for Enterprise Manager and console. Only to be sure that the password change correctly.
    6.- Go to the DOMAIN_HOME/security  and create Backup to the files exist in this folder.
    7.- go to DOMAIN_HOME/bin and execute setDomainEnv.sh
    8.- The next step you create the new credentials with execute  this command:
    java weblogic.security.utils.AdminAccount <NewAdminUserName> <NewAdminPassword> .
    example
    java weblogic.security.utils.AdminAccount adminuser welcome1 /u01/app/Middleware/user_projects/domain/base_domain/security
    9.- backup files from /  this folder  DOMAIN_HOME/server/Adminserver/data  and DOMAIN_HOME/server/domain_name/data (in my case domain_name is base_domain ex: DOMAIN_HOME/server/base_domain/data)
    10.- Update password in file boot.properties (DOMAIN_HOME/servers/AdminServer/security and  DOMAIN_HOME/servers/domain_name/security)
    11.- You restart weblogic and access sucessfully with the new password.
    Regards,
    Kal

  • LDAP issue after upgrading to SP15 from SP7 for CUP 5.3

    Hello,
    We have recently upgraded our Sandbox from SP 7 to SP15 on GRC 5.3 and Now having issues authenticating users using LDAP.
    The connections and settings are exactly same as our Dev system which in on SP7 and the connection also says successful but when we go onto the request page and type in an id it says invalid credentials.
    Am i missing something or is there a special procedure after upgrade .
    Thanks
    Uday

    Hello Frank,
    Thanks for the reply.I forgot to do it and as you said once i performed those steps it actually solved my password reset link issues as it was erroring out with 500 error and now  it is working fine .
    But to fix LDAP issue SAP has a note which says after SP13 we don't need to fill in the user path field while creating LDAP connector.
    Thanks
    Uday

  • TS2998 Same old problem, Apple vs. Cox

    Same old problem with Mountain Lion using Cox server. Can receive email in MAC MAIL but not connect to send. Fix?
    All settings are per Cox support information.

    Please help with sorting out the issues with the Cox email services?   Sorry; I'm just not that powerful. 
    If you're set up per the published specs (and those aren't easy to find), then Cox (mail or doc or the Cox network) is probably broken.  What's posted at various of the Cox support sites indicates that the SMTP send path is either TCP 587 with SSL/TLS enabled or TCP port 465 with SSL/TLS enabled.  Cox does appear to use different SMTP mail servers, depending on your service class and your particular geographic location.  Cox also appears to use POP and not IMAP, and specifically uses POP3 Port 995 on pop.cox.net; that's the SSL/TLS port for POP3.
    What to do?  Work with someone that you can share your credentials with, verify the error, and (if it can't be resolved) contact Cox and work through this error with them.
    Or as an alternative, don't use Cox for your mail.  I deliberately chose a mail hosting provider, and not the ISP I work with, for mail services.  That mail hosting move was easily very affordable, and the mail provider quickly answers the (few) support tickets I've needed very promptly.   In other words, the ISP deals with the network wiring, and the mail hosting provider deals with the mail servers.  And mail works.
    Or yes, you can use Google or another (free) mail provider, but - and with the providers of any of the free services in general - getting support when something goes weird is far from certain.

  • Hi there i am having a problem here i had an old id when i created my account but my credit card expired and i had put a new info but after that i have changed my apple id as well but now whenever i open anything the same old email id popped up how can i

    Hi there i am having a great problem here i had an old id when i first made my apple id but at that time my credit card info was different and now i have chaged my credit card info because it got expired.my problem is that even though i have changed my apple id the same old one always pops up and ask for a password and i ont hat id anymore how can i change my id on the main icloud setting page please slove my problem it is bothering me alot and my icloud is not backing up anymore how can i replace my new apple id to an old one please help me.
    Thanks
    Ayesha

    OK ..... Did you sign into your new ID in Settings>iTunes and App Stores>Apple ID. Tap your old ID and sign out and then sign in with the new ID.

  • When I save an e-mail as a file, it opens (seems stuck) to the same old one saved earlier. How do I unstick it?

    I use a MAC desktop and Thunderbird with latest update. Recently, when I've tried to open an e-mail that I saved earlier as a file with the .eml suffix, what opens is always the same unrelated e-mail that I saved earlier to an unrelated file. It seems stuck on that same unrelated e-mail, no matter what the file or what e-mail I intended to save. For example, I save (i.e., drop-down menu: Save As - File) an e-mail that I received regarding Topic A; then I go to the folder or file to which I saved it and locate the e-mail under the correct name in which I saved it; I double click and then click on Open; what always opens is an e-mail of a few months ago that I received from Bernie. It doesn't happen on my MAC Air laptop.

    Until recently, I've been able to save e-mails to files and folders by clicking "Save As" on the dropdown File menu. In the last few weeks, whenever I open any one of the many e-mails that I've saved over time as files, it doesn't open the e-mail that I'm trying to open. Instead, what opens up is always the same old email of a couple of months ago that has no relationship to the one I'm trying to open. Somehow, it's stuck on that same old e-mail. So, yes, your response is technically correct: (a) I open the message, and (b) I see what's in there. But what I always see is the same old unrelated e-mail message. My question is how do I get past that e-mail that it's stuck on to the e-mail that I saved but won't open up? Sorry to be such a pest.

  • Fed up with The same OLD APPS in App store.

    I have been staring at the same old Apps in App store since july 11th. Please developers give us some more Apps. I have read that Old jailbroken Iphones have 1000's of Apps. We have a few hundred.

    You also need to be aware that it isn't just the developer...Apple has to approve the apps before they will permit them on the iPhone. That process takes time. Only Apple approved apps are then added to the app store.
    Second, you will never see all the apps that are available on jailbroken phones because the SDK does not permit access to the phone features themselves -- if you look at those jailbroken apps, you will see all kinds of apps that access the iPod feature, the video features, the camera features. You will find bad MMS apps, you will find all kinds of things that will never be approved by Apple for the iPhone and won't end up in the official Apple App Store.
    Be patient, more applications will come, but you have to be realistic about what will and what will not be available.

  • Linkification (any version) does not work with FF9.0.1. Here we go again! Same old problem. Why don't you guys develop a permanent fix??!!! Don

    Here we go again. Same old problem with FF updates. FF9.x.x will not allow clickable internet links. They are dead when typed. ALL IE versions have clickable links BUILT IN! Why can't you do it??? Don't blame it on "third party add on incompatiblity." It's not their fault. It is YOUR fault for not including it. Do not blame users either.
    xpi files are not compatible with FF9.x.x even when dragged on to it

    '''''Linkification''''' was not developed by Mozilla.
    *The third party developer appears to have abandoned the Add-on (no longer updates it).
    *The last update available on the Mozilla Firefox Add-ons site ( https://addons.mozilla.org/en-US/firefox/addon/linkification/ ) was made compatible only through Firefox 3.6.x
    *The developer posted version 1.3.9 on his/her own site which was made compatible through Firefox 4
    *'''''Read the comments section on the Add-ons page for suggestions.'''''
    **I would NOT download from another site as you do not know what you might be getting.
    **You can install the following and force compatibility in Add-ons > Extensions
    ***https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/?src=ss
    **Under "Reviews", click "See all ###user reviews". The suggestion ''by marwn098 on November 11, 2011'' is the only one that I would recommend.
    ***Link to that suggestion --> https://addons.mozilla.org/en-US/firefox/addon/linkification/reviews/321220/
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *'''''Adobe Shockwave for Director Netscape plug-in''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.org/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.org/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *'''''Next Generation Java Plug-in for Mozilla browsers''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • Have new MC544LL/A and same old problem"The ipod cannot be synced. A duplicate filename was specified."Is this a "apple or Itune" problem?

    Have new MC544LL/A and same old problem"The ipod cannot be synced. A duplicate filename was specified."Is this a "apple or Itune" problem?

    I fought this problem for WEEKS with no success.  iTunes on Windows 7 x64.  I tried running it as Administrator.  I tried every fix I could find here and on Youtube and nothing.  Any time I was in iTunes and switched focus to another Window like Outlook or something it would pop this error message up again.  I reinstalled iTunes from scratch.  This did NOT fix it, but it gave me a clue.  I figured it had to be my iTunes library which is stored on an external HD.
    After poking around in the library for a while I thought it might be a file that had been set to Read Only so I did an "attrib -r e:\itunes /s"  to clear all of them all.  This wasn't the problem but it alerted me to a file it couldn't clear.  The file was iT.tmp and it couln't clear that because the file was corrupt.  I deleted it but that still didn't fix it.
    I finally did a "chkdsk e:\itunes /f" and let it run through.  It found the error in iT.tmp, fixed it and now iTunes works fine again.

  • TS1382 My iPod works properly if only connected to my PC - disconnected it goes blank.  Is this and old battery issue?

    My iPod works properly only if connected to the USB port on my PC, unplugged it goes blank and stops working.  Is this an old battery issue?

    Yes.  It sounds like the iPod's battery is on its last leg.  If you want to keep using your iPod you'll want to have the battery replaced either by Apple, a third party company, or you can even buy the replacement part and swap it out yourself.
    If you want to go through Apple's site, see here: http://support.apple.com/kb/index?page=servicefaq&geo=United_States&product=ipod
    B-rock

  • The same old Character Palette problem

    Yep. I've got the same old Character Palette problem. Running Mac OS X 10.4.10, all the latest updates, checked the forums for all the help I could find, and tried everything, and still every **** time I sign in or come back from sleep, the character palette shows up!

    hey, husayndas
    i'm currently having this exact same thing happen!!
    could you outline exactly how you managed to turn the palette off?
    much appreciated!

Maybe you are looking for

  • Customer Hierarchy in BW

    Hello Experts! I need to load Customer hierarchies in BW from ECC. I read the messages on this forum and learned that there are 2 customer related datasources: 0CUST_SALES_LKDH_HIER and 0CUSTOMER_LKLS_HIER I don't get any data in rsa3 for 0CUSTOMER_L

  • Service based Invoice in PO

    Dear all, I had a problem in service based invoice in Purchase Order. When i created a po without checked service based invoice. When I SES then i revoke it. I cant checked service based invoice in ME22N. its become grey field. But GR-Based Invoice n

  • How do I recover NOTES that were deleted

    Can I recoved NOTES that were deleted?

  • Problem with Advanced reporting

    Ok, so there is an inherent flaw in the way grouping is done in Advanced Reporting - it should not be automatic Say for example, I have three reports A, B, and C, and what I want is the report generated by (A U B) - C. Now, when I select minus, it au

  • How to stop power drain on macbook pro laptop

    how to stop power drain on macbook pro laptop