OptimisticLockException, no version number in identity map

A project using TopLink is getting the following exception randomly. Any suggestion on what might cause the exception?
Local Exception Stack:
Exception [TOPLINK-5004] (OracleAS TopLink - 10g (9.0.4.4) (Build 040627)):
oracle.toplink.exceptions.OptimisticLockException
Exception Description: An attempt was made to update the object
[com.ford.mss.wdmo.wiqs.business.model.VehicleConfigurationOptionEconomics
(CR Key: 0; Row Num: 0; Code: ; Desc: ;)], but it has no version number in the
identity map.
It may not have been read before the update was attempted.
Class> com.ford.mss.wdmo.wiqs.business.model.VehicleConfigurationOptionEconomics
Primary Key> [null, 0] The problem seems to occur after certain sequence of operation: update an object
in a graph and commit; update another object in a graph and commit; fails in
commit when trying to update the graph by inserting a new object in the graph.
The problem does not occur whey only trying to update the graph by inserting the
new object in the graph.
It appears that some 'empty object' (i.e. PK null, other attributes not set) got
registered in the UnitOfWork, though we have not determined how it happened.
Just wondering if anyone has experienced the exception or knows what can cause the exception...
I appreciate your comments.
Haiwei

Worked with the project and solved the problem.
The exception was caused by some unwanted 'empty object' (i.e. object whose PK is null) in the object graph that's registered with UnitOfWork. It appears that the cached object graph was corrupted with the 'empty object' for some user execution sequences. After removing the original source where an 'empty object' was created/added to object graph, the problem has not been seen.
Thanks.
Haiwei

