ODI Frustrating issue.

Has anyone every come across this error:
1 : 23000 : java.sql.SQLException: ORA-00001: unique constraint violated
I ran my ODI a few times and it ran just fine, then i got some new data to run it against and i started to get this error and i continue to get this error...

Hi TomCusick ,
As said Ananda, ur tring to insert the same column values agian in the table(those columns specified as primary key).
solution for this issue is
1)Enhance the primary key by add some more column
2)If you interested to update rest of the details of the same colum value records. then you can use IKM incremental update KM. use update mode to enabled.
3) If you using the IKM control append KMs two option is there they are
as I said in step1 and another one is removal of control option
these solutions depend on your requirement.
Thanks
Madha

Similar Messages

  • Hoping for some help with a very frustrating issue!   I have been syncing my iPhone 5s and Outlook 2007 calendar and contacts with iCloud on my PC running Vista. All was well until the events I entered on the phone were showing up in Outlook, but not

    Hoping for some help with a very frustrating issue!
    I have been syncing calendar and contacts on my iPhone 5 and Outlook 2007 using iCloud  2.1.3 (my PC is running Vista). All was well until the events I entered on the phone were showing up in Outlook, but not the other way around. I’ve tried the usual recommended steps: deselecting calendar and contacts in the iCloud control panel and then re-selecting, signing out of the panel and back in, and repairing the Outlook installation in control panel.  I even uninstalled iCloud on the PC and downloaded it again (same version). 
    The furthest I’ve gotten is step 2 (and once, step 3) of 7 while performing “Outlook Setup For iCloud.” At that point I get, “Your setup couldn’t be started because of an unexpected error.”  After the first attempt at all this, all my calendar events disappeared from Outlook, although they are still in iCloud calendar and on my phone.
    Sound familiar?  Any ideas on how to solve this iCloud/Outlook issue?  Thanks much in advance!

    Hoping for some help with a very frustrating issue!
    I have been syncing calendar and contacts on my iPhone 5 and Outlook 2007 using iCloud  2.1.3 (my PC is running Vista). All was well until the events I entered on the phone were showing up in Outlook, but not the other way around. I’ve tried the usual recommended steps: deselecting calendar and contacts in the iCloud control panel and then re-selecting, signing out of the panel and back in, and repairing the Outlook installation in control panel.  I even uninstalled iCloud on the PC and downloaded it again (same version). 
    The furthest I’ve gotten is step 2 (and once, step 3) of 7 while performing “Outlook Setup For iCloud.” At that point I get, “Your setup couldn’t be started because of an unexpected error.”  After the first attempt at all this, all my calendar events disappeared from Outlook, although they are still in iCloud calendar and on my phone.
    Sound familiar?  Any ideas on how to solve this iCloud/Outlook issue?  Thanks much in advance!

  • ODI Licensing Issue

    Hi,
    we are using ODI 10.1.3.5 version. I am facing ODI Licensing Issue. Can you any one suggest me how to update Licensing and its cost of the tool ??.

    Hi ,
    You need to contact Oracle Sales team base out from your region .
    Get the contact details from
    http://www.oracle.com/us/corporate/contact/global-070511.html
    For more information about licensing visit
    http://www.oracle.com/corporate/pricing/index.html?origref=http://www.oracle.com/us/corporate/contact/global-070511.html
    http://www.oracle.com/corporate/lms/index.html?origref=http://www.oracle.com/us/corporate/contact/global-070511.html
    Thanks,
    Sutirtha

  • ODI-HFM issue with decimal separator

    Hi all,
    We are extracting data from an HFM application A and loading into an HFM application B.
    Example:
    Data extracted from applicaiton A = 21.742.139,55
    Data loaded to application B (verified from Explore Data and Smart View) = 2.174.213.955,00
    Is data loading with ODI-HFM taking the regional settings?
    Any suggestions?
    If we extract data with HFM Client (logged on with the same user configured in HFM Data server) from application A and load it into application B, data is correct in application B.
    Current configuration is:
    - User preferences for HFM Application A
         * Decimal separator = ","
         * Thousands separator = "."
    - User preferences for HFM Application B
         * Decimal separator = ","
         * Thousands separator = "."
    - Regional settings of the server where the agent is running (English US)
         * Decimal separator = "."
         * Thousands separator = ","
    This setting is the same for all HFM application servers
    - ODI Datastore HFMDatastore
         * Decimal separator set to "," (this setting was changed to see if solved the issue)
    - ODI Datastore for staging table
         * Decimal separator set to "," (this setting was changed to see if solved the issue)
    - Language Settings for DB (American English)
    Thanks in advance!

    Hi Pls Use This
        For Decimal Separator other than . we need to Code to Convert , See This Code Below and Do the Code
    Private Function ReturnQty(ByVal Qty As String) As String
    Dim strQty As String
    Dim strSQL As String
    Dim strSeprtr As String
    Dim objRS As SAPbobsCOM.Recordset
    strSQL = "SELECT ThousSep FROM OADM"
    Set objRS = oSBC.oDICompany.GetBusinessObject(BoRecordset)
    objRS.DoQuery (strSQL)
    If Not objRS.EOF Then
            strSeprtr = objRS.Fields.Item("ThousSep").Value
    End If
    If strSeprtr = "," Then
    ReturnQty = Qty
    ElseIf strSeprtr = "'" And Len(Qty) <= 6 Then
    Qty = Replace(Qty, ",", ".")
    'Qty = Replace(Qty, ",", ".")
    ReturnQty = Qty
    Qty = Qty
    ElseIf strSeprtr = "'" Then
    Qty = Replace(Qty, "'", "")
    'Qty = Replace(Qty, ",", ".")
    ReturnQty = Qty
    Qty = Qty
    ElseIf strSeprtr = "." And Len(Qty) <= 6 Then
    Qty = Replace(Qty, ".", ",")
    Qty = Replace(Qty, ",", ".")
    ReturnQty = Qty
    ElseIf strSeprtr = "." Then
    Qty = Replace(Qty, ".", "")
    Qty = Replace(Qty, ",", ".")
    ReturnQty = Qty
    End If
    End Function
    Mohamed Zubair

  • ODI 11g, Issue with Load plan variable in CASE WHEN STEP

    Hi,
    I am trying to retrieve value of the current context using the following code in refreshing variable:
    Variable name: Context
    Refreshing Code: select  '<%=odiRef.getContext( "CTX_Name" )%>'  from dual
    The variable is returning correct results when I refresh / Call it as part of Run Scenario step.
    Requirement: I want to use the variable Context in CASE step, depending on the value it results I want to execute a selective set of scenarios. I have defined case when steps per the requirements.
    Issue: The behavior of the variable is not as expected when used in CASE WHEN step. Load plan execution always triggers only ELSE part of CASE WHEN step.
    I have tried force refresh option in CASE STEP on the variable Context.
    Need your help and advice on how to fix the issue.
    Thank you,
    Bharani

    HI Bharani,
    Below link may helps you about load plan in ODI
    Help on Load Plan Execution
    Regards,
    Phanikanth

  • ODI upgrade issue - 10.1.3.5 to 10.1.3.6

    Hi,
    I have tried to Upgrade to upgrade ODI 10.1.3.5 to version 10.1.3.6 using patch p9377717_101360_Generic.
    But facing issue while starting the master repository upgrade - the messages are coming as below -
    "error detected during repository upgrade "
    "com.sunopsis.tools.core.exception.SnpsRuntimeException: java.lang.NullPointerException" and so on...all weird messages.
    Can anybody please help me on this please?
    Also, I am upgrading ODI to 10.1.3.6 as we are supposed to load data into Essbase 11.1.2, will the existing version
    i.e. 10.1.3.5 will work with Essbase 11.1.2?

    Hi ORV,
    If I remember well, you can skip the repository creation as the upgrade assistant will upgrade your 10g cloned reps to 11g reps.
    You only need to install 11g standalone agent(s) to replace the 10g runtime agent(s).
    Regards,
    JeromeFr

  • ODI - RKM Issue

    Hi,
    Am getting error while performing Reverse Engineering.
    system Configuration
    ODI 10.1.3.4.2
    Database: Oracle Enterprise Manager 10g
    Data Server Port : 11333
    Have confirmed that all required services are running properly as well as
    In case you want to take a look at error log, kindly check at the end of this post.
    Regards,
    Jitendra
    Error Log:
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (innermost last):
    File "<string>", line 41, in ?
    com.hyperion.odi.planning.ODIPlanningException: java.lang.NullPointerException
         at com.hyperion.odi.planning.wrapper.PlanningWrapper.login(Unknown Source)
         at com.hyperion.odi.planning.ODIPlanningConnection.connect(Unknown Source)
         at com.hyperion.odi.common.ODIModelImporter.importModels(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java)
         at org.python.core.PyMethod.__call__(PyMethod.java)
         at org.python.core.PyObject.__call__(PyObject.java)
         at org.python.core.PyInstance.invoke(PyInstance.java)
         at org.python.pycode._pyx0.f$0(<string>:41)
         at org.python.pycode._pyx0.call_function(<string>)
         at org.python.core.PyTableCode.call(PyTableCode.java)
         at org.python.core.PyCode.call(PyCode.java)
         at org.python.core.Py.runCode(Py.java)
         at org.python.core.Py.exec(Py.java)
         at org.python.util.PythonInterpreter.exec(PythonInterpreter.java)
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:144)
         at com.sunopsis.dwg.codeinterpretor.k.a(k.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlC.treatTaskTrt(SnpSessTaskSqlC.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.g.y(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.RuntimeException: java.lang.NullPointerException
         at com.hyperion.planning.HspJSHomeImpl.createSecurityAPI(Unknown Source)
         at com.hyperion.planning.HspJSHomeImpl.getSecurityAPI(Unknown Source)
         at com.hyperion.planning.HspJSHomeImpl.createHspJS(Unknown Source)
         at com.hyperion.planning.HspJSHomeImpl.getHspJSByApp(Unknown Source)
         at com.hyperion.planning.HspJSHomeImpl.getHspJSByApp(Unknown Source)
         at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
         at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at sun.rmi.server.UnicastServerRef.dispatch(Unknown Source)
         at sun.rmi.transport.Transport$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.rmi.transport.Transport.serviceCall(Unknown Source)
         at sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
         at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
         at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Unknown Source)
         at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)
         at sun.rmi.server.UnicastRef.invoke(Unknown Source)
         at com.hyperion.planning.HyperionPlanningBean_Stub.Login(Unknown Source)
         ... 34 more
    com.hyperion.odi.planning.ODIPlanningException: com.hyperion.odi.planning.ODIPlanningException: java.lang.NullPointerException
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
         at com.sunopsis.dwg.codeinterpretor.k.a(k.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlC.treatTaskTrt(SnpSessTaskSqlC.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.g.y(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    -----------------

    Jitendra Bhagwat wrote:
    Thanks App & John.
    Now i can log onto Planning App.
    The issue was of Hyperion & Oracle Services. The services were running but without any effect. I just wonder how much patience is required to work with Hyperion & ODI, it took me several cycles of Start-Stop-Restart Services to get my Planning App. working.
    Now. my original problem still persist, error: Source not Found.
    I have gone through each and every step number of times, now any hints to troubleshoot this problem?
    Jitendra.It shouldn't need patience I have not come across these sort of stability issues, as long as the RMI service can communicate with the Planning application then usually there not many problems.
    Are you saying your error is now exactly the same as the first post??
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • ODI - UI Issue

    Hi,
    Could you please help me in understanding below issue.
    I have installed ODI 10.1.3.5 in my system and configured Master & Work repository successfully.
    I logged into Designer, when I right cilck on Package/ any object none of the options are coming.
    Thanks in advance.
    Regards,
    Uday

    Uday,
    Check the security manager and see if you have got yourself Designer Profile granted

  • Error - 50 and other really frustrating issues, none resolved so far on online community

    Hi all,
    I'm on the verge of giving up on Apple Itunes and the Store altogether. Since the second last iTunes update came out I've had continuing issues with downloads that get interrupted with a range of error messages coming up, the most recent and by far most common being Error -50. These days it's a 50/50 gamble whether iTunes actually opens or not. When it is open and I download something from the Store, chances are the following will happen:
    *The download will be intterupted and iTunes closes, not to be opened again until the computer has been restarted a couple of times.
    *The sound and moving image will abruptly get out of sink
    *The sound will stall then disappear altogether, following by iTunes stopping to work completely
    *I've also had it that a downloaded rental will abruptly stop and when I restart the whole rental is gone and forefeited.
    This is really frustrating and I've already begun to buy most of my online content elsewhere.
    Customer Support are all very nice people, but they've politely said to me, we can help you to a point -- from hear on in you have to pay for support! Pay for it?! When there stuff isn't working. I haven't changed anything about my computer until those new updates came along and ruined a perfect relationship!
    Nevertheless, for those of you that think you can help me, I have done the following:
    *Checked computer date and time
    *Running Apple as administrator (though I've never had to, and it doesn't seem to fix anything anyway!)
    *Checked that iTunes is allowed by my firewall and anti-virus software AVG.
    *Re-installed iTunes
    Any (conclusive!) help would be massively appreciated!
    Richard

    My home is 2880sqft and a two story, I have the router in the game room upstairs (moved from the office to a more central location recently).  However, my signal strength on my devices is 100% but my connection speeds when connected to wireless just always drop or are sometimes non existent and I have to disconnect my device from wireless and re-connect.  It is as if I'm connected to the router but I'm just not getting internet connectivity. I can be sitting right next to the router and this happens.  This only happens with wireless I always have a steady connection when connected with ethernet.  
    If I change to different SSIDs won't that disable the devices being able to see each other on the same network?  Mainly need to be able to stream content to my devices.  
    I will try this solution, but if this doesn't work should I be looking at upgrading to a newer model (hate that I spent so much on this one) or look elsewhere for my wireless router solutions.  
    Regards,
    T

  • BlackBerry Z10, so many frustrating issues

    I have been using my Blackberry Z10 for 4 months.  I still have so many issues that don't work like I would like, and I know if there is something that can fix them.  There is a list, for sure there are more that I don't remember right now. 
    Battery: it never arrives to low charge before turning off.  Close to 35-30% it goes to sleep.  I tried some of the solutions I´ve read (full charge after taking out battery, reset, etc) but nothing worked.
    Two times blocked: Since last OS update, I unlock the phone with my key and some seconds later another screen asks me to put the key again.  It doesn't happen always, but very frequently.
    GPS and tracking: I downloaded every app for tracking gps, like Endomondo, Runkeeper, etc, and no one works.  It is always "searching for satellites".  Sometimes, in an hour, it gets the satellites for e few seconds.  I downloaded GPS Status, as mentioned in other forums, and it works.  But not the other apps.
    Transferring files: When I connect it to the computer and want to transfer files from internal memory or the microSD card, it looses connectivity while transferring.  I have to move files to the SDcard, then take it out and transfer them in the SDcard reader in the computer.
    Music stops while playing: very frequently music makes very little pauses during the play.  I hate that when I play music.  I kill all the tasks, so the only thing running is the Music, but it is not solved.
    Wrong words learned: when you make a mistake and type wrongly a word, it remembers it and suggest it up to the end.  For example: it seems I once wrote "Germn" instead of  "Germán".  So I type G+e and it suggest me "Germn", then I type the r, and continues suggesting "Germn".  I hate that.
    Automatic message in the mail account: I must turn off the Automatic message "Sent from my smartphone..." every few hours.  It goes back to on and put that message again...
    Any idea of possible solutions?
    Thanks,
    Martín

    If you had one or two issues, I'd suggest tackling them individually but because you're experiencing issues at this level, your OS should be looked at.
    What OS are you currently running? To find this out, swipe down and select Settings>(Category - OS) and give us the OS version.
    Cheers.  
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • Keep getting....'apple id invalid'...have tried many suggestions, to no avail. Can anyone help with this frustrating issue...ths.

    eep getting apple id invalid....have tried some suggestions...seems very frustrating....any suggestions?

    Thanks, Peter. 
    The "link related" and "text related" crashes were what I interpretted here, too, though I'm at a loss on how to proceed given that this is a fresh system and applications.  This is happening with multiple InDesign projects in a design office environment where many others work on the same files and none of the other computers are having problems with these files.  I've removed the same files listed (thank you for those) before and did so effectively with creating the new user account to test with, but it had no effect.  I just tried again though, as these files could easily have becone corrupt again if they were being written to when InDesign crashed.  Will let you know if that makes any difference.  I've also gone through and completely cleaned out the fonts again and once more cleared the font caches.  If need be I'll reboot this system into safe mode and try that way.
    Best,
    Mike

  • ODI scheduling issue

    I was scheduled one agent, for the first time it took only 20 min to execute,
    but 2nd time onwards it is taking 7 to 8hrs,
    I'm unable to find the why it is running more time.
    what is the issue? can any one help on this?

    Hello,
    What kind of scenario did you run ?
    How many interfaces with which KMs ?
    A first tip would be to check the CPU usage on the server side. You have maybe a deadlock or something ;).

  • Odi 11G ISSUE (Jdk)

    Hi
    I have a problem with installation ODI 11g under Widows 7 (64 bit). I have installed jdk 64 bit version.
    When I start setup.exe (run as Administrator), Oracle Universal Installer starts, but needs to specify path to JDK
    "Preparing to launch Oracle Universal Installer from C:\Users\*. Please wait ...
    Please specify JDK location ( Ex. /home/jdk ), <location>/bin/java should exist:"
    When I input a correct path, installer looks like working but suddenly installator window closes without any error.
    Does anybody have the same problem?
    Thanks for advices.
    S. Mahesh

    Hi Mahesh,
    You have installed jdk 64-bit in your windows 7 ? right
    1) Make sure that, jdk160_21 or higher version should install in your windows 7 machine. later set environment variable for same jdk as follows
    In you windows environment
    JAVA_HOME=c:\Program Files\Java\jdk1.6.0_21
    path=%path%;c:\Program Files\Java\jdk1.6.0_21\bin;c:\Program Files\Java\jre1.6.0_21\bin;
    and refresh your desktop.
    2) Download generic Weblogic 10.3.3. 64-bit
    install weblogic 10.3.3
    eg: java jar wls1033_generic.jar (eg: give middleware path D:\Oracle\Middleware at time of weblogic installation)
    3) start installation of ODI 11g and when it will ask JDK/JRE path location provide following JDK/JRE location and press enter
    "D:\Oracle\Middleware\jdk1.6.0_18"
    Hope above steps helps you or else follow the following thinks
    http://oracleintelligence.blogspot.com/2010/10/how-to-install-odi-11g.html
    Thanks,
    Phani

  • ODI timestamp issue

    Hi ,
    We are having a source column datatype as Date(Oracle 10g).
    When we just used the select date  from table --- the output is like '17-SEP-10 08:02:32'
    In the target also the date column data type is Date(Oracle 10g)...
    its a one - one mapping...after running the interface ,if we check the date column '17-SEP-10 12:00:00' ,for all the records we are getting the same format.
    what might be the issue...... the timestamp is not same as the source ,instead we are getting timestamp 12:00:00 same for all records..
    Any changes need here...plz let me know.
    Thanks,
    Ananth

    I'm not sure for you but,
    Few times ago we've seen an issue with our dates between source and target DB (both 10g).
    when on source there was HH24:MI:SS filled correctly, in target there was always 00:00:00.
    It occurs only when we were loading data from one server to another (never when source and target were on same server).
    It looks really similar with your issue...
    After some search it seems to came from our JDBC driver(Thin one)...
    To correct this I add a property in Topology each time I use this JDBC url.
    For each Data server I add the following property on Properties tab :
    Key = oracle.jdbc.V8Compatible     
    Value = true
    you can maybe try with this...
    Hope to help
    Regards,
    Brice

  • ODI Installation Issue

    Hi,
    I am trying to re-install ODI 11.1.1.7.0(Uninstalled it properly) but after completing 97% of installation it is getting stucked. It is stucking after message "setup is complete".
    While re-installing ODI I have completely removed folder created while installation but I am able to see ODI folder in ALL Programs list.
    When installation stucked after 97% I closed it and removed folders and tried to reinstall but not able to.
    Please suggest.

    I am using jdk1.7.0_09. Earlier it was installed on my machinge but because of some reason I uninstalled it but unable to re-install it.

Maybe you are looking for

  • Cannot Activate [New] Ipad - Ipad Not Detected on iTunes

    I received my iPad through the mail, yesterday, and have been unable to use it due to it's inability to reach the activation server ('Could Not Activate iPad' error). I read via the forum that it could be related to a server overdrive, however, it is

  • Where is the Analysis menu in PSCS6?

    I concretely need the tool included in the Menu Analisys of Photoshop Extended CS3. Now I have upgrade to Photoshop CS6 into Creative Cloud but I don't find the way to download and install Extended from Creative Cloud. Thank for your help Message tit

  • Help with Ipod and Itunes...

    I have an ipod nano and have been using it successfully until tonight...I plugged it in to the USB port of my computer to upload some new songs and the ipod shows up as E:\ instead of "my ipod". It also says that I've used more space than I actually

  • Currency key in COPA document

    Hi, Do you know how the currency key entered in COPA document is found ? The currency key should be equal to document currency. For the operating concern view of the COPA document, my currency type is not equal to document currency but to company cur

  • OIM & Menu Items + Access Rights

    Hi, I am trying to customize groups in OIM. I would like to make a specific group to be able to manage users who are for example, managed by user YYY and ONLY them. So far, I updated the Menu Items of the group so users who belongs to that group can