Unable to edit user information from User Admin applet

Hi
I'm unable to  update user  information from user admin applet. After selecting a particular user, i'm updating his full name and trying to save the details. When i click on save i'm getting below error
"Unable to execute service EDIT_USER and function addUserAttributes",(System Error: Unable to execute query 'uUsersClassifiedMarkings(UPDATE Users SET uClassifiedMarkings='No Markings'WHERE(uClassifiedMarkings is  null OR uClassifiedMarkings="))'.ORA-00904:"UCLASSIFIEDMARKINGS":invalid Identifier java.sql.SQLSyntaxException: ORA-00904:"UCLASSIFIEDMARKINGS": invalid identifier)
Kindly let know what is issue or how to resolve this error

Ok,lets give it a shot. Can you please check if you have any Security Classifications added by navigating to Records->Configure->Security->Security Classification
If you do not see any entries here, then use the Add button to add the following
- No Markings
- Secret
- Top Secret
- Confidential
Now try to update the user info using the admin applet. In the edit window assign Security Classification to "No Markings" and try submitting the update. Let us know what is the outcome.
I completely agree with William on his analysis. Please try these steps if you are working on a Dev/POC instance.
Regards,
- Anand

Similar Messages

  • Obtaining SAP User information from J2EE Application

    Hi All,
    I am using SAP NetWeaver Developer Studio to create a J2EE Application, which requires accessing user information from SAP coming from Windows Active Directory.
    My question is as follows;
    Is there a possibility in a J2EE application to use an API to obtain user information (ie. from com.sap.security.api.jar) just like in a regular WebDyn Pro Application?
    For Archive Build Info (compile time), do I need to import specific JARs? For runtime, do I need to load any project reference?
    Thanks in advance,
    Michael

    Yes, I have added 'Run time' as well as 'Build time' for the com.sap.security.api.sda DC as well as for com.sap.tc.Logging DC.
    I have also added the following references to application-j2ee-engine.xml file:
    <application-j2ee-engine>
         <reference
              reference-type="hard">
              <reference-target
                   provider-name="sap.com"
                   target-type="library">com.sap.security.api.sda</reference-target>
         </reference>
         <reference
              reference-type="hard">
              <reference-target
                   provider-name="sap.com"
                   target-type="library">com.sap.tc.Logging</reference-target>
         </reference>
         <provider-name>srl.com</provider-name>
         <fail-over-enable
              mode="disable"/>
    </application-j2ee-engine>
    I am still experiencing the same problem:
    java.lang.NoClassDefFoundError: com/sap/tc/logging/Location
         at com.sap.security.api.UMFactory.<clinit>(UMFactory.java:178)
         at srl.com.birthday.daemon.BirthdaysDaemon.loadEmployeesUser(BirthdaysDaemon.java:114)
         at srl.com.birthday.daemon.BirthdaysDaemon.run(BirthdaysDaemon.java:72)
         at java.lang.Thread.run(Thread.java:534)
    Is there any other JAR I forgot to add to my used DC? Is the security JAR dependant on something else?
    Thanks,
    Michael

  • ITunes 9.1 was unable to load dataclass information from Sync Services.

    Everything was working perfectly fine on 9.0, then i upgraded to 9.1 version and my iPod Touch 3G stopped syncing properly (error as in subject). I tried many things, checked dll's, restarted services, everything without success. SO...
    I uninstalled every single apple program and couple non applce. Deleted every Apple related file, even all those hidden in users/common files/app data folders. Double checked everything and restarted PC. THEN I downloaded full version of iTunes 9.1 64bit and installed.
    Aaaand I restarted everything, lunched iTunes, plugged iPod in. Some Apple drivers installed themselves, then iTunes was frozen for couple minutes. Finally iPod shown in iTunes. I tried to sync and... BAM. Still broken, still same error "iTunes 9.1 was unable to load dataclass information from Sync Services. Reconnect or try again later"
    Please help, my iPod is useless. Can u release new, working iTunes?

    OK i have to say, i finally fixed it. Now its fully working without ANY problems, here is what i did (before trying this u should probably do this http://support.apple.com/kb/HT1923):
    1. Unplug every external Card Reader.
    2. Unplug every Card Reader in your PC (they are plugged into motherboard)
    3. Unplug every USB Hub.
    4. Unplug every USB Drive or USB HDD.
    5. Plug in Ipod Touch/iPhone.
    6. Go to Device Manager.
    7. Search for "USB Mass Storage Device" in Universal Serial Bus Controler.
    8. Right click on it and UNINSTALL.
    9. Search for "Scan for hardware changes", click on it and wait a bit.
    10. Turn on iTunes and check if its working.
    Now it should work like a charm.

  • Retriving user details from user rofile in portal database

    HI all,
    any one knows how to retrive user details from user rpofile in portal database. I am using webdynpro appliction.Please reply.
    Thank you
    Maruthi

    Hi maruti Rao ,
    All Gives U gud Idea..here i give u some brief procedure.First of all u need to add 2 jar file in ur project structure for proper working of "com.sap.security.api.IUser" Interface. After that for retriving Users data Stored on LDAP Server.
    If you are using an LDAP directory as a data source for your user-related data, the ‘logical’ attribute names used by the Java application programming interface (API) of SAP User Management Engine (UME) must be mapped to the ‘physical’ attribute names used in the schema of your corporate LDAP directory.
    Example Data-Source File is as Below From Where U can Get All The Information of Logged user...
    <dataSources>
    <dataSource id="CORP_LDAP"
        className="com.sap.security.core.persistence.datasource.imp.LDAPPersistence"
        isReadonly="false"
        isPrimary="true">
      <responsibleFor>
        <principal type="account">
        </principal>
        <principal type="user">
          <nameSpaces>
            <nameSpace name="com.sap.security.core.usermanagement">
              <attributes>
                <attribute name="firstname" populateInitially="true"/>
                <attribute name="displayname" populateInitially="true"/>
                <attribute name="lastname" populateInitially="true"/>
                <attribute name="fax"/>
                <attribute name="email"/>
                <attribute name="title"/>
                <attribute name="department"/>
                <attribute name="description"/>
                <attribute name="mobile"/>
                <attribute name="telephone"/>
                <attribute name="streetaddress"/>
                <attribute name="uniquename" populateInitially="true"/>
              </attributes>
            </nameSpace>
          </nameSpaces>
        </principal>
          <principal type="group">
          </principal>
      </responsibleFor>
      <attributeMapping>
        <principals>
          <principal type="account">
          </principal>
          <principal type="user">
            <nameSpaces>
              <nameSpace name="com.sap.security.core.usermanagement">
                <attributes>
                  <attribute name="firstname">
                    <physicalAttribute name="givenname"/>
                  </attribute>
                  <attribute name="displayname">
                    <physicalAttribute name="displayname"/>
                  </attribute>
                  <attribute name="lastname">
                    <physicalAttribute name="sn"/>
                  </attribute>
                  <attribute name="fax">
                    <physicalAttribute name="facsimiletelephonenumber"/>
                  </attribute>
                  <attribute name="uniquename">
                    <physicalAttribute name="uid"/>
                  </attribute>
                  <attribute name="loginid">
                    <physicalAttribute name="null"/>
                  </attribute>
                  <attribute name="email">
                    <physicalAttribute name="mail"/>
                  </attribute>
                  <attribute name="mobile">
                    <physicalAttribute name="mobile"/>
                  </attribute>
                  <attribute name="telephone">
                    <physicalAttribute name="telephonenumber"/>
                  </attribute>
                  <attribute name="department">
                    <physicalAttribute name="ou"/>
                  </attribute>
                  <attribute name="description">
                    <physicalAttribute name="description"/>
                  </attribute>
                  <attribute name="streetadress">
                    <physicalAttribute name="postaladdress"/>
                  </attribute>
                  <attribute name="pobox">
                    <physicalAttribute name="postofficebox"/>
                  </attribute>
                  <attribute name="preferredlanguage">
                    <physicalAttribute name="preferredlanguage"/>
                  </attribute>
                </attributes>
              </nameSpace>
            </nameSpaces>
          </principal>
          <principal type="group">
          </principal>
        </principals>
      </attributeMapping>
    </dataSources>
    regard's
    Dheerendra Shukla

  • When I connect my iTouch to my PC (windows 7) an error message is displayed reading "iTunes was unable to load dataclass information from sync services. Reconnect or try again later".

    When I connect my iTouch to my PC (windows 7) an error message is displayed reading "iTunes was unable to load dataclass information from sync services. Reconnect or try again later". I have completely uninstalled and then reinstalled iTunes. I have also completely reset my iTouch to factory defaults. I have even followed all the advice provided previously to other forum member with the same problem. Nothing seems to work. Please help me someone.

    I'm getting the same problem with both my IPad 4 and iPhone 5
    Just started a few weeks back, Since then I have had two Itunes updates.
    Is this something Apple is aware of and trying to fix?

  • ITunes was unable to load dataclass information from Sync Services

    Hi,
    I have Iphone 3GS with the latest version 3.1.3 and iTunes 9.1. After i uograded my iPhone to the latest version i am not able to sync with the iTunes and receive the message "iTunes was unable to load dataclass information from Sync Services, Reconnect or Try later". I am using Windows XP with Symantec Endpoint protection.
    I have tried following steps to troubleshoot the problem but all my attempts have failed,
    1. Uninstall iTunes by Removing, iTunes, QuickTime, BonJour, iPhone congiguration Utility and Bonjour. Remove all the iTunes and related folder from the C:/ drive
    2. Restart the computer and intall the latest version of iTunes and Quicktime
    3. Restore the iPhone to the factory settings using iTunes
    4. Restart the system as well as hard Boot the iPhone (Hold Start and Wake/Sleep Button)before connecting again
    5. Repeat the Steps 1 and 2 after restoring the iPhone
    I am still getting the same error and now I can't even open the first page for iPhone in iTunes when I connect it to my computer. All my content is still in iTunes but everything is lost on the iPhone.
    I searched the Apple support and they talk about problem with the Symantec Endpoint. I have the latest version of Symantec endpoint way above what is mentioned on the Apple support page.
    Can someone please help me, it seems restore worked for most of the people facing this issue, but for me even restore is not working.
    With Regards,
    Ankur

    I got a present of an itouch. This is my first time back to apple after 5 years. I cant get my itouch to sync due to dataclass error on Windows XP pro. I have installed the latest version of itunes 9.2.1.
    WHAT IS THE POINT IN OWNING A DEVICE FOR PLAYING MUSIC WHEN YOU CANT LOAD THE MUSIC !!!!!
    Does anyone have a solution or alternatively (shock horror) Apple could actually get its AR*E in gear and fix the problem. I would also suggest that Apple would post a friggen solution on its website, but no that may be too much to ask.
    very frustrated. any help gratefully received otherwise the touch gets thrown out.
    thanks

  • ITunes was unable to load dataclass information from Sync Services-Solution

    Hello all. I recently upgraded to iTunes 9.1.1.12 on a laptop with Windows XP Pro and the latest iPhone OS (as of May 16,2010). Right after that, I started getting the "iTunes was unable to load dataclass information from Sync Services" error message. After I dismissed that window, it would go ahead and indicate that it was synching for a minute or two, and then indicate (in iTunes) that it was backing up the iPhone. This will run forever unless cancelled and the phone would not synch.
    After reading various solutions that worked for others (install Mobile Me, reinstall itunes, run diagnostics, all with numerous reboots in between), this is what worked for me:
    1) Open up Windows Services, and stop the Apple Mobile Device and iPod Service, and mark them as manual (as opposed to Automatic).
    2) Deinstall iTunes
    3) Delete the c:\program files\common files\apple folder (and all sub folders within). This is where the services are stored, and when I did all of these steps without doing this step, it didn't fix my problem. By deleting this folder, you insure that the iTunes install reinstalls these. You should see the services that were stopped in step 1, running again after the install is done. Note: I don't use Safari or QuickTime on my laptop, so I can't say whether or not this step would have any impact on those apps.
    4) Reinstall iTunes.
    5) Connect the iphone to your computer.
    6) At this point, I still got the dataclass error, so I immediately cancelled the synch.
    7) Run the diagnostics for the iphone (connectivity and synch).
    8) At this point, two DOS windows launched, and I did get another error about being able connect to the synch server.
    9) Closed the error message and disconnected the iphone (the phone at this point did not indicate that a synch was occurring).
    10) Reconnected the iphone and, voila, it's been working fine ever since.
    Hope this helps someone else out until Apple deals with the 9.1.1.12 (and .11) issues with synching.

    Either do Windows Control Panel → Administrative Tools and then picking "Services" or typing "Services.msc" in the Run command on Start menu.

  • "Unable to load dataclass information from Sync Services"  Any ideas?

    I upgraded to iTunes 7.7 last night and now I get an annoying constant stream of errors that read "AppleMobileDeviceHelper has stopped working". Multiple reinstalls have not stopped it.
    Against my better judgement, I upgraded my phone to 2.0. Found out that I lost everything on my phone. It is activated and will work but I cannot sync it with iTunes. All I get is a message stating, "iTunes was unable to load dataclass information from Sync Services. Reconnect or try again later."
    iTunes won't recognize my phone. I can move songs and stuff to it by drop and drag but if I click the "iPhone" in iTunes, nothing happens. I put my phone in recovery mode. iTunes linked to it and reinstalled 2.0 but I still get the same problem.
    I'm real frustrated and Apple has not posted anything about this problem.
    Does anyone have any ideas on what is the going on? Is my phone nerfed?

    Try disabling your firewall, virus SW, and if it still won't sync, I would try disabling the communications services one by one until it clears. When I'm troubleshooting this sort of problem, I first look into the system reports (MY Computer, (right-click) manage, event viewer, Windows Logs, and look into each of the sub log sections for the error. This will often point you in the right direction. If this fails, I do a clean boot with all extraneous run-times and services disabled. usually the problem will be solved. I then start turning on the various run-time routines and services until I find the culprit.
    My attitude about this is that I won't waste my time chasing problems like this unless they are critical. Paying $$$ for a 3G iPhone and then having to troubleshoot the SW is not my cup of tea. I only pursued this because my wife and both kids got 3G's but I have them running both XP and Vista. One Vista machine synced OK, but mine would not. Intellectual curiosity led to find out why.
    Lysimakus

  • Unable to load dataclass information from sync services and appcrash????

    i have an asus u50f seris notebook with windows 7 64 bit operating system as soon as i plug my ipod in i get a message saying mobiledevicehelper has stopped working. under detail the problem event name:APPCRASH application name:Applemobiledevicehelper.exe appers over and over as long as the ipod stays connected then itunes displays a message saying itunes was unable to load dataclass information from sync services reconect or try agian later. i have tried my ipod on a different computer works fine . why wont it work on mine my computer is only a couple months old.

    try if any of the suggestions in this thread help.
    sometimes it helps to restart the "Apple Mobile Device Service". click here and follow the instructions.
    JGG

  • Unable to load new information from configuration file /var/ldap/ldap_clien

    Hi all,
    When I run the command "ldapclient init", I got the error message:
    # ldapclient init -a proxyDN=cn=proxyagent,ou=profile,dc=example,dc=ca -a domainName=example.ca -a profileName=UserProfile -a proxyPassword=pwd 10.1.10.50
    Unable to load new information from configuration file '/var/ldap/ldap_client_file' ('Unable to open filename '/var/ldap/ldap_client_file' for reading (errno=2).').
    Any idea?
    Thanks a lot for your help!

    Does the profile UserProfile exist on your LDAP server?
    Do the logs on your LDAP server show access problems?
    Try using -v to get more verbose output

  • ... unable to load dataclass information from Sync Services = Iphone Sync

    " Itunes was unable to load dataclass information from Sync Services. Reconnect or try again later. " - this is the message I receive after Iphone is plugged in. Itunes is 7.7 and Iphone is 2.0 at this point, only started happening after the updates of both.
    On a separate note, this same Itunes does not recognize Outlook as an option to sync from and all attempts to press Configure button yield zero result. I have a hunch that tells me the two are related ) . If any of you have had that problem, please post. The search turned up zero related posts.
    Cheers.

    I'm getting the same thing. I came into the office all excited to get the 2.0 update, ran the update and now my phone is stuck on the "slide for emergency" USB/Globe screen.
    When I try and load itunes and connect to the phone I get the same "itunes was unable to load dataclass information from Sync Services. Reconnect or try again later."
    I've reconnected and waited and still no luck.
    here's the sequence, when opening itunes with the phone connected:
    Open iTunes, it waits for a while trying to connect to the iTunes store, then it comes back and says "We could not complete your iTunes Store request. The network connection has timed out."
    I know my network connection is fine. The iTunes diagnostic even says so.
    I click Ok there and get the iPhone listed in the left index thing, but all I get in the body is a big "iPhone"
    Then it gives another "Accessing iTunes Store" status and the same "we could not complete..."
    help, please?

  • ITunes 7.7 unable to locate dataclass information from Sync Services

    Upon upgrading to iTunes 7.7 and connecting my iPod touch, I began receiving the following error message: "iTunes was unable to locate dataclass information from Sync Services. Reconnect or try again later."
    I followed the steps listed in these articles:
    http://discussions.apple.com/ann.jspa?annID=640
    http://docs.info.apple.com/article.html?artnum=305415
    I am still experiencing this issue. Are there other suggestions I can attempt? I've tried to locate other posts on this topic but it's difficult since the "Discussion Search" box is missing. Thanks! JD

    So far, you're right on with the steps. It's a good sign if none of the software is listed in the cleanup utility; that generally means it was appropriately removed with the previous step(s). This utility is mainly for some stubborn or damaged programs that won't uninstall via Programs & Features.
    I haven't yet seen a definitive fix for this; different options are working for different people.
    Some other suggestions:
    -Reinstalling the iPod driver
    Connect the iPod
    Click Start, right-click My Computer and click Manage
    Select Device Manager in the left-hand column
    Scroll down to Universal Serial Bus controllers in the right-hand column
    Click the + next to it to expand it
    Right click on the Apple Mobile Device and click Uninstall
    Restart the PC with the iPod connected
    -Working out a syncing conflict
    Do you have other devices that you sync to your computer? Either way, try this:
    Close iTunes and disconnect your iPod
    Click Start, right-click My Computer and click Manage
    Select Services in the left-hand column
    Scroll down to Windows Mobile Service, right click it and click "disable"
    If disable is not an option choose Stop
    Open iTunes and connect the iPod
    -Disable any and all firewalls
    This may result if the Outlook Sync Server service is blocked
    If this resolves the issue, look into configuring that firewall to specifically allow this service.
    Keep us posted on what (if anything) works for you
    CG

  • ITunes was unable to load dataclass information from Sync Services. Reconne

    I'm getting the following error on iTunes 8 when quitting:
    "iTunes was unable to load dataclass information from Sync Services. Reconnect or try again later."
    Anyone else seeing this?
    Don

    I started getting the annoying “iTunes was unable to load dataclass information from Sync Services. Reconnect or try again later.” error when i installed iPhone 3.0 beta onto my 1G iPhone. I have uninstalled iTunes (version 8.1), uninstalled Apple’s Mobile Device Support and reinstalled both of them but that did not fix the problem. I have also installed an older version of iTunes but that did not help as well. The error is not just annoying, i was not able to restore from my iPhone backups. I made a mistake in getting iPhone 3.0 beta onto my iPhone and instead of “update”, i chose “restore”. That wiped out all the App Store applications that i had installed. I could easily re-install the applications but there was no way for me to restore the saved data for some of the apps like eWallet and Gas Cubby. Until iPhone 3.0 beta is jailbroken, restoring a backup is the only way that i am aware of that can restore the app data.
    From the Console log, i noticed these errors were generated whenever an iPhone is connected to my Mac Pro:
    3/19/09 10:57:50 PM [0x0-0x17a17a].com.apple.iTunes[4049] MobileDevice: readcallback: Could not receive message
    3/19/09 10:58:02 PM [0x0-0x11011].com.apple.systemuiserver[233] DigiHub:sendChargingCommandToDevice RequestExtraPower(kUSBPowerDuringWake) returned 0
    3/19/09 10:58:02 PM [0x0-0x11011].com.apple.systemuiserver[233] DigiHub:sendChargingCommandToDevice sending command with sleep: 0, wake 0
    3/19/09 10:58:02 PM [0x0-0x11011].com.apple.systemuiserver[233] DigiHub:sendChargingCommandToDevice sending command with sleep: 0, wake 0
    3/19/09 10:58:05 PM [0x0-0x17a17a].com.apple.iTunes[4049] Parent: Can't write length for data
    3/19/09 10:58:05 PM [0x0-0x17a17a].com.apple.iTunes[4049] Parent: write to child failed, trying to create child again...
    3/19/09 10:58:05 PM [0x0-0x17a17a].com.apple.iTunes[4049] Exec of child with pid 4100 failed with error 255
    3/19/09 10:58:05 PM [0x0-0x17a17a].com.apple.iTunes[4049] Exec for child /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/MacOS/AppleMobileDeviceHelper failed or inexplicably returned
    3/19/09 10:58:05 PM [0x0-0x17a17a].com.apple.iTunes[4049] Parent: Can't write length for data
    3/19/09 10:58:05 PM [0x0-0x17a17a].com.apple.iTunes[4049] Parent: Can't talk to child
    So i decided to get rid of everything in /System/Library/PrivateFrameworks/MobileDevice.framework and re-installed Apple Mobile Device Support. Voila, that worked!

  • Do not seem to be able to backup iPad via iTunes on to my PC. Message after connecting is "iTunes was unable to load class information from Sync Services, Reconnect or try later"  Have tried that but get the same result. Can anyone assist?

    Do not seem to be able to backup iPad via iTunes on to my PC.
    Message after connecting is "iTunes was unable to load class information from Sync Services, Reconnect or try later" 
    Have tried that but get the same result.
    Remedies I've tried are:
    wait and try again
    reboot
    reload iTunes
    NB hp is a relatively new machine and has previously backed up quite happily.
    Can anyone assist?

    RHoodnkt-
    Try rebooting the iPad.  Hold down both the Home and Sleep buttons for several seconds until the Apple logo appears.  Ignore the "Slide to power off" arrow.  It takes a minute or two to restart.
    Also be sure your iPad battery is not completely discharged.
    Fred

  • I cant sync my iphone 5s on windows itunes, keep getting error message unable to load dataclass information from sync services.

    i can not sync my iphone 5s on itunes on windows. keep getting error message "unable to load dataclass information from sync services" when plugging in my phone.
    I have tried uninstalling itunes and re-installing it.
    Turning off firewall and antivirus.
    Has anyone had this before and if so how did you over come this issue?
    Thanks in advance

    Hey troyboi12345,
    Thanks for using Apple Support Communities.
    To troubleshoot this issue, follow this article.
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert
    http://support.apple.com/kb/ts2690
    Have a nice day,
    Mario

Maybe you are looking for