Similar Messages

  • Where can I find a mapping of the Mac Powerbook version number (e.g., 3.1) to the dates (e.g., "late 2007") that Apple uses for indicating compatibilty with OS upgrades?

    Where can I find a mapping of the Mac Powerbook version number (e.g., 3.1) to the dates (e.g., "late 2007") that Apple uses for indicating compatibilty with OS upgrades?

    There were no PowerBooks made in 2007. By then Apple had switched over to Intel and they were making MacBook instead.
    If the MacBook is what you really want try http://en.wikipedia.org/wiki/MacBook
    Allan

  • Powershell update Field Value without changing version number

    I want to update a value in a field in a list for a lot of list items.
    However, this list has major and minor versioning turned on, and an approval process.
    When I update the field's value for all the required list items, I don't want the approval process to start and I don't want the version number to change.
    How can I do this?
    This is my code so far:
    $siteUrl = "http://portal"
    $listName = "list name"
    $field1_Name = "category"
    $web = Get-SPWeb -Identity $siteUrl
    $list = $web.Lists[$listName]
    $items = $list.Items
    ForEach ($item in $items)
        if ($item[$field1_Name].ToString() -eq "testing") 
     $url = [String]::Format("{0}/{1}",$web.Url, $item.File.URl)
         $file = $web.GetFile($url)
     $file.CheckOut()
     write-host $item.name
           $item[$field1_Name] = "testing again"
           $item.Update()
     $file.CheckIn("updated category name", [Microsoft.Sharepoint.SPCheckinType]::MajorCheckIn))
    $web.Dispose()

    Instead of calling $item.Update() call $item.SystemUpdate($false);  That will update the fields without incrementing he version number of the listitem.  Read about it here:
    http://msdn.microsoft.com/EN-US/library/office/ms481195(v=office.14).aspx
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • AppManifest.xml is being generated with the wrong version number

    I am having a interesting problem which is preventing me from submitting an update to my app to the Windows Phone Store. I have done this 100 times and something is wrong with visual studio building the .xap file. Steps I am taking:
    Update all version references in project settings and appmanifestWM to 1.4.0.0
    Build Release version
    Copy .xap from /bin/release
    Upload as an app update to windows phone dev site
    What happens is that the current version of the app (1.3.1.0) is still listed as the version of the app that the submission page is parsing out of the version (1.4.0.0) .xap file. I unzipped the xap file and looked at the appmanifest files and found that
    the AppManifest.xaml has the correct version number but the AppManifest.xml still has version 1.3.1.0. If anyone could help me resolve this issue it would be greatly appreciated.

    Thanks for your reply. I believe it is a bug with my solution because I have now tried all of these steps on two computers and uploaded using two different browsers and I still get a AppManifest.xml file that has version 1.3.1.0. I will copy and paste the
    unzipped code from the AppManifest.xml file.
    <?xml version="1.0" encoding="utf-8"?>
    <Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest" xmlns:m3="http://schemas.microsoft.com/appx/2014/manifest" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:build="http://schemas.microsoft.com/developer/appx/2012/build" IgnorableNamespaces="build">
    <!--
    THIS PACKAGE MANIFEST FILE IS GENERATED BY THE BUILD PROCESS.
    Changes to this file will be lost when it is regenerated. To correct errors in this file, edit the source .appxmanifest file.
    For more information on package manifest files, see http://go.microsoft.com/fwlink/?LinkID=241727
    -->
    <Identity Name="50523CameronStair.MyDebts" Publisher="CN=FA4BA529-B82F-4A0F-A35C-6700BC51B3E1" Version="1.3.1.0" ProcessorArchitecture="neutral" />
    <mp:PhoneIdentity PhoneProductId="c805a27c-951f-4c0d-a831-1126f9a70563" PhonePublisherId="51beaec0-db37-4002-81de-5e138a756b34" />
    <Properties>
    <DisplayName>MyDebtsApp</DisplayName>
    <PublisherDisplayName>Cameron Stair</PublisherDisplayName>
    <Logo>Assets\StoreLogo.png</Logo>
    </Properties>
    <Prerequisites>
    <OSMinVersion>6.3.1</OSMinVersion>
    <OSMaxVersionTested>6.3.1</OSMaxVersionTested>
    </Prerequisites>
    <Resources>
    <Resource Language="EN-US" />
    </Resources>
    <Applications>
    <Application Id="App" Executable="AGHost.exe" EntryPoint="MainPage.xaml">
    <m3:VisualElements DisplayName="My Debts" Square150x150Logo="Assets\SquareTile150x150.png" Square44x44Logo="Assets\Logo.png" Description="A debt tracker app." ForegroundText="light" BackgroundColor="#464646" ToastCapable="false">
    <m3:DefaultTile Square71x71Logo="Assets\SquareTile71x71.png"></m3:DefaultTile>
    <m3:SplashScreen Image="Assets\SplashScreen.png" />
    </m3:VisualElements>
    <Extensions>
    <Extension Category="windows.backgroundTasks" EntryPoint="AgHost.BackgroundTask">
    <BackgroundTasks>
    <Task Type="systemEvent" />
    </BackgroundTasks>
    </Extension>
    </Extensions>
    </Application>
    </Applications>
    <Extensions>
    <Extension Category="windows.activatableClass.inProcessServer">
    <InProcessServer>
    <Path>AgHostSvcs.dll</Path>
    <ActivatableClass ActivatableClassId="AgHost.BackgroundTask" ThreadingModel="both" />
    </InProcessServer>
    </Extension>
    </Extensions>
    <Capabilities>
    <m3:Capability Name="contacts" />
    </Capabilities>
    <build:Metadata>
    <build:Item Name="TargetFrameworkMoniker" Value="WindowsPhone,Version=v8.1" />
    <build:Item Name="VisualStudio" Version="12.0" />
    <build:Item Name="VisualStudioEdition" Value="Microsoft Visual Studio Professional 2013" />
    <build:Item Name="OperatingSystem" Version="6.3.9600.16384 (winblue_rtm.130821-1623)" />
    <build:Item Name="Microsoft.Build.AppxPackage.dll" Version="12.0.31101.0" />
    <build:Item Name="ProjectGUID" Value="{C805A27C-951F-4C0D-A831-1126F9A70563}" />
    <build:Item Name="MSAdvertising" Version="6.1" />
    <build:Item Name="MakePri.exe" Version="6.3.9600.17298 (winblue.141024-1500)" />
    </build:Metadata>
    </Package>
    As you can see the package version being generated is wrong. Can you explain where exactly in the solution that value is taken from? I thought it was from WMAppManifest but I could be wrong. 
    Edit: In looking at the code above and then rereading what I wrote I realized my blaring error. I completely forgot that Silverlight 8.1 apps have an appxmanifest as well and that data is drawn from that as well as WMAppManifest. I never updated the version
    in that appxmanifest. Thank you for the help and I apologize for my stupidity.

  • Element Object version Number

    Where can I get the object version number of an element. I cant seem to find it in any of the element tables
    Thanks

    If I correctly understood you:
    SQL> INSERT INTO checkpoint VALUES
      2  ( 1
      3  , person_typ('Ignat'));
    1 row created.
    SQL> INSERT INTO checkpoint VALUES
      2  ( 2
      3  , employee_typ ( 'Scott', 111 ) );
    1 row created.
    SQL> INSERT INTO checkpoint VALUES
      2  ( 3
      3  , visitor_typ ( 'Adams', 333 ) );
    1 row created.
    SQL> column person format a30
    SQL> select  id,
      2          person,
      3          sys_typeid(person)
      4    from  checkpoint
      5  /
            ID PERSON(NAME)                   SYS_TYPEID(PERSON)
             1 PERSON_TYP('Ignat')            01
             2 EMPLOYEE_TYP('Scott', 111)     02
             3 VISITOR_TYP('Adams', 333)      03
    SQL> As you can see, function sys_typeid gives you type "version" number. Now, how to trace that "version" number to type name? Unfortunately, data dictionary views do not provide that. This is another example of DD inefficiency. If you check SYS.TYPE$ table:
    SQL> desc sys.type$
    Name                                                                     Null?    Type
    TOID                                                                     NOT NULL RAW(16)
    VERSION#                                                                 NOT NULL NUMBER
    VERSION                                                                  NOT NULL VARCHAR2(30)
    TVOID                                                                    NOT NULL RAW(16)
    TYPECODE                                                                 NOT NULL NUMBER
    PROPERTIES                                                               NOT NULL NUMBER
    ATTRIBUTES                                                                        NUMBER
    METHODS                                                                           NUMBER
    HIDDENMETHODS                                                                     NUMBER
    SUPERTYPES                                                                        NUMBER
    SUBTYPES                                                                          NUMBER
    EXTERNTYPE                                                                        NUMBER
    EXTERNNAME                                                                        VARCHAR2(4000)
    HELPERCLASSNAME                                                                   VARCHAR2(4000)
    LOCAL_ATTRS                                                                       NUMBER
    LOCAL_METHODS                                                                     NUMBER
    TYPEID                                                                            RAW(16)
    ROOTTOID                                                                          RAW(16)
    SPARE1                                                                            NUMBER
    SPARE2                                                                            NUMBER
    SPARE3                                                                            NUMBER
    SUPERTOID                                                                         RAW(16)
    HASHCODE                                                                          RAW(17)
    SQL> you'll notice ROOTTOID which is, unfortunately, not mapped into DD XXX_TYPE views. What you can do is something like:
    SQL> CREATE OR REPLACE
      2    TYPE TRAINEE_TYP UNDER EMPLOYEE_TYP(trainee_id NUMBER)
      3      NOT FINAL
      4  /
    Type created.
    SQL> set linesize 132
    SQL> column owner format a5
    SQL> column root_type_owner format a15
    SQL> column supertype_owner format a15
    SQL> column type_name format a15
    SQL> column root_type_name format a15
    SQL> column supertype_name format a15
    SQL> column typeid format a6
    SQL> select  tc.owner,
      2          tc.type_name,
      3          tc.typeid,
      4          roottoid,
      5          tc.supertype_owner,
      6          tc.supertype_name,
      7          tp.owner root_type_owner,
      8          tp.type_name root_type_name
      9    from  dba_types tc,
    10          sys.type$ t,
    11          dba_types tp
    12    where t.toid = tc.type_oid
    13      and tp.type_oid = nvl(t.roottoid,t.toid)
    14      and tc.owner = 'SCOTT'
    15      and tc.type_name in ('PERSON_TYP','EMPLOYEE_TYP','VISITOR_TYP','TRAINEE_TYP')
    16    order by tc.typeid
    17  /
    OWNER TYPE_NAME       TYPEID ROOTTOID                         SUPERTYPE_OWNER SUPERTYPE_NAME  ROOT_TYPE_OWNER ROOT_TYPE_NAME
    SCOTT PERSON_TYP      01                                                                      SCOTT           PERSON_TYP
    SCOTT EMPLOYEE_TYP    02     33A90A8C974E4BF4B369D443E27A83B9 SCOTT           PERSON_TYP      SCOTT           PERSON_TYP
    SCOTT VISITOR_TYP     03     33A90A8C974E4BF4B369D443E27A83B9 SCOTT           PERSON_TYP      SCOTT           PERSON_TYP
    SCOTT TRAINEE_TYP     04     33A90A8C974E4BF4B369D443E27A83B9 SCOTT           EMPLOYEE_TYP    SCOTT           PERSON_TYP
    SQL> SY.

  • Object Version Number  column

    Hi all,
    In the OAF dev guide,they have given some information on object version number column which can be used to store the version of the row data entered.
    This can be achieved by mapping a attribute to ObjectVersionNumber attribute.
    I tried mapping it i didn't see any attribute with the name ObjectVersionNumber in the BC4j EO wizard.
    Can somebody please give more information on this
    And do correct me if i gone wrong somewhere
    Thanks in advance
    Ashwini

    Another use of this column is to maintain the history record. So each time you update the record, another record with same primary key, but with an increased OVN.
    --Shiv                                                                                                                                                                                                                                                                                                                                                       

  • Number of class maps (QOS) supported on 7200 and 7600

    Hi,
    Have few queries on class maps for QOS, putting forward for your comments/inputs.
    1. Want to know if there are any limitation (s) on the number of class maps (to be applied inbound/outbound) that can be configured on the 7200 and 7600 routers.
    2. Is there any imitation on the numbers (of class maps) in general or will it depend on the sum total of BW configured in the classes? I mean which one will be the deciding factor i.e. if the limit is wrt to the configured classes or the number of classes can't go beyond the consolidated bandwidth configured on the interface.
    Kindly share details on the same and if there are any recommendations.
    Thanks! in advance.

    From: http://www.cisco.com/en/US/tech/tk543/tk545/technologies_q_and_a_item09186a00800cdfab.shtml
    "Q. How many classes does a Quality of Service (QoS) policy support?
    A. In Cisco IOS versions earlier than 12.2 you could define a maximum of only 256 classes, and you could define up to 256 classes within each policy if the same classes are reused for different policies. If you have two policies, the total number of classes from both policies should not exceed 256. If a policy includes Class-Based Weighted Fair Queueing (CBWFQ) (meaning it contains a bandwidth [or priority] statement within any of the classes), the total number of classes supported is 64.
    In Cisco IOS versions 12.2(12),12.2(12)T, and 12.2(12)S, this limitation of 256 global class-maps was changed, and it is now possible to configure up to 1024 global class-maps and to use 256 class-maps inside the same policy-map."

  • After Active Directory System Discovery, some computers have Operating_System_Name_and0 as only the version number

    Good morning,
    We've been experiencing some odd behavior with discovery.  After Active Directory System Discovery, some computers have Operating_System_Name_and0 as only the version number; for example, " 6.1" (note the space before the 6) vs.
    "Microsoft Windows NT Workstation 6.1" (although, not limited to Windows 7 workstations).
    Here are two seemingly identical machine records in Active Directory WCBWIN7VDI10 and WCBWIN7VDI11.
    After discovery
    select Name0, Operating_System_Name_and0 from v_r_system where Name0 LIKE 'WCBWIN7VDI1[0,1]'
    yields
    Name0 Operating_System_Name_and0
    WCBWIN7VDI10  6.1
    WCBWIN7VDI11 Microsoft Windows NT Workstation 6.1
    For discovery on a new domain yesterday we have the following distribution:
    select count (*) as [count], convert (nvarchar, Creation_Date0, 110) as [creation date], Operating_System_Name_and0
    from v_r_system where Full_Domain_Name0 like 'aaa.bbb.ccc'
    group by Operating_System_Name_and0, convert (nvarchar, Creation_Date0, 110)
    order by Operating_System_Name_and0
    count
    creation   date
    Operating_System_Name_and0
    274
    12-01-2014
    3
    12-01-2014
     5.0
    23
    12-01-2014
     5.1
    124
    12-01-2014
     5.2
    20
    12-01-2014
     6.0
    5109
    12-01-2014
     6.1
    6
    12-01-2014
     6.2
    4
    12-01-2014
     6.3
    1
    12-01-2014
    CentOS 6.0
    13
    12-01-2014
    Microsoft   Windows NT Server
    54
    12-01-2014
    Microsoft   Windows NT Server 5.2
    9
    12-01-2014
    Microsoft   Windows NT Server 6.0
    120
    12-01-2014
    Microsoft   Windows NT Server 6.1
    2
    12-01-2014
    Microsoft   Windows NT Server 6.2
    7
    12-01-2014
    Microsoft   Windows NT Server 6.3
    6
    12-01-2014
    Microsoft   Windows NT Workstation 5.1
    3501
    12-01-2014
    Microsoft   Windows NT Workstation 6.1
    1
    12-02-2014
    Microsoft   Windows NT Workstation 6.1
    5
    12-01-2014
    Microsoft   Windows NT Workstation 6.2
    1
    12-01-2014
    Microsoft   Windows NT Workstation 6.3
    2
    12-01-2014
    SLES 11
    6
    12-01-2014
    Windows   Embedded Standard 6.1
    Anybody know why this occurs?  We typically build our server vs. workstation collections with this.
    Thanks,
    Terence Durning

    Hi Terence,
    What is the value in Active Directory for the computer account?
    Do you have the same behavior if you run this query? 
    SELECT DISTINCT Operating_System_Name_and0 FROM v_R_System ORDER BY 1
    You are talking about a space before 6.1. Do I see also a space for all Microsoft Windows like "Microsoft   Windows NT Workstation 6.3" ? 
    Nick Pilon - Blog: System Center Dudes

  • PO Ammendment and version number

    Dear Experts,
    We have version management active at out client.
    When we save the PO after changes version number is generated and changes are saved against that version number.
    We want the report where we can see the Ammendment details in the PO , that is changes thet were made in that particular PO.
    What are the tables and which are the fields where we can find these details.
    Is there any standard report available where i can see those changes in PO.
    Pl. guide.
    Best Regards,
    Vikram

    Hi
    I dont think standard report is there to show versions created in purchase orders.
    You can use the table EREV, doc type F which shows version numbers with status active or completed..
    Thanks

  • Version number conflicts with NI custom data types

    Custom data type version number conflicts
    Options
    Mark as New
    Bookmark
    Subscribe
    Subscribe to RSS Feed
    Highlight
    Print
    Email to a Friend
    Report to a Moderator
    07-11-2011 08:10 AM
    I am new to Teststand software interface.  While doing my first software release under the guidance of a more experienced colleague, we discovered that Teststand will not run if it detects version number conflicts between custom data types on my machine vs. the production test machine.  I verified differences between all .seq files in my test program directory, but I did not realize that the version number difference exists in the StationGlobals.ini file, which is stored in a different location.  After discovering this, I modified the version number in one of the files.  However, two releases later, I discovered that the version number mismatches in another two files.  This raises several questions for me :
    1.  Is there a way in Teststand to view all the .seq files where a custom data type is used and then change its version number in one attempt?
    2.  Under what instances does Teststand upgrade the version number of a custom data type?
    3.  Are there any tools or scripts within Teststand that can allow the version number of custom data types to be changed in all .ini files when a difference is discovered between the current production test station settings and a new release?
    Please help.

    Have you read this?  http://zone.ni.com/devzone/cda/tut/p/id/7060
    I can tell you that your situation is not uncommon with TestStand.  The key is just doing it right the first time.  haha
    #1- I doubt that this is possible because then TestStand would have to know every location of every .seq on the machine.  You will only see it when you open the sequence file.
    #2- TestStand updates the version every time you change it.  You should get a message popup when you try to save that asks if you want to increment the version or not.  There's also a check box that says Remove Modified Mark From Types.  Look under Station Options in the File tab.  There are some settings there about Type conflicts.
    #3- http://zone.ni.com/devzone/cda/tut/p/id/7910
    http://digital.ni.com/public.nsf/allkb/4153576DA04BEB098625743D00704A09
    Hope this helps,
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • The same Object Version Number for the same person id multiple times

    Hello all,
    I am currently facing an issue with HRMS tables and the object version number for employees. I am trying to write a report but due to the same object version number for the same person appearing in several row i am getting duplicate information. For example,
    person id 91 object version number 32 is on 4 rows and i have no idea why...help please guys, I'm at a lost so far 50 people are facing the same issue.

    Hi Baal666bobo,
    The person table is date-tracked, so the PK has effective start and end dates as well.
    Get the correct record with sysdate(or any particular date) and then check the OVN.
    Cheers,
    Vignesh

  • Where is the EXACT version number shown?  Where is the menu link to the Help file?  Why is there no scroll bar?  The new iTunes is terrible in more ways than I can list... how do I switch back to version 10?

    The newest iTunes version has no Help option.  Why?  And, no ability to find out the version number.
    The new iTunes, when in album view in Windows 7, has NO SCROLLBARS, so it is impossible to scroll the albums.  Why?
    Answer these questions, as I am an AAPL shareholder and I am NOT happy with these and other changes you've made to iTunes.

    The newest iTunes version has no Help option.  Why?  And, no ability to find out the version number.
    You may need to bring up your Menu Bar to see the Help menu.
    If you're using 11.0.x, click on the wee boxy icon up in the top-left corner of your iTunes to see the "Show Menu Bar" control, as per the following screenshot:
    Once you've got your Help menu showing, go "Help > About iTunes" and wait for the version number to scroll up from the bottom of the screen, as per the previous versions.

  • How Do I Find Out a Folio Version Number

    Hi Guys,
    So far, everytime I have submitted a folio to the App Store, I have received a variation of the following error:
    Version Mismatch - Neither CFBundleVersion ['3.4.2.9.91210'] nor CFBundleShortVersionString ['1.0.8'] in the Info.plist match the version of the app set in iTunes Connect ['2.0'].
    I'd like to be able to put the correct version number into iTunes Connect when I upload the App, but how do I find it? Where is the CFBundleShortVersionString for each folio located?
    Cheers
    Chris

    It isn't necessary to change that number—Apple is just giving you a housekeeping warning—but if you really want to edit the version number in iTunes, you can find it in DPS App Builder.

  • How can I set a version number for an AppleScript application?

    Subject kind of says it all... I've written a small application in AppleScript, which is used on several computers. I'd like the application to have a version number, just like normal applications have. How do I give it one?
    To be clear, what I mean is: in column view, if you click once on an application, it shows the icon, name, size, version, etc. of the application. I want a version number to show up there (and in the Get Info window, etc.)

    Posting to this old post, but I am trying above method on my 10.8.2 machine and it doesn't seem to work.
    I added the bundle version string as in the attached image.
    Recompile my app, saved it but still version info doesn't show up in finder.
    Also, tried to change "Bundle version" to "CFBundle version". But still didn't work.
    Any suggestions?

  • I have never had to enter a password to access mail. However, recently, I keep being asked for password on my ****** address. Only on my macbook. (which, btw, has a version number the drop down doesn't offer as a choice. I had to putt 9.4)

    I have never had to enter a password to access mail.
    However, recently, I keep being asked for password on my ***** address.
    Only on my macbook. (which, btw, has a version number your drop down doesn't offer as a choice. I had to putt 9.4)
    When I look up the account the "password" is a long string of gobbledygook. Something I would never do.
    But when I attempt to use that pw I still can't get in.
    I have no trouble accessing that email account on my mac mini. Just on the macbook.
    <Edited by Host>

    Maiko,
    I'm confess I'm still trying to get a handle on your problem. You do a fantastic job of describing it ... but I'm just trying to picture it accurately in my head.
    I think, were I in your shoes, I'd begin by looking at what the debug page has to say for the specific destination in which you're interested in fixing. In other words, I'm not clear on where, exactly, this destination points ...
    Destination illinois.edu.1945806043
    Is that your site, or the division within your site that you want to fix? "Normally", you do not need to specify a site handle to get to your site within your transfer CGI ... if you say "uillinois.edu", it's enough to transfer your users to iTunes U ... but every site still has a handle, and you could, if you wanted to, actually specify it in your transfer CGI. For example, this:
    Destination uic.edu.1139051993
    is for my entire site ... it's my site handle. Whereas this:
    Destination uic.edu.1991288441
    is for a division within my site ... but it's impossible to tell the difference between "site" and "division" from just the handle (I mean, if I didn't say "this is a site" and "this is a division", there'd be no way for you to know). So when I look at your creds and permissions on your debug page, I can't quite tell if they give you download access for your site, or for the specific division you want to fix. If you could open the debug page with your division as destination (or confirm that that's what we're looking at), it'd rule out some things.

Maybe you are looking for

  • Accounts  PCUI application in ICWC using Transaction Launcher

    hi all, I am trying to launch Accounts application (PCUI) in ICWC. But it gives the following error: "Execution not possible; data flow errors" What am I doing wrong? Regards, Priya

  • How to create database in pc

    Hi All, I have installed oracle 10g in my pc. Now I need to create a database of my own in my pc. I searched many site in google but didnot find the sufficient information. Can any one explain me the process of creating a database Thanks Sunil

  • How to add a new language in portal?

    Hi,        I have a requirement to add new language(Marathi) in portal.Using the thread 468191 i configure it in portal content translation.but the language is not visible in personalize option.How to acheive this ? Regards Bala

  • Is it possible to automatically login the OSX 10.5 server after a restart?

    I am screen sharing with my server at work from home. I would like to reboot the server after doing some updates, but I know the login screen is going to come up after I restart. Is it possible to set it up so that the login screen auto-populates or

  • Xpath for clob containing xml

    SQL> desc testload Name Type Nullable Default Comments TEST_XML CLOB Y VERSION 11.2.0.1.0 SQL> SELECT 2 xmlcast( 3 xmlquery('/osd/customerNumber' passing XMLTYPE(test_xml) as "d" returning content) 4 as NUMBER 5 ) 6 from Testload 7 ; SELECT xmlcast(