Problems compiling Database functions into installer

Hello,
I am trying to build an installer for a test program I had written.  I am having issues with the Database functions, nothing is being written to the database, but stuff is being read back.  After I few tries I got fet up and included everything on the extra installers list, but it still does not correctly add the Connectivity functions (it was funny having a 1.6 GB installer though ).   The VI works fine before building it into an installer.
What can I do to add SQL write functions into the installer?
Regards,
Andrew Lynch
Written with LV 8.2

 Hello Andrew,
The following KnowledgeBase article should point you in the right direction if this application is written in LabVIEW 8.2:
KnowledgeBase: Building an Executable with LabVIEW 8.x and Database Connectivity Toolset
Cheers! 
-Bob

Similar Messages

  • Problem compiling intrinsic functions

    I've recently had a new version of the sun fortran compiler installed by our IT people. However, I appear to be unable to use certain intrinsic functions in a particular manner. As an example the following code compiles and runs successfully, whilst the second example program fails to link:
    program main
    implicit none
    PRINT*, ADJUSTL(" abc")
    PRINT*, ADJUSTR("abc ")
    PRINT*, SIGN(100.0,-1.0)
    end program main
    program main
    implicit none
    character(len=5) :: test
    real :: neg = -1.0, ton = 100.0
    test = "abc "
    PRINT*, ADJUSTL(test)
    PRINT*, ADJUSTR(test)
    PRINT*, SIGN(ton,neg)
    end program main
    Has anyone come accross this before? Or is it possible to recreate the error? The error message I'm getting is:
    Undefined first referenced
    symbol in file
    F90ADJUSTR_8 temp.o
    F90ADJUSTL_8 temp.o
    __f95_signf temp.o
    ld: fatal: Symbol referencing errors. No output written to a.out
    Any help appreciated. Thanks
    Ric

    It seems as though the compiler didn't install properly. Those functions are defined in libfsu. Try using the -v option when linking. You'll see a bunch of output, including something like this:
    /usr/ccs/bin/ld -t -R/opt/SUNWspro/lib/v8plus:/opt/SUNWspro/lib:/opt/SUNWspro/lib/v8plus:/opt/SUNWspro/lib -o a.out /opt/SUNWspro/prod/lib/crti.o /opt/SUNWspro/prod/lib/crt1.o /opt/SUNWspro/prod/lib/misalign.o /opt/SUNWspro/prod/lib/values-xi.o -Y P,/opt/SUNWspro/lib/v8plus:/opt/SUNWspro/prod/lib/v8plus:/opt/SUNWspro/lib:/opt/SUNWspro/prod/lib:/usr/ccs/lib:/lib:/usr/lib foo.o -lfui -lfai -lfai2 -lfsumai -lfprodai -lfminlai -lfmaxlai -lfminvai -lfmaxvai -lfsu -lsunmath -Bdynamic -lmtsk -lm -lc /opt/SUNWspro/prod/lib/crtn.o
    This link command includes a set of directories in which the linker should look for libraries (the "-Y P, " option). Look for libfsu.so in one of those directories. Given your symptoms, either you won't find it, or you'll find an old one that doesn't contain those functions.
    Anyway, reinstalling is probably the best way to fix the problem.

  • How to get Database functions into xquery/XSLT in OSB 12c

    Hello All,
    How to make use of  functions orcl:sequence-next-val and orcl:query-database in xslt/xquery in OSB 12c.
    I need to do the below logic in xslt/xquery and used it in replace activity . But in OSB 12c I don't see these function. Request to provide me the solution to do it in OSB.
    XSLT in SOA
    <xsl:when test="/ns0:CreateEvent/ns0:Header/header:SourceName != &quot;&quot;">
                <ns1:googleEventSourceId>
                  <xsl:value-of select="orcl:query-database(concat(&quot;select google_event_source_id from enterprise.google_event_source where google_event_source=&quot;,&quot;'&quot;,/ns0:CreateEvent/ns0:Header/header:SourceName,&quot;'&quot;),false(),false(),&quot;jdbc/PRDatasource&quot;)"/>
                </ns1:googleEventSourceId>
              </xsl:when>
    <ns1:googleMapEventId>
              <xsl:value-of select="orcl:sequence-next-val(&quot;enterprise.google_map_event_seq&quot;,&quot;jdbc/PRDatasource&quot;)"/>
            </ns1:googleMapEventId>
    please see below code is just part of my transformation.
    Regards,
    TJ.

    bump

  • Problem with database functions after disposing frames.....

    Hello,
    I have some problems with hangups with my app after disposing some frames...
    My scenario is something like this:
    - i have a login frame which instantiates some other application module and it disposes itself with some code like:
    this.dispose();
    this.finalize();
    System.runFinalization();
    System.gc();
    - after that the new instantiated module frame can return to the login frame by disposing itself and instantiating again the login frame with the same code like above
    my problem is that after some 2-3 tryes to login to a module - retun to login - login to module - return to module my app hangs on some code like:
    combobox.setSelectedIndex(0);
    or
    queryDataSet.executeQuery();
    i have to mention that i use a DataModule.
    do u have any ideas?
    thanks in advance.
    adrian

    >
    - i have a login frame which instantiates some other
    application module and it disposes itself with some
    code like:
    this.dispose();
    this.finalize();
    System.runFinalization();
    System.gc();
    Sounds like a bad idea all around.
    Finalize is supposed to be called by the gc - not by you.
    Almost always using finalize is either pointless or will cause memory leaks.
    do u have any ideas?
    I would guess it has nothing to do with JDBC.
    Are you catching SQLException and printing them out? If not then do so.
    If you are do you see any exceptions? If not then it isn't JDBC.

  • Problem in using query-database() function in Transformation

    Hi All,
    I am using JDev and SOA 10.1.3.4.
    I have an async process.
    In that I am doing a transformation in which source is InputVariable and target is result.
    In Transformation I am using query-database function to fetch a record from DB and am assigning that to result.
    *<xsl:value-of select='orcl:query-database(concat("select ename from emp where empid=",/ns1:DBXSLProcessRequest/ns1:input),false(),false(),"jdbc:oracle:thin:scott/tiger@localhost:1521:abcd")'/>*
    I am not getting any error but query-database is not returning any thing I maen it is returning null.
    If i run that query in SQL prompt it is returning the empname.
    Please help me out.
    Regards
    PavanKumar.M

    Hi Pavan
    I tried following in BPEL transform actvity's XSL file, and it works fine and returns the sysdate for me.
    <xsl:value-of select='orcl:query-database("select sysdate from dual",false,false,"jdbc/myDS")'/>
    Can you try above in new XSL file of Transform activity and let me know its gives you the result? if it works you can start making changes according to your requirement.
    steps to follow:
    1.create connection pool in EM, and make sure its working fine by using test on connection pool.
    2.create Datasource and point to above created connection pool. and restart the oc4j_soa
    3.rename the xsl file name of transform activity in BPEL and use above query-database function.some times xsl files are cached even if you make changes it will not take effect so for testing if you rename it will be good.
    Thanks
    Seshagiri.Rayala
    http://soabpel.wordpress.com/

  • How can I compile all functions, procedures and packages with a script?

    I need to compile all functions, procedures and packages of 5 schemas (users) with a script.
    How can I do it?
    Thanks!

    you can create a script to select all invalid objects in those schemas Since Oracle 8 introduced NDS this approach has struck me as a trifle old fashioned. It's much simpler to loop round the query in PL/SQL and use EXECUTE IMMEDIATE to fire off the DDL statements. No scripts, no muss, no fuss.
    Having said that, the problem with this approach and also with using DBMS_UTILITY.COMPILE_SCHEMA is that they do not compile all the invalid objects in dependency order. This may result in programs being invalidated by the subsequent compilation of dependencies. This is due to the introduction of Java into the database.
    The UTLRP script is much better, because it (usually) avoids cyclic references. But you still may need to run it more than once.
    In general it is better to avoid sledgehammer recompilations (like DBMS_UTILITY.COMPILE_SCHEMA, which starts by invalidating all the objects). If we have twenty invalid objects, nineteen of which are dependencies of the twentieth, we actually only need to recompile the master object, as recompiling it will trigger the recompilation of all the others.
    Cheers, APC

  • Photoshop Elements 10 on Mac Missing Creat & Share Functionality after installation

    Running Mac Leopard 10.6.3. Installed Photoshop Elements 10 but am missing Create and Share functionality.
    Tried upgrading from OS X 10.5 to 10.6.3, Uninstalling,  Re-installing and rebooting but problem still exists (see attached screenshot with blank Create section).
    Also tried looking at installation log file and saw two warnings (see below).
    Am I missing something or is this an installation bug?
    Thank you for any help,
    Marwan
    ========================LOG FILE==============================================
    0] Sun Dec 25 21:33:25 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 4.2.4.0
    OSX version: 10.6.3 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    Create Required Folders
    Assuming uninstall mode
    Lookup for master payload
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    Supported RIBS version range: [0.0.66.0,4.2.4.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0: 1 (0,1)
      {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7} Camera Profiles Installer_6.4_AdobeCameraRawProfile6.0All 6.4.0.0: 2 (0,0)
      {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3} Adobe Player for Embedding 3.1 3.101.0.0: 3 (0,1)
      {28B74F2E-2E70-4B44-A581-0C19F62A5D6E} Elements 10 Organizer 10.0.0.0: 3 (0,1)
      {66662067-28E4-4A8B-8209-5D6F2B7BCF48} Elements 10 Organizer_AdobeElements10Organizer_de_DE 10.0.0.0: 4 (0,0)
      {721AF416-8457-4641-84EC-BABFC28EEDB8} Elements 10 Organizer_AdobeElements10Organizer_ja_JP 10.0.0.0: 4 (0,0)
      {EC4A9B2F-52B0-4C5C-8B1F-B89043AF4C6A} Elements 10 Organizer_AdobeElements10Organizer_fr_FR 10.0.0.0: 4 (0,0)
      {BC5880C9-E055-4E57-826A-749E79C498C2} Elements 10 Organizer_AdobeElements10Organizer_en_US 10.0.0.0: 4 (0,0)
      {52411D2C-81DD-442F-81C7-D867F6D73491} Photoshop Camera Raw for Elements 10 6.4.0.0: 5 (1,1)
      {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5 5.0.0.0: 6 (0,1)
      {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 1.2.0.0: 6 (0,1)
      {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 3.0.0.0: 6 (0,1)
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0: 6 (0,1)
      {EB3A47AA-B4E2-4857-A69C-92A6E097F24C} AdobeHelp 3.5.0.0: 6 (0,1)
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0: 6 (0,1)
      {0AF29C46-6E82-4402-9019-8A6BB0F981D4} Elements Inspiration Browser 10.0.0.0: 6 (0,1)
      {60CB5C6D-5B99-45D3-BAB5-E7728182101E} Adobe Photoshop Elements 10 10.0.0.0: 7 (10,0)
      {80FEC0F2-B9F0-4E94-914F-7A0F7FEA744C} Adobe Photoshop Elements 10_AdobePhotoshopElements10_fr_FR 10.0.0.0: 8 (0,0)
      {3BDD6712-FD98-4280-AD34-DE0BDF4EC9F0} Adobe Photoshop Elements 10_AdobePhotoshopElements10_de_DE 10.0.0.0: 8 (0,0)
      {E3089289-60E5-4DD6-8E81-4A2D71A90ACE} Adobe Photoshop Elements 10_AdobePhotoshopElements10_ja_JP 10.0.0.0: 8 (0,0)
      {E6FE3234-EA6D-4F21-AF83-E7279A985CD1} Adobe Photoshop Elements 10_AdobePhotoshopElements10_en_US 10.0.0.0: 8 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Setting property "driverAdobeCode" to: {60CB5C6D-5B99-45D3-BAB5-E7728182101E}
    Setting property "mediaSignature" to: {60CB5C6D-5B99-45D3-BAB5-E7728182101E}
    Overwrite property "userASUPath" to: /Library/Application Support/Adobe/OOBE/PDApp
    Found payload actions:
    Deciding what installer mode to use...
    {E3089289-60E5-4DD6-8E81-4A2D71A90ACE} Adobe Photoshop Elements 10_AdobePhotoshopElements10_ja_JP 10.0.0.0 not installed
    {3BDD6712-FD98-4280-AD34-DE0BDF4EC9F0} Adobe Photoshop Elements 10_AdobePhotoshopElements10_de_DE 10.0.0.0 not installed
    {80FEC0F2-B9F0-4E94-914F-7A0F7FEA744C} Adobe Photoshop Elements 10_AdobePhotoshopElements10_fr_FR 10.0.0.0 not installed
    {EC4A9B2F-52B0-4C5C-8B1F-B89043AF4C6A} Elements 10 Organizer_AdobeElements10Organizer_fr_FR 10.0.0.0 not installed
    {721AF416-8457-4641-84EC-BABFC28EEDB8} Elements 10 Organizer_AdobeElements10Organizer_ja_JP 10.0.0.0 not installed
    {66662067-28E4-4A8B-8209-5D6F2B7BCF48} Elements 10 Organizer_AdobeElements10Organizer_de_DE 10.0.0.0 not installed
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {E6FE3234-EA6D-4F21-AF83-E7279A985CD1} Adobe Photoshop Elements 10_AdobePhotoshopElements10_en_US 10.0.0.0 is: true
    Action string for {E6FE3234-EA6D-4F21-AF83-E7279A985CD1} Adobe Photoshop Elements 10_AdobePhotoshopElements10_en_US 10.0.0.0  is none
    Payload {E6FE3234-EA6D-4F21-AF83-E7279A985CD1} Adobe Photoshop Elements 10_AdobePhotoshopElements10_en_US 10.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {E3089289-60E5-4DD6-8E81-4A2D71A90ACE} Adobe Photoshop Elements 10_AdobePhotoshopElements10_ja_JP 10.0.0.0 is: false
    Action string for {E3089289-60E5-4DD6-8E81-4A2D71A90ACE} Adobe Photoshop Elements 10_AdobePhotoshopElements10_ja_JP 10.0.0.0  is none
    Payload {E3089289-60E5-4DD6-8E81-4A2D71A90ACE} Adobe Photoshop Elements 10_AdobePhotoshopElements10_ja_JP 10.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {3BDD6712-FD98-4280-AD34-DE0BDF4EC9F0} Adobe Photoshop Elements 10_AdobePhotoshopElements10_de_DE 10.0.0.0 is: false
    Action string for {3BDD6712-FD98-4280-AD34-DE0BDF4EC9F0} Adobe Photoshop Elements 10_AdobePhotoshopElements10_de_DE 10.0.0.0  is none
    Payload {3BDD6712-FD98-4280-AD34-DE0BDF4EC9F0} Adobe Photoshop Elements 10_AdobePhotoshopElements10_de_DE 10.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {80FEC0F2-B9F0-4E94-914F-7A0F7FEA744C} Adobe Photoshop Elements 10_AdobePhotoshopElements10_fr_FR 10.0.0.0 is: false
    Action string for {80FEC0F2-B9F0-4E94-914F-7A0F7FEA744C} Adobe Photoshop Elements 10_AdobePhotoshopElements10_fr_FR 10.0.0.0  is none
    Payload {80FEC0F2-B9F0-4E94-914F-7A0F7FEA744C} Adobe Photoshop Elements 10_AdobePhotoshopElements10_fr_FR 10.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {60CB5C6D-5B99-45D3-BAB5-E7728182101E} Adobe Photoshop Elements 10 10.0.0.0 is: true
    Action string for {60CB5C6D-5B99-45D3-BAB5-E7728182101E} Adobe Photoshop Elements 10 10.0.0.0  is remove
    Selection of payload {60CB5C6D-5B99-45D3-BAB5-E7728182101E} Adobe Photoshop Elements 10 10.0.0.0 is forbidden by the policy. Reason: Free payload
    Value returned on lookup of payload: {0AF29C46-6E82-4402-9019-8A6BB0F981D4} Elements Inspiration Browser 10.0.0.0 is: true
    Action string for {0AF29C46-6E82-4402-9019-8A6BB0F981D4} Elements Inspiration Browser 10.0.0.0  is none
    Value returned on lookup of payload: {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0 is: true
    Action string for {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0  is none
    Value returned on lookup of payload: {EB3A47AA-B4E2-4857-A69C-92A6E097F24C} AdobeHelp 3.5.0.0 is: true
    Action string for {EB3A47AA-B4E2-4857-A69C-92A6E097F24C} AdobeHelp 3.5.0.0  is none
    Value returned on lookup of payload: {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0 is: true
    Action string for {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0  is none
    Value returned on lookup of payload: {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 3.0.0.0 is: true
    Action string for {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 3.0.0.0  is none
    Value returned on lookup of payload: {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 1.2.0.0 is: true
    Action string for {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 1.2.0.0  is none
    Value returned on lookup of payload: {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5 5.0.0.0 is: true
    Action string for {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5 5.0.0.0  is none
    Value returned on lookup of payload: {52411D2C-81DD-442F-81C7-D867F6D73491} Photoshop Camera Raw for Elements 10 6.4.0.0 is: true
    Action string for {52411D2C-81DD-442F-81C7-D867F6D73491} Photoshop Camera Raw for Elements 10 6.4.0.0  is none
    Value returned on lookup of payload: {BC5880C9-E055-4E57-826A-749E79C498C2} Elements 10 Organizer_AdobeElements10Organizer_en_US 10.0.0.0 is: true
    Action string for {BC5880C9-E055-4E57-826A-749E79C498C2} Elements 10 Organizer_AdobeElements10Organizer_en_US 10.0.0.0  is none
    Payload {BC5880C9-E055-4E57-826A-749E79C498C2} Elements 10 Organizer_AdobeElements10Organizer_en_US 10.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {EC4A9B2F-52B0-4C5C-8B1F-B89043AF4C6A} Elements 10 Organizer_AdobeElements10Organizer_fr_FR 10.0.0.0 is: false
    Action string for {EC4A9B2F-52B0-4C5C-8B1F-B89043AF4C6A} Elements 10 Organizer_AdobeElements10Organizer_fr_FR 10.0.0.0  is none
    Payload {EC4A9B2F-52B0-4C5C-8B1F-B89043AF4C6A} Elements 10 Organizer_AdobeElements10Organizer_fr_FR 10.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {721AF416-8457-4641-84EC-BABFC28EEDB8} Elements 10 Organizer_AdobeElements10Organizer_ja_JP 10.0.0.0 is: false
    Action string for {721AF416-8457-4641-84EC-BABFC28EEDB8} Elements 10 Organizer_AdobeElements10Organizer_ja_JP 10.0.0.0  is none
    Payload {721AF416-8457-4641-84EC-BABFC28EEDB8} Elements 10 Organizer_AdobeElements10Organizer_ja_JP 10.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {66662067-28E4-4A8B-8209-5D6F2B7BCF48} Elements 10 Organizer_AdobeElements10Organizer_de_DE 10.0.0.0 is: false
    Action string for {66662067-28E4-4A8B-8209-5D6F2B7BCF48} Elements 10 Organizer_AdobeElements10Organizer_de_DE 10.0.0.0  is none
    Payload {66662067-28E4-4A8B-8209-5D6F2B7BCF48} Elements 10 Organizer_AdobeElements10Organizer_de_DE 10.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {28B74F2E-2E70-4B44-A581-0C19F62A5D6E} Elements 10 Organizer 10.0.0.0 is: true
    Action string for {28B74F2E-2E70-4B44-A581-0C19F62A5D6E} Elements 10 Organizer 10.0.0.0  is none
    Value returned on lookup of payload: {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3} Adobe Player for Embedding 3.1 3.101.0.0 is: true
    Action string for {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3} Adobe Player for Embedding 3.1 3.101.0.0  is none
    Value returned on lookup of payload: {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7} Camera Profiles Installer_6.4_AdobeCameraRawProfile6.0All 6.4.0.0 is: true
    Action string for {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7} Camera Profiles Installer_6.4_AdobeCameraRawProfile6.0All 6.4.0.0  is remove
    Value returned on lookup of payload: {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 is: true
    Action string for {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0  is none
    END Setting requested payload actions
    INSTALLDIR passed path basic path validation: /Applications
    ::START TIMER:: [System check :{60CB5C6D-5B99-45D3-BAB5-E7728182101E}]
    In UninstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{60CB5C6D-5B99-45D3-BAB5-E7728182101E}] took 45 milliseconds (0.045 seconds)
    ::START TIMER:: [System check :{28B74F2E-2E70-4B44-A581-0C19F62A5D6E}]
    In UninstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{28B74F2E-2E70-4B44-A581-0C19F62A5D6E}] took 19 milliseconds (0.019 seconds)
    0] Sun Dec 25 21:33:26 2011  INFO
    BEGIN InstallOperationsQueue Unordered operations
      {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 1.2.0.0:  with operation remove
      {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3} Adobe Player for Embedding 3.1 3.101.0.0:  with operation remove
      {0AF29C46-6E82-4402-9019-8A6BB0F981D4} Elements Inspiration Browser 10.0.0.0:  with operation remove
      {28B74F2E-2E70-4B44-A581-0C19F62A5D6E} Elements 10 Organizer 10.0.0.0:  with operation remove
      {3BDD6712-FD98-4280-AD34-DE0BDF4EC9F0} Adobe Photoshop Elements 10_AdobePhotoshopElements10_de_DE 10.0.0.0:  with operation none
      {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0:  with operation remove
      {52411D2C-81DD-442F-81C7-D867F6D73491} Photoshop Camera Raw for Elements 10 6.4.0.0:  with operation remove
      {60CB5C6D-5B99-45D3-BAB5-E7728182101E} Adobe Photoshop Elements 10 10.0.0.0:  with operation remove
      {66662067-28E4-4A8B-8209-5D6F2B7BCF48} Elements 10 Organizer_AdobeElements10Organizer_de_DE 10.0.0.0:  with operation none
      {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 3.0.0.0:  with operation remove
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {721AF416-8457-4641-84EC-BABFC28EEDB8} Elements 10 Organizer_AdobeElements10Organizer_ja_JP 10.0.0.0:  with operation none
      {80FEC0F2-B9F0-4E94-914F-7A0F7FEA744C} Adobe Photoshop Elements 10_AdobePhotoshopElements10_fr_FR 10.0.0.0:  with operation none
      {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5 5.0.0.0:  with operation remove
      {BC5880C9-E055-4E57-826A-749E79C498C2} Elements 10 Organizer_AdobeElements10Organizer_en_US 10.0.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E3089289-60E5-4DD6-8E81-4A2D71A90ACE} Adobe Photoshop Elements 10_AdobePhotoshopElements10_ja_JP 10.0.0.0:  with operation none
      {E6FE3234-EA6D-4F21-AF83-E7279A985CD1} Adobe Photoshop Elements 10_AdobePhotoshopElements10_en_US 10.0.0.0:  with operation remove
      {EB3A47AA-B4E2-4857-A69C-92A6E097F24C} AdobeHelp 3.5.0.0:  with operation remove
      {EC4A9B2F-52B0-4C5C-8B1F-B89043AF4C6A} Elements 10 Organizer_AdobeElements10Organizer_fr_FR 10.0.0.0:  with operation none
      {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7} Camera Profiles Installer_6.4_AdobeCameraRawProfile6.0All 6.4.0.0:  with operation remove
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E6FE3234-EA6D-4F21-AF83-E7279A985CD1} Adobe Photoshop Elements 10_AdobePhotoshopElements10_en_US 10.0.0.0:  with operation remove
      {60CB5C6D-5B99-45D3-BAB5-E7728182101E} Adobe Photoshop Elements 10 10.0.0.0:  with operation remove
      {0AF29C46-6E82-4402-9019-8A6BB0F981D4} Elements Inspiration Browser 10.0.0.0:  with operation remove
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {EB3A47AA-B4E2-4857-A69C-92A6E097F24C} AdobeHelp 3.5.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 3.0.0.0:  with operation remove
      {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 1.2.0.0:  with operation remove
      {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5 5.0.0.0:  with operation remove
      {52411D2C-81DD-442F-81C7-D867F6D73491} Photoshop Camera Raw for Elements 10 6.4.0.0:  with operation remove
      {BC5880C9-E055-4E57-826A-749E79C498C2} Elements 10 Organizer_AdobeElements10Organizer_en_US 10.0.0.0:  with operation remove
      {28B74F2E-2E70-4B44-A581-0C19F62A5D6E} Elements 10 Organizer 10.0.0.0:  with operation remove
      {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3} Adobe Player for Embedding 3.1 3.101.0.0:  with operation remove
      {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7} Camera Profiles Installer_6.4_AdobeCameraRawProfile6.0All 6.4.0.0:  with operation remove
      {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0:  with operation remove
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    ::START TIMER:: [Pre session :{60CB5C6D-5B99-45D3-BAB5-E7728182101E}]
    In UninstallSessionOpenProc
    Custom action return code: 0
    :: END TIMER :: [Pre session :{60CB5C6D-5B99-45D3-BAB5-E7728182101E}] took 0 milliseconds (0 seconds)
    BEGIN InstallOperationsQueue Unordered operations
      {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 1.2.0.0:  with operation remove
      {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3} Adobe Player for Embedding 3.1 3.101.0.0:  with operation remove
      {0AF29C46-6E82-4402-9019-8A6BB0F981D4} Elements Inspiration Browser 10.0.0.0:  with operation remove
      {28B74F2E-2E70-4B44-A581-0C19F62A5D6E} Elements 10 Organizer 10.0.0.0:  with operation remove
      {3BDD6712-FD98-4280-AD34-DE0BDF4EC9F0} Adobe Photoshop Elements 10_AdobePhotoshopElements10_de_DE 10.0.0.0:  with operation none
      {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0:  with operation remove
      {52411D2C-81DD-442F-81C7-D867F6D73491} Photoshop Camera Raw for Elements 10 6.4.0.0:  with operation remove
      {60CB5C6D-5B99-45D3-BAB5-E7728182101E} Adobe Photoshop Elements 10 10.0.0.0:  with operation remove
      {66662067-28E4-4A8B-8209-5D6F2B7BCF48} Elements 10 Organizer_AdobeElements10Organizer_de_DE 10.0.0.0:  with operation none
      {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 3.0.0.0:  with operation remove
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {721AF416-8457-4641-84EC-BABFC28EEDB8} Elements 10 Organizer_AdobeElements10Organizer_ja_JP 10.0.0.0:  with operation none
      {80FEC0F2-B9F0-4E94-914F-7A0F7FEA744C} Adobe Photoshop Elements 10_AdobePhotoshopElements10_fr_FR 10.0.0.0:  with operation none
      {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5 5.0.0.0:  with operation remove
      {BC5880C9-E055-4E57-826A-749E79C498C2} Elements 10 Organizer_AdobeElements10Organizer_en_US 10.0.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E3089289-60E5-4DD6-8E81-4A2D71A90ACE} Adobe Photoshop Elements 10_AdobePhotoshopElements10_ja_JP 10.0.0.0:  with operation none
      {E6FE3234-EA6D-4F21-AF83-E7279A985CD1} Adobe Photoshop Elements 10_AdobePhotoshopElements10_en_US 10.0.0.0:  with operation remove
      {EB3A47AA-B4E2-4857-A69C-92A6E097F24C} AdobeHelp 3.5.0.0:  with operation remove
      {EC4A9B2F-52B0-4C5C-8B1F-B89043AF4C6A} Elements 10 Organizer_AdobeElements10Organizer_fr_FR 10.0.0.0:  with operation none
      {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7} Camera Profiles Installer_6.4_AdobeCameraRawProfile6.0All 6.4.0.0:  with operation remove
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E6FE3234-EA6D-4F21-AF83-E7279A985CD1} Adobe Photoshop Elements 10_AdobePhotoshopElements10_en_US 10.0.0.0:  with operation remove
      {60CB5C6D-5B99-45D3-BAB5-E7728182101E} Adobe Photoshop Elements 10 10.0.0.0:  with operation remove
      {0AF29C46-6E82-4402-9019-8A6BB0F981D4} Elements Inspiration Browser 10.0.0.0:  with operation remove
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {EB3A47AA-B4E2-4857-A69C-92A6E097F24C} AdobeHelp 3.5.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 3.0.0.0:  with operation remove
      {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 1.2.0.0:  with operation remove
      {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5 5.0.0.0:  with operation remove
      {52411D2C-81DD-442F-81C7-D867F6D73491} Photoshop Camera Raw for Elements 10 6.4.0.0:  with operation remove
      {BC5880C9-E055-4E57-826A-749E79C498C2} Elements 10 Organizer_AdobeElements10Organizer_en_US 10.0.0.0:  with operation remove
      {28B74F2E-2E70-4B44-A581-0C19F62A5D6E} Elements 10 Organizer 10.0.0.0:  with operation remove
      {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3} Adobe Player for Embedding 3.1 3.101.0.0:  with operation remove
      {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7} Camera Profiles Installer_6.4_AdobeCameraRawProfile6.0All 6.4.0.0:  with operation remove
      {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0:  with operation remove
    END InstallOperationsQueue Ordered operations
    Initializing the INSTALLDIR with PDB data for payload {60CB5C6D-5B99-45D3-BAB5-E7728182101E}
    File Exists: /Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app/Contents/Resources/AMT/application.xml
    Located the INSTALLDIR for payload '{60CB5C6D-5B99-45D3-BAB5-E7728182101E}' : '/Applications'
    Initializing the INSTALLDIR with PDB data for payload {60CB5C6D-5B99-45D3-BAB5-E7728182101E}
    File Exists: /Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app/Contents/Resources/AMT/application.xml
    Located the INSTALLDIR for payload '{60CB5C6D-5B99-45D3-BAB5-E7728182101E}' : '/Applications'
    Initializing the INSTALLDIR with PDB data for payload {0AF29C46-6E82-4402-9019-8A6BB0F981D4}
    Re-computing INSTALLDIR for third party using bundle information:
    Could not locate INSTALLDIR using bundle information.
    Located the INSTALLDIR for payload '{0AF29C46-6E82-4402-9019-8A6BB0F981D4}' : '/Applications'
    Initializing the INSTALLDIR with PDB data for payload {6F3A624B-1B72-4081-96E8-23261F389C5C}
    File Exists: /Library/Application Support/Adobe/TypeSupport/CS5/AMT/component.xml
    Located the INSTALLDIR for payload '{6F3A624B-1B72-4081-96E8-23261F389C5C}' : '/Library/Application Support/Adobe/TypeSupport/CS5'
    Initializing the INSTALLDIR with PDB data for payload {EB3A47AA-B4E2-4857-A69C-92A6E097F24C}
    Re-computing INSTALLDIR for third party using bundle information:
    Could not locate INSTALLDIR using bundle information.
    Located the INSTALLDIR for payload '{EB3A47AA-B4E2-4857-A69C-92A6E097F24C}' : '/Applications'
    Initializing the INSTALLDIR with PDB data for payload {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    File Exists: /Library/Application Support/Adobe/TypeSupport/CS5/CMaps/AMT/component.xml
    Located the INSTALLDIR for payload '{BD0D6363-E961-410F-8BF4-ECD8795F3923}' : '/Library/Application Support/Adobe/TypeSupport/CS5/CMaps'
    Initializing the INSTALLDIR with PDB data for payload {6A2E619B-E4AC-433B-A648-D458CE543A96}
    File Exists: /Library/Application Support/Adobe/XMP/Custom File Info Panels/3.0/AMT/application.xml
    Located the INSTALLDIR for payload '{6A2E619B-E4AC-433B-A648-D458CE543A96}' : '/Library/Application Support/Adobe/XMP/Custom File Info Panels/3.0'
    Initializing the INSTALLDIR with PDB data for payload {007A2A28-D6A8-4D91-9A2B-568FF8052215}
    File Exists: /Library/Application Support/Adobe/Linguistics/5.0/Providers/Plugins2/WRLiloPlugin1.2.bundle/Contents/SharedSu pport/AMT/component.xml
    Located the INSTALLDIR for payload '{007A2A28-D6A8-4D91-9A2B-568FF8052215}' : '/Library/Application Support/Adobe/Linguistics/5.0/Providers/Plugins2/WRLiloPlugin1.2.bundle'
    Initializing the INSTALLDIR with PDB data for payload {A44863BF-8DB8-4D22-88DB-5A02BE319840}
    File Exists: /Library/Application Support/Adobe/Linguistics/5.0/AMT/component.xml
    Located the INSTALLDIR for payload '{A44863BF-8DB8-4D22-88DB-5A02BE319840}' : '/Library/Application Support/Adobe/Linguistics/5.0'
    Initializing the INSTALLDIR with PDB data for payload {52411D2C-81DD-442F-81C7-D867F6D73491}
    Located the INSTALLDIR for payload '{52411D2C-81DD-442F-81C7-D867F6D73491}' : '/Applications'
    Initializing the INSTALLDIR with PDB data for payload {28B74F2E-2E70-4B44-A581-0C19F62A5D6E}
    File Exists: /Applications/Adobe Elements 10 Organizer.app/Contents/Resources/AMT/application.xml
    Located the INSTALLDIR for payload '{28B74F2E-2E70-4B44-A581-0C19F62A5D6E}' : '/Applications'
    Initializing the INSTALLDIR with PDB data for payload {28B74F2E-2E70-4B44-A581-0C19F62A5D6E}
    File Exists: /Applications/Adobe Elements 10 Organizer.app/Contents/Resources/AMT/application.xml
    Located the INSTALLDIR for payload '{28B74F2E-2E70-4B44-A581-0C19F62A5D6E}' : '/Applications'
    Initializing the INSTALLDIR with PDB data for payload {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3}
    Located the INSTALLDIR for payload '{0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3}' : '/Library/Application Support/Adobe/APE/3.101'
    Initializing the INSTALLDIR with PDB data for payload {3F023875-4A52-4605-9DB6-A88D4A813E8D}
    Located the INSTALLDIR for payload '{3F023875-4A52-4605-9DB6-A88D4A813E8D}' : '/Applications'
    Initializing the INSTALLDIR with PDB data for payload {3F023875-4A52-4605-9DB6-A88D4A813E8D}
    Located the INSTALLDIR for payload '{3F023875-4A52-4605-9DB6-A88D4A813E8D}' : '/Applications'
    Initializing the INSTALLDIR with PDB data for payload {60CB5C6D-5B99-45D3-BAB5-E7728182101E}
    File Exists: /Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app/Contents/Resources/AMT/application.xml
    Located the INSTALLDIR for payload '{60CB5C6D-5B99-45D3-BAB5-E7728182101E}' : '/Applications'
    Calling the custom action code for pre-remove for payload {E6FE3234-EA6D-4F21-AF83-E7279A985CD1}
    ::START TIMER:: [Payload Operation :{E6FE3234-EA6D-4F21-AF83-E7279A985CD1}]
    1] Sun Dec 25 21:33:27 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {60CB5C6D-5B99-45D3-BAB5-E7728182101E} modify request for AdobeCode: {E6FE3234-EA6D-4F21-AF83-E7279A985CD1}
    Effective AdobeCode for: {E6FE3234-EA6D-4F21-AF83-E7279A985CD1} is {E6FE3234-EA6D-4F21-AF83-E7279A985CD1}
    Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/{E6FE3234-EA6D-4F21-AF83-E7279A985CD1}.db
    Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/{E6FE3234-EA6D-4F21-AF83-E7279A985CD1}.db
    Physical payload uninstall result:0
    0] Sun Dec 25 21:33:28 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{E6FE3234-EA6D-4F21-AF83-E7279A985CD1}] took 1078 milliseconds (1.078 seconds) DTR = 47877.6 KBPS (46.7554 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {E6FE3234-EA6D-4F21-AF83-E7279A985CD1} Adobe Photoshop Elements 10_AdobePhotoshopElements10_en_US 10.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {E6FE3234-EA6D-4F21-AF83-E7279A985CD1} Adobe Photoshop Elements 10_AdobePhotoshopElements10_en_US 10.0.0.0
    Initializing the INSTALLDIR with PDB data for payload {60CB5C6D-5B99-45D3-BAB5-E7728182101E}
    File Exists: /Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app/Contents/Resources/AMT/application.xml
    Located the INSTALLDIR for payload '{60CB5C6D-5B99-45D3-BAB5-E7728182101E}' : '/Applications'
    Calling the custom action code for pre-remove for payload {60CB5C6D-5B99-45D3-BAB5-E7728182101E}
    ::START TIMER:: [Pre payload :{60CB5C6D-5B99-45D3-BAB5-E7728182101E}]
    In PrePayloadUninstallProc
    CUSTOM ACTION: Removing EMS.txt
    CUSTOM ACTION: Error removing ems.txt
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{60CB5C6D-5B99-45D3-BAB5-E7728182101E}] took 0 milliseconds (0 seconds)
    ::START TIMER:: [Payload Operation :{60CB5C6D-5B99-45D3-BAB5-E7728182101E}]
    2] Sun Dec 25 21:33:28 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {60CB5C6D-5B99-45D3-BAB5-E7728182101E} modify request for AdobeCode: {60CB5C6D-5B99-45D3-BAB5-E7728182101E}
    Effective AdobeCode for: {60CB5C6D-5B99-45D3-BAB5-E7728182101E} is {60CB5C6D-5B99-45D3-BAB5-E7728182101E}
    2] Sun Dec 25 21:33:29 2011  INFO
    Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/{60CB5C6D-5B99-45D3-BAB5-E7728182101E}.db
    2] Sun Dec 25 21:33:54 2011  INFO
    Evaluating condition# 1(Seq 8914)
    Condition failed(Seq 8914)
    Evaluating condition# 2(Seq 8917)
    Condition failed(Seq 8917)
    2] Sun Dec 25 21:33:55 2011  INFO
    Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/{60CB5C6D-5B99-45D3-BAB5-E7728182101E}.db
    2] Sun Dec 25 21:34:11 2011  INFO
    Physical payload uninstall result:0
    0] Sun Dec 25 21:34:12 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{60CB5C6D-5B99-45D3-BAB5-E7728182101E}] took 44078 milliseconds (44.078 seconds) DTR = 40896.4 KBPS (39.9379 MBPS)
    Updating driver data - Action: Add driver entry
    Initializing the INSTALLDIR with PDB data for payload {60CB5C6D-5B99-45D3-BAB5-E7728182101E}
    File does not exist at: /Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app/Contents/Resources/AMT/application.xml
    New Install root : /Applications/Adobe Photoshop Elements 10/Support Files
    Application could not be located. Assuming drag to trash.
    Updating driver data successful. Driver entry was added. ARP estimated size 0KB
    User specified overrideFile:
    Successfully updated the csu inventory for {60CB5C6D-5B99-45D3-BAB5-E7728182101E} Adobe Photoshop Elements 10 10.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {60CB5C6D-5B99-45D3-BAB5-E7728182101E} Adobe Photoshop Elements 10 10.0.0.0
    ::START TIMER:: [Post payload :{60CB5C6D-5B99-45D3-BAB5-E7728182101E}]
    In PostPayloadUninstallProc
    Custom action return code: 0
    :: END TIMER :: [Post payload :{60CB5C6D-5B99-45D3-BAB5-E7728182101E}] took 0 milliseconds (0 seconds)
    0] Sun Dec 25 21:34:13 2011  INFO
    Initializing the INSTALLDIR with PDB data for payload {0AF29C46-6E82-4402-9019-8A6BB0F981D4}
    Re-computing INSTALLDIR for third party using bundle information:
    Could not locate INSTALLDIR using bundle information.
    Located the INSTALLDIR for payload '{0AF29C46-6E82-4402-9019-8A6BB0F981D4}' : '/Applications'
    Calling the custom action code for pre-remove for payload {0AF29C46-6E82-4402-9019-8A6BB0F981D4}
    ::START TIMER:: [Payload Operation :{0AF29C46-6E82-4402-9019-8A6BB0F981D4}]
    3] Sun Dec 25 21:34:13 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    0] Sun Dec 25 21:34:14 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{0AF29C46-6E82-4402-9019-8A6BB0F981D4}] took 1043 milliseconds (1.043 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {0AF29C46-6E82-4402-9019-8A6BB0F981D4} Elements Inspiration Browser 10.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {0AF29C46-6E82-4402-9019-8A6BB0F981D4} Elements Inspiration Browser 10.0.0.0
    Initializing the INSTALLDIR with PDB data for payload {6F3A624B-1B72-4081-96E8-23261F389C5C}
    File Exists: /Library/Application Support/Adobe/TypeSupport/CS5/AMT/component.xml
    Located the INSTALLDIR for payload '{6F3A624B-1B72-4081-96E8-23261F389C5C}' : '/Library/Application Support/Adobe/TypeSupport/CS5'
    Calling the custom action code for pre-remove for payload {6F3A624B-1B72-4081-96E8-23261F389C5C}
    ::START TIMER:: [Payload Operation :{6F3A624B-1B72-4081-96E8-23261F389C5C}]
    3] Sun Dec 25 21:34:14 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {60CB5C6D-5B99-45D3-BAB5-E7728182101E} modify request for AdobeCode: {6F3A624B-1B72-4081-96E8-23261F389C5C}
    Effective AdobeCode for: {6F3A624B-1B72-4081-96E8-23261F389C5C} is {6F3A624B-1B72-4081-96E8-23261F389C5C}
    Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/{6F3A624B-1B72-4081-96E8-23261F389C5C}.db
    Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/{6F3A624B-1B72-4081-96E8-23261F389C5C}.db
    Physical payload uninstall result:0
    0] Sun Dec 25 21:34:15 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{6F3A624B-1B72-4081-96E8-23261F389C5C}] took 1063 milliseconds (1.063 seconds) DTR = 5712.14 KBPS (5.57826 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0
    Initializing the INSTALLDIR with PDB data for payload {EB3A47AA-B4E2-4857-A69C-92A6E097F24C}
    Re-computing INSTALLDIR for third party using bundle information:
    Could not locate INSTALLDIR using bundle information.
    Located the INSTALLDIR for payload '{EB3A47AA-B4E2-4857-A69C-92A6E097F24C}' : '/Applications'
    Calling the custom action code for pre-remove for payload {EB3A47AA-B4E2-4857-A69C-92A6E097F24C}
    ::START TIMER:: [Payload Operation :{EB3A47AA-B4E2-4857-A69C-92A6E097F24C}]
    3] Sun Dec 25 21:34:15 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    0] Sun Dec 25 21:34:16 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{EB3A47AA-B4E2-4857-A69C-92A6E097F24C}] took 1043 milliseconds (1.043 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {EB3A47AA-B4E2-4857-A69C-92A6E097F24C} AdobeHelp 3.5.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {EB3A47AA-B4E2-4857-A69C-92A6E097F24C} AdobeHelp 3.5.0.0
    Initializing the INSTALLDIR with PDB data for payload {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    File Exists: /Library/Application Support/Adobe/TypeSupport/CS5/CMaps/AMT/component.xml
    Located the INSTALLDIR for payload '{BD0D6363-E961-410F-8BF4-ECD8795F3923}' : '/Library/Application Support/Adobe/TypeSupport/CS5/CMaps'
    Calling the custom action code for pre-remove for payload {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    ::START TIMER:: [Payload Operation :{BD0D6363-E961-410F-8BF4-ECD8795F3923}]
    3] Sun Dec 25 21:34:16 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {60CB5C6D-5B99-45D3-BAB5-E7728182101E} modify request for AdobeCode: {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    Effective AdobeCode for: {BD0D6363-E961-410F-8BF4-ECD8795F3923} is {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    3] Sun Dec 25 21:34:17 2011  INFO
    Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/{BD0D6363-E961-410F-8BF4-ECD8795F3923}.db
    Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/{BD0D6363-E961-410F-8BF4-ECD8795F3923}.db
    Physical payload uninstall result:0
    0] Sun Dec 25 21:34:17 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{BD0D6363-E961-410F-8BF4-ECD8795F3923}] took 1057 milliseconds (1.057 seconds) DTR = 6421.95 KBPS (6.27143 MBPS)
    User specified overrideFile:
    0] Sun Dec 25 21:34:18 2011  INFO
    Successfully updated the csu inventory for {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0
    Initializing the INSTALLDIR with PDB data for payload {6A2E619B-E4AC-433B-A648-D458CE543A96}
    File Exists: /Library/Application Support/Adobe/XMP/Custom File Info Panels/3.0/AMT/application.xml
    Located the INSTALLDIR for payload '{6A2E619B-E4AC-433B-A648-D458CE543A96}' : '/Library/Application Support/Adobe/XMP/Custom File Info Panels/3.0'
    Calling the custom action code for pre-remove for payload {6A2E619B-E4AC-433B-A648-D458CE543A96}
    ::START TIMER:: [Payload Operation :{6A2E619B-E4AC-433B-A648-D458CE543A96}]
    3] Sun Dec 25 21:34:18 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {60CB5C6D-5B99-45D3-BAB5-E7728182101E} modify request for AdobeCode: {6A2E619B-E4AC-433B-A648-D458CE543A96}
    Effective AdobeCode for: {6A2E619B-E4AC-433B-A648-D458CE543A96} is {6A2E619B-E4AC-433B-A648-D458CE543A96}
    Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/{6A2E619B-E4AC-433B-A648-D458CE543A96}.db
    Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/{6A2E619B-E4AC-433B-A648-D458CE543A96}.db
    3] Sun Dec 25 21:34:19 2011  INFO
    Physical payload uninstall result:0
    0] Sun Dec 25 21:34:19 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{6A2E619B-E4AC-433B-A648-D458CE543A96}] took 1040 milliseconds (1.04 seconds) DTR = 5530.77 KBPS (5.40114 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 3.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 3.0.0.0
    Initializing the INSTALLDIR with PDB data for payload {007A2A28-D6A8-4D91-9A2B-568FF8052215}
    File Exists: /Library/Application Support/Adobe/Linguistics/5.0/Providers/Plugins2/WRLiloPlugin1.2.bundle/Contents/SharedSu pport/AMT/component.xml
    Located the INSTALLDIR for payload '{007A2A28-D6A8-4D91-9A2B-568FF8052215}' : '/Library/Application Support/Adobe/Linguistics/5.0/Providers/Plugins2/WRLiloPlugin1.2.bundle'
    Calling the custom action code for pre-remove for payload {007A2A28-D6A8-4D91-9A2B-568FF8052215}
    ::START TIMER:: [Payload Operation :{007A2A28-D6A8-4D91-9A2B-568FF8052215}]
    3] Sun Dec 25 21:34:19 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {60CB5C6D-5B99-45D3-BAB5-E7728182101E} modify request for AdobeCode: {007A2A28-D6A8-4D91-9A2B-568FF8052215}
    Effective AdobeCode for: {007A2A28-D6A8-4D91-9A2B-568FF8052215} is {007A2A28-D6A8-4D91-9A2B-568FF8052215}
    Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/{007A2A28-D6A8-4D91-9A2B-568FF8052215}.db
    Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/{007A2A28-D6A8-4D91-9A2B-568FF8052215}.db
    Physical payload uninstall result:0
    0] Sun Dec 25 21:34:20 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{007A2A28-D6A8-4D91-9A2B-568FF8052215}] took 1064 milliseconds (1.064 seconds) DTR = 9026.32 KBPS (8.81476 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 1.2.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 1.2.0.0
    0] Sun Dec 25 21:34:21 2011  INFO
    Initializing the INSTALLDIR with PDB data for payload {A44863BF-8DB8-4D22-88DB-5A02BE319840}
    File Exists: /Library/Application Support/Adobe/Linguistics/5.0/AMT/component.xml
    Located the INSTALLDIR for payload '{A44863BF-8DB8-4D22-88DB-5A02BE319840}' : '/Library/Application Support/Adobe/Linguistics/5.0'
    Calling the custom action code for pre-remove for payload {A44863BF-8DB8-4D22-88DB-5A02BE319840}
    ::START TIMER:: [Payload Operation :{A44863BF-8DB8-4D22-88DB-5A02BE319840}]
    3] Sun Dec 25 21:34:21 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {60CB5C6D-5B99-45D3-BAB5-E7728182101E} modify request for AdobeCode: {A44863BF-8DB8-4D22-88DB-5A02BE319840}
    Effective AdobeCode for: {A44863BF-8DB8-4D22-88DB-5A02BE319840} is {A44863BF-8DB8-4D22-88DB-5A02BE319840}
    Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/{A44863BF-8DB8-4D22-88DB-5A02BE319840}.db
    Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/{A44863BF-8DB8-4D22-88DB-5A02BE319840}.db
    Physical payload uninstall result:0
    0] Sun Dec 25 21:34:22 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{A44863BF-8DB8-4D22-88DB-5A02BE319840}] took 1053 milliseconds (1.053 seconds) DTR = 37033.2 KBPS (36.1653 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5 5.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5 5.0.0.0
    Initializing the INSTALLDIR with PDB data for payload {52411D2C-81DD-442F-81C7-D867F6D73491}
    Located the INSTALLDIR for payload '{52411D2C-81DD-442F-81C7-D867F6D73491}' : '/Applications'
    Calling the custom action code for pre-remove for payload {52411D2C-81DD-442F-81C7-D867F6D73491}
    ::START TIMER:: [Payload Operation :{52411D2C-81DD-442F-81C7-D867F6D73491}]
    3] Sun Dec 25 21:34:22 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {60CB5C6D-5B99-45D3-BAB5-E7728182101E} modify request for AdobeCode: {52411D2C-81DD-442F-81C7-D867F6D73491}
    Effective AdobeCode for: {52411D2C-81DD-442F-81C7-D867F6D73491} is {52411D2C-81DD-442F-81C7-D867F6D73491}
    Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/{52411D2C-81DD-442F-81C7-D867F6D73491}.db
    Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/{52411D2C-81DD-442F-81C7-D867F6D73491}.db
    Physical payload uninstall result:0
    0] Sun Dec 25 21:34:23 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{52411D2C-81DD-442F-81C7-D867F6D73491}] took 1052 milliseconds (1.052 seconds) DTR = 29209.1 KBPS (28.5245 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {52411D2C-81DD-442F-81C7-D867F6D73491} Photoshop Camera Raw for Elements 10 6.4.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {52411D2C-81DD-442F-81C7-D867F6D73491} Photoshop Camera Raw for Elements 10 6.4.0.0
    Initializing the INSTALLDIR with PDB data for payload {28B74F2E-2E70-4B44-A581-0C19F62A5D6E}
    File Exists: /Applications/Adobe Elements 10 Organizer.app/Contents/Resources/AMT/application.xml
    Located the INSTALLDIR for payload '{28B74F2E-2E70-4B44-A581-0C19F62A5D6E}' : '/Applications'
    Calling the custom action code for pre-remove for payload {BC5880C9-E055-4E57-826A-749E79C498C2}
    ::START TIMER:: [Payload Operation :{BC5880C9-E055-4E57-826A-749E79C498C2}]
    3] Sun Dec 25 21:34:23 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {60CB5C6D-5B99-45D3-BAB5-E7728182101E} modify request for AdobeCode: {BC5880C9-E055-4E57-826A-749E79C498C2}
    Effective AdobeCode for: {BC5880C9-E055-4E57-826A-749E79C498C2} is {BC5880C9-E055-4E57-826A-749E79C498C2}
    Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/{BC5880C9-E055-4E57-826A-749E79C498C2}.db
    3] Sun Dec 25 21:34:24 2011  INFO
    Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/{BC5880C9-E055-4E57-826A-749E79C498C2}.db
    Physical payload uninstall result:0
    0] Sun Dec 25 21:34:24 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{BC5880C9-E055-4E57-826A-749E79C498C2}] took 1051 milliseconds (1.051 seconds) DTR = 10215 KBPS (9.97562 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {BC5880C9-E055-4E57-826A-749E79C498C2} Elements 10 Organizer_AdobeElements10Organizer_en_US 10.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {BC5880C9-E055-4E57-826A-749E79C498C2} Elements 10 Organizer_AdobeElements10Organizer_en_US 10.0.0.0
    Initializing the INSTALLDIR with PDB data for payload {28B74F2E-2E70-4B44-A581-0C19F62A5D6E}
    File Exists: /Applications/Adobe Elements 10 Organizer.app/Contents/Resources/AMT/application.xml
    Located the INSTALLDIR for payload '{28B74F2E-2E70-4B44-A581-0C19F62A5D6E}' : '/Applications'
    Calling the custom action code for pre-remove for payload {28B74F2E-2E70-4B44-A581-0C19F62A5D6E}
    ::START TIMER:: [Pre payload :{28B74F2E-2E70-4B44-A581-0C19F62A5D6E}]
    In PrePayloadUninstallProc
    CUSTOM ACTION: Opening PDB Session
    CUSTOM ACTION: Uninstall ElementsOrganizerSyncAgent | Supressing error messages
    CUSTOM ACTION: Getting List of Installed Payloads.
    CUSTOM ACTION: Iterate through Installed Payload IDs
    CUSTOM ACTION: Entry for Elements 10 Organizer Found, looking up installdir
    /Applications
    CUSTOM ACTION: Closing syncengine
    "/Applications/Adobe Elements 10 Organizer.app/Contents/MacOS/ElementsOrganizerSyncAgent.app/Contents/MacOS/ElementsOrgani zerSyncAgent" -uninstall -silent
    0] Sun Dec 25 21:34:28 2011  INFO
    ZERO RETURNED
    CUSTOM ACTION: Closing AutoAnalyzer
    "/Applications/Adobe Elements 10 Organizer.app/Contents/ElementsAutoAnalyzer.app/Contents/MacOS/ElementsAutoAnalyzer" -uninstall
    0] Sun Dec 25 21:34:33 2011  INFO
    CUSTOM ACTION: Closing PDB Session
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{28B74F2E-2E70-4B44-A581-0C19F62A5D6E}] took 8383 milliseconds (8.383 seconds) DTR = 3.81725 KBPS (0.00372778 MBPS)
    ::START TIMER:: [Payload Operation :{28B74F2E-2E70-4B44-A581-0C19F62A5D6E}]
    3] Sun Dec 25 21:34:33 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {60CB5C6D-5B99-45D3-BAB5-E7728182101E} modify request for AdobeCode: {28B74F2E-2E70-4B44-A581-0C19F62A5D6E}
    Effective AdobeCode for: {28B74F2E-2E70-4B44-A581-0C19F62A5D6E} is {28B74F2E-2E70-4B44-A581-0C19F62A5D6E}
    3] Sun Dec 25 21:34:34 2011  INFO
    Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/{28B74F2E-2E70-4B44-A581-0C19F62A5D6E}.db
    3] Sun Dec 25 21:34:48 2011  INFO
    Evaluating condition# 1(Seq 8159)
    Condition failed(Seq 8159)
    Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/{28B74F2E-2E70-4B44-A581-0C19F62A5D6E}.db
    3] Sun Dec 25 21:34:57 2011  INFO
    Physical payload uninstall result:0
    0] Sun Dec 25 21:34:58 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{28B74F2E-2E70-4B44-A581-0C19F62A5D6E}] took 25038 milliseconds (25.038 seconds) DTR = 36418.4 KBPS (35.5648 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {28B74F2E-2E70-4B44-A581-0C19F62A5D6E} Elements 10 Organizer 10.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {28B74F2E-2E70-4B44-A581-0C19F62A5D6E} Elements 10 Organizer 10.0.0.0
    ::START TIMER:: [Post payload :{28B74F2E-2E70-4B44-A581-0C19F62A5D6E}]
    In PostPayloadUninstallProc
    Custom action return code: 0
    :: END TIMER :: [Post payload :{28B74F2E-2E70-4B44-A581-0C19F62A5D6E}] took 0 milliseconds (0 seconds)
    Initializing the INSTALLDIR with PDB data for payload {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3}
    Located the INSTALLDIR for payload '{0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3}' : '/Library/Application Support/Adobe/APE/3.101'
    Calling the custom action code for pre-remove for payload {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3}
    ::START TIMER:: [Payload Operation :{0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3}]
    3] Sun Dec 25 21:34:59 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {60CB5C6D-5B99-45D3-BAB5-E7728182101E} modify request for AdobeCode: {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3}
    Effective AdobeCode for: {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3} is {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3}
    Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/{0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3}.db
    Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/{0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3}.db
    Physical payload uninstall result:0
    0] Sun Dec 25 21:35:00 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3}] took 1242 milliseconds (1.242 seconds) DTR = 56586.2 KBPS (55.2599 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3} Adobe Player for Embedding 3.1 3.101.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3} Adobe Player for Embedding 3.1 3.101.0.0
    Initializing the INSTALLDIR with PDB data for payload {3F023875-4A52-4605-9DB6-A88D4A813E8D}
    Located the INSTALLDIR for payload '{3F023875-4A52-4605-9DB6-A88D4A813E8D}' : '/Applications'
    Calling the custom action code for pre-remove for payload {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7}
    ::START TIMER:: [Payload Operation :{FEA75AFB-4905-43BB-B1D5-5B44D681BFE7}]
    3] Sun Dec 25 21:35:00 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {60CB5C6D-5B99-45D3-BAB5-E7728182101E} modify request for AdobeCode: {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7}
    Effective AdobeCode for: {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7} is {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7}
    CustomizedPatch property not found in database
    Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/{FEA75AFB-4905-43BB-B1D5-5B44D681BFE7}.db
    3] Sun Dec 25 21:35:07 2011  INFO
    Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/{FEA75AFB-4905-43BB-B1D5-5B44D681BFE7}.db
    3] Sun Dec 25 21:35:08 2011  INFO
    Physical payload uninstall result:0
    0] Sun Dec 25 21:35:08 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{FEA75AFB-4905-43BB-B1D5-5B44D681BFE7}] took 8094 milliseconds (8.094 seconds) DTR = 37943.2 KBPS (37.0539 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7} Camera Profiles Installer_6.4_AdobeCameraRawProfile6.0All 6.4.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7} Camera Profiles Installer_6.4_AdobeCameraRawProfile6.0All 6.4.0.0
    Initializing the INSTALLDIR with PDB data for payload {3F023875-4A52-4605-9DB6-A88D4A813E8D}
    Located the INSTALLDIR for payload '{3F023875-4A52-4605-9DB6-A88D4A813E8D}' : '/Applications'
    Calling the custom action code for pre-remove for payload {3F023875-4A52-4605-9DB6-A88D4A813E8D}
    ::START TIMER:: [Payload Operation :{3F023875-4A52-4605-9DB6-A88D4A813E8D}]
    3] Sun Dec 25 21:35:08 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {60CB5C6D-5B99-45D3-BAB5-E7728182101E} modify request for AdobeCode: {3F023875-4A52-4605-9DB6-A88D4A813E8D}
    Effective AdobeCode for: {3F023875-4A52-4605-9DB6-A88D4A813E8D} is {3F023875-4A52-4605-9DB6-A88D4A813E8D}
    Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/{3F023875-4A52-4605-9DB6-A88D4A813E8D}.db
    3] Sun Dec 25 21:35:09 2011  INFO
    Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/{3F023875-4A52-4605-9DB6-A88D4A813E8D}.db
    Physical payload uninstall result:0
    0] Sun Dec 25 21:35:10 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{3F023875-4A52-4605-9DB6-A88D4A813E8D}] took 2035 milliseconds (2.035 seconds) DTR = 81796.6 KBPS (79.8795 MBPS)
    User specified overrideFile:
    0] Sun Dec 25 21:35:11 2011  INFO
    Successfully updated the csu inventory for {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0
    No operation.  We're done:
    Updating driver data - Action: Remove driver entry
    Updating driver data successful. Driver entry was removed. ARP estimated size 0KB
    0] Sun Dec 25 21:35:14 2011  INFO
    Total components installed: 0
    Total components repaired: 0
    Successfully removed 15 components:
    - Adobe WinSoft Linguistics Plugin CS5
    - Adobe Player for Embedding 3.1
    - Elements Inspiration Browser
    - Elements 10 Organizer
    - Camera Profiles Installer
    - Photoshop Camera Raw for Elements 10
    - Adobe Photoshop Elements 10
    - Adobe XMP Panels CS5
    - AdobeTypeSupport CS5
    - Adobe Linguistics CS5
    - Elements 10 Organizer_AdobeElements10Organizer_en_US
    - AdobeCMaps CS5
    - Adobe Photoshop Elements 10_AdobePhotoshopElements10_en_US
    - AdobeHelp
    - Camera Profiles Installer_6.4_AdobeCameraRawProfile6.0All
    Call PostSession Custom Hook
    ::START TIMER:: [Post session :{60CB5C6D-5B99-45D3-BAB5-E7728182101E}]
    In UninstallSessionCloseProc
    Custom action return code: 0
    :: END TIMER :: [Post session :{60CB5C6D-5B99-45D3-BAB5-E7728182101E}] took 0 milliseconds (0 seconds)
    :: END TIMER :: [Total Timer] took 109722 milliseconds (109.722 seconds) DTR = 31164 KBPS (30.4336 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 0 error(s), 0 warning(s)
    Exit Code: 0 - No error.
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=

    MarwanSati your install log appears to be free of errors.  I would recommend you post your inquiry about accessing this feature within the Photoshop Elements forum.

  • [SOLVED] Intel Fortran Compiler v11.1.072 installation failed

    hi everyone!
    i have some problems with the intel fortran installation. i try to install both ia32 and intel64 version, but without success. i launch from the shell the file "install.sh" and i follow the instructions on the screen, it says that i have missing optional pre-requisites, but also in other linux distribution such as ubuntu or debian, i always skip missing optional pre-requisites and go on. so i do that, but in the step no. 6 when the installation begins, there are a lot of errors:
    Installing Intel(R) Fortran Compiler for applications running on IA-32
    component...
    Intel(R) Fortran Compiler for applications running on IA-32 component
    installation failed.
    Installing Intel(R) Math Kernel Library for applications running on IA-32
    component...
    Intel(R) Math Kernel Library for applications running on IA-32 component
    installation failed.
    what happens?
    thanks all for your replies, i'm here for other infos if you want.
    Last edited by zeruel85 (2010-06-28 07:56:26)

    ok, i solved the problem, but with another ifort version. first of all, install these required packages:
    sudo pacman -S glibc libstdc++5
    then download from aur the package "intel-compilers-common 11.0.074-2" and extract it. now:
    cd /PATH/intel-compilers-common
    makepkg
    sudo pacman -U intel-compilers-common-11.0.074-2-x86_64.pkg.tar.xz
    always from aur, download "ifort" and extract it. before compiling it, copy the file "l_cprof_p_11.0.074_intel64.tgz" from the "intel-compilers-common" folder into the "ifort" folder. now we must have the license file. we can get it from the official intel site:
    https://registrationcenter.intel.com/Re … NCOM&lang=
    just insert your email, select your country and click "Continue". we'll receive an email with the license key attached. now copy the file into the "ifort" folder. open a shell and do this:
    cd /PATH/ifort
    md5sum LICENSE.lic
    where "LICENSE.lic" is the name of your license key. after that, we have to modify the "PKGBUILD" file, always into the "ifort" folder. in line 19, write the correct license file name. in line 24 write the correct md5sum result. save and exit. now we can compile:
    cd /PATH/ifort
    makepkg
    sudo pacman -U ifort-11.0.074-2-x86_64.pkg.tar.xz
    now we have ifort installed! just logout/login to complete the installation! then type:
    ifort -help
    to verify if ifort was correctly installed. if the ifort guide appears, well done!

  • Problem Compiling JAR Loaded in Oracle 10g

    I have loaded a JAR file into my Oracle 10g database using the following command-line:
    Loadjava -force -oci8 -order -resolve -schema "MYSCHEMA" -user "USER/PASSWORD@HOST" -verbose "JarFile.jar"
    Unfortunately, after loading the JAR contents, the resolution of the individual files never completes. The process runs for >24 hours. Is there a better way to complete this task? I have even tried compiling portions of the JAR file via Toad, but it appears the recursive nature of the dependencies causes the process to essentially hang.
    Unless the JAR files compiles successfully, I can load my Java source code but my resulting Java stored procedures cannot compile because of my import references to the JAR file. My java code was compiled for JDK1.3 using JDeveloper 10.1.3.0.0 to eliminate conflicts with the Oracle JDK (JDK1.4). Is there a setting or a flag which would allow compilation of my source code without compiling the JAR file to utilize the Oracle JIT compiler?
    Any assistance/suggestions would be greatly appreciated. Thank you.

    Avi,
    Thank you for the suggestion. As a result, I found how to load my JAR (iText JAR file) file without decompressing using loadjava -jarasresource MYJAR.jar but now the issue of referrencing this resource within my Java class so that it will compile once loaded into the database. Here is sample of my objects:
    Oracle User-Defined Type:
    CREATE OR REPLACE TYPE schema."BLOB_ARRAY" as varray(20) of BLOB
    Java Source:
    CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED schema."JavaSource" AS
    import com.lowagie.text.Document;
    import com.lowagie.text.pdf.PdfCopy;
    import java.io.ByteArrayOutputStream;
    import java.io.*;
    public class JavaSource{
    public static Document doc;
    public static ByteArrayOutputStream baos = new ByteArrayOutputStream();
    public JavaSource(){}
    public static PdfCopy getDoc(oracle.sql.BLOB[] docs){
    PdfCopy writer = new PdfCopy(doc, baos);
    return writer;
    LOADJAVA:
    loadjava -force -schema "SCHEMA" -user "user/password@sid" -verbose -resolve -unresolvedok -genmissing -jarasresource -genmisingjar "C:\JavaSource.java" "C:\iText.jar"
    Oracle Package:
    CREATE OR REPLACE PACKAGE schema."JavaSource" AS
    FUNCTION getDoc(param1 schema.BLOB_ARRAY) return PdfCopy AS Language Java Name 'JavaSource.getDoc(oracle.sql.BLOB[]) return PdfCopy';
    Oracle Function to query Database populating User-Defined type argument:
    CREATE OR REPLACE FUNCTION schema.TestRun() RETURN schema.BLOB_ARRAY AS
    tmpArray schema.BLOB_ARRAY := null;
    BEGIN
    tmpArray schema.BLOB_ARRAY := BLOB_ARRAY();
    cursor c_blob is select blob_content from schema.doc_table;
    BEGIN
    for blob_rec in c_blob loop
    tmpArray.extend;
    tmpArray(tmpArray.count) := blob_rec.blob_content;
    end loop;
    END;
    return tmpArray;
    END;
    I cannot get my class JavaSource to compile as VALID and therefore the Oracle Function schema.TestRun does not execute properly. Am I missing something? Assistance is greatly appreciated. Thank you.

  • Problem using two function based indexes at once!

    Hello Oracle!
    I've got problems using two function based indexes on geometries at once.
    The problem occures, when I use a spatial join between two geometries both using function based indexes.
    The test case:
    CREATE TABLE quad (centroid NUMBER);
    CREATE TABLE points (no NUMBER, point MDSYS.SDO_GEOMETRY);
    CREATE OR REPLACE FUNCTION getQuad (centroid NUMBER) RETURN MDSYS.SDO_GEOMETRY DETERMINISTIC IS
    BEGIN
    RETURN MDSYS.SDO_GEOMETRY(2003, NULL, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1,1003,1),MDSYS.SDO_ORDINATE_ARRAY(centroid-5,centroid-5,centroid+5,centroid-5,centroid+5,centroid+5,centroid-5,centroid+5,centroid-5,centroid-5));
    END;
    INSERT INTO USER_SDO_GEOM_METADATA VALUES('quad','tiedge.getQuad(centroid)',MDSYS.SDO_DIM_ARRAY(MDSYS.SDO_DIM_ELEMENT('X', -100, 100, .0000001), MDSYS.SDO_DIM_ELEMENT('Y', -100, 100, .0000001)),NULL);
    CREATE INDEX quad_idx on quad(getQuad(centroid)) INDEXTYPE IS MDSYS.SPATIAL_INDEX;
    INSERT INTO quad VALUES (0);
    INSERT INTO quad VALUES (5);
    INSERT INTO quad VALUES (10);
    INSERT INTO points VALUES (1, MDSYS.SDO_GEOMETRY(1001,NULL,NULL,MDSYS.SDO_ELEM_INFO_ARRAY(1,1,1),MDSYS.SDO_ORDINATE_ARRAY(4,4)));
    ALTER SESSION SET QUERY_REWRITE_INTEGRITY=TRUSTED;
    ALTER SESSION SET QUERY_REWRITE_ENA[i]Long postings are being truncated to ~1 kB at this time.

    hi there,
    For a better audience for this question, I'd look at the database forum.
    guys on that will be a lot more familiar with FBIs
    thanks
    Barry

  • Problem compiling module with named package

    Hi,
    I'm relatively new to Flex and only recently came upon Flex modules. I am trying to use an interface between the modules and my main application, both to enforce compatibility and to ease data access from the modules to the main application (i.e., the preferred approach on Adobe's module implementation docs). I am, however, running into a problem when trying to compile the module (using Ant) due to its implementation of an interface in a named package. It seems I have a choice between two compilation errors:
    1) an error referring to difference between the named package structure and the unnamed package for my module
    2) an interface not found error when I specify the full package name for the interface in the module "implements" attribute
    #2 seemed more promising as I figured this was just some sort of source path error. After adjusting the source path many times, though, I have been unable to get past the interface not found error. I even tried to compile the interface into a SWC and then place the SWC on the library path.
    Overall, the structure of the code is very simple:
    com.example.workers.IModule
    WorkerModule1
    If I go ahead and make IModule part of an unnamed package, I can get past problem #1 (avoid #2) and get it to compile, but then I do not have the ability to cast the child of the loaded module (ModuleLoader.child) to the interface in my main application to insure that it is of the right type (though I can hack around this by checking if the child has a certain property or function).
    Anyway, I am guessing that there might be something simple that I am missing here--i.e., some way to get the named package onto the path for my mxmlc-based compilation of the module or some way to add the named package structure to my module (adding an xmlns did not accomplish anything). In any case, any help here would be greatly appreciated.
    --jonathan

    You definitely have the wrong version. You want 2.0.1 (we
    haven't made a 2.1). The download on the Flex page is always the
    most current version, 2.0.1 in this case. Try it again.

  • Why does Discoverer put my custom function into GROUP BY

    To make things clear with simple example:
    I have 10 id's from people (people.id) and sum function on their salary [sum(people.salary)] during a period of time that i set in my parameters.
    The sql looks something like this:
    SELECT PEOPLE.ID
    ,SUM(PEOPLE.SALARY)
    FROM FRS_PEOPLE
    WHERE [MY CONDITIONS]
    GROUP BY PEOPLE.ID
    I registered a function that uses people.id, and some other parameters to calculate something for each people.id!
    I made a calculation:
    MY_FUNCTION(people.id,'xxx','yyy')
    ,so my sql looks like this now:
    SELECT PEOPLE.ID
    ,SUM(PEOPLE.SALARY)
    ,MY_FUNCTION(people.id,':xxx',':yyy')
    FROM FRS_PEOPLE
    WHERE [MY CONDITIONS]
    GROUP BY PEOPLE.ID,MY_FUNCTION(people.id,':xxx',':yyy')
    It runs but never finishes....?!
    When i run my sql in sqlplus i do not put my function into group by, but discoverer does so, despite it already has people.id item in GROUP BY!
    And if i put instead of people.id an actual id it works correctly and does not put my function into group by!
    The sql i am looking for and works correctly is:
    SELECT PEOPLE.ID
    ,SUM(PEOPLE.SALARY)
    ,MY_FUNCTION(people.id,'xxx','yyy')
    FROM FRS_PEOPLE
    WHERE [MY CONDITIONS]
    GROUP BY PEOPLE.ID
    Please someone help!
    My select clause is much more complicated, with many outer joins so i made the above up just to explain to you what my problem is!
    I hope i made my self clear!
    Help would be very appreciated.

    Hi,
    I think there is a problem with your function. That fact that the report completes when an actual id is used must not when a people.id is used suggests that it works when the function is called once with an actual id but not when it is called many times with a people.id.
    If the function is doing complex lookups and calculations to obtain a salary for each people.id then often this type of report will run quicker with the salary calculation is brought into the report SQL using joins etc.
    Tracing the Discoverer session running the report will show you all the SQL processed by the database and the execution plans used. It will show you how often the function is being called and what SQL is being run by the function.
    Rod West

  • Setting default value through a database function?

    I have a form to create and display records. When a new record is created, a certain field has to be filled out with a value generated by a database function. When the form is used to display an existing record, off course this function does not have to fill out this field.
    I tried to work with a computation with a query that calls the function, but I have problems assigning it to the item. I fiddled around with the Source option (Source used) with the result that either the field is always filled out (when I choose for "Only when current value in session state is null") by the function, or never (when I choose the other option).
    What am I doing wrong here? What is the best method to have a default value filled out in this form by a database function? Extra info: the result of this database function is based on the place in the application where the form is called. Sometimes the result is something like "ABC-123456789", sometimes it has to be something like "T-123456789".

    Hi ,
    is this you are expecting?
    default value
    type = function body return
    select seqname.nextval into :p1_id from dual
    select count(*) into :p2_total from emp;
    this will fill the form field with seq number.
    Thanks
    Mark Wyatt
    Edited by: Websoft on Oct 14, 2009 12:45 AM

  • Problems compiling at91 driver for samutils-0.2.1

    Hello All!
    I'm having problems compiling the usb driver for sam7 tools. I am receiving the following errors:
    make -C /lib/modules/2.6.39-ARCH/build SUBDIRS=/home/bailey/Source/sam7utils-0.2.1/driver modules
    make[1]: Entering directory `/usr/src/linux-2.6.39-ARCH'
    CC [M] /home/bailey/Source/sam7utils-0.2.1/driver/at91.o
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c: In function âat91_write_bulk_callbackâ:
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c:154:2: error: implicit declaration of function âusb_buffer_freeâ [-Werror=implicit-function-declaration]
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c:140:19: warning: variable âdevâ set but not used [-Wunused-but-set-variable]
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c: In function âat91_writeâ:
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c:178:2: error: implicit declaration of function âusb_buffer_allocâ [-Werror=implicit-function-declaration]
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c:178:6: warning: assignment makes pointer from integer without a cast [enabled by default]
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c:192:6: warning: passing argument 6 of âusb_fill_bulk_urbâ from incompatible pointer type [enabled by default]
    include/linux/usb.h:1266:20: note: expected âusb_complete_tâ but argument is of type âvoid (*)(struct urb *, struct pt_regs *)â
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c: In function âat91_probeâ:
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c:305:2: error: implicit declaration of function âinfoâ [-Werror=implicit-function-declaration]
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c: In function âat91_disconnectâ:
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c:320:2: error: implicit declaration of function âlock_kernelâ [-Werror=implicit-function-declaration]
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c:328:2: error: implicit declaration of function âunlock_kernelâ [-Werror=implicit-function-declaration]
    cc1: some warnings being treated as errors
    make[2]: *** [/home/bailey/Source/sam7utils-0.2.1/driver/at91.o] Error 1
    make[1]: *** [_module_/home/bailey/Source/sam7utils-0.2.1/driver] Error 2
    make[1]: Leaving directory `/usr/src/linux-2.6.39-ARCH'
    make: *** [default] Error 2
    output of uname -a
    2.6.39-ARCH #1 SMP PREEMPT Mon Jun 27 22:01:13 CEST 2011 i686 Intel(R) Pentium(R) 4 CPU 1.50GHz GenuineIntel GNU/Linux
    I am running gcc 4.6.1-1 and have installed kernel26headers. If there is any info I'm missing plz let me know.
    Thanks for your help in advance

    Thank you for the reply, I noticed that the post below (its for Ubuntu) shows the gcc version to be 4.0.3
    [link]http://www.makingthings.com/documentati … -sam7utils[/link]
    I poked around the Makefile in /usr/src/linux-2.6.39 and got rid of "-Wall" and "-Wno-implicit-function-declaration"
    it compiled with the following warnings:
    make[1]: Entering directory `/usr/src/linux-2.6.39-ARCH'
    Building modules, stage 2.
    MODPOST 1 modules
    WARNING: "info" [/home/bailey/Source/sam7utils-0.2.1/driver/at91.ko] undefined!
    WARNING: "unlock_kernel" [/home/bailey/Source/sam7utils-0.2.1/driver/at91.ko] undefined!
    WARNING: "lock_kernel" [/home/bailey/Source/sam7utils-0.2.1/driver/at91.ko] undefined!
    WARNING: "usb_buffer_alloc" [/home/bailey/Source/sam7utils-0.2.1/driver/at91.ko] undefined!
    WARNING: "usb_buffer_free" [/home/bailey/Source/sam7utils-0.2.1/driver/at91.ko] undefined!
    CC /home/bailey/Source/sam7utils-0.2.1/driver/at91.mod.o
    LD [M] /home/bailey/Source/sam7utils-0.2.1/driver/at91.ko
    make[1]: Leaving directory `/usr/src/linux-2.6.39-ARCH'
    but when I tried to install, the output was
    insmod: error inserting 'at91.ko': -1 Unknown symbol in module
    Unfortunately, I tried grabbing the package from the AUR, but I ran into the same issues. Seems the only common factor in this process is gcc.
    Thanks for the help

  • New JNDI name created for each drag and drop of database table into table

    Hi All,
    I'm using Netbeans 5.5 with Visual Web Pack with Mysql as backend. Whenever I drag and drop a database table into table component it creates new JNDI (data source) name for each table. I want to use single JNDI name for all tables. If I change the JNDI name to default name then the design disappears and shows error . Is there any option to set the JNDI name unique for all tables?
    Thanks in advance.

    Hi again,
    Well I've tried using the MouseListener / MouseMotionListener approach but it doesn't quite seem to work, although it does get the events correctly. I think the reason is that it doesn't interact correctly with the Java DnD machinery which is something that V.V hinted at. It's something that I may need to look into if / when I have more time available.
    I have to say though that I haven't had any problems with scrollbars - we're making fairly heavy use of large tables and if you drag over a table with a scroll bar and move to the top or bottom then it scrolls as you would expect and allows you to drop the data where you like. For this situation I've used pretty much the same approach as for the toy example above except that I've implemented separate source and destination TransferHandlers (the source table is read-only, and it really doesn't make sense to allow people to drag from the destination table so I've essentially split the functionality of the example handler down the middle).
    I'm not actually particularly in favour of messing too much with the mechanics of DnD, more because of lack of time than anything else. Guess I'll just have to put up with this for the moment. Doesn't help that DnD is so poorly documented by Sun.
    Thanks for all your help.
    Bart

Maybe you are looking for

  • Why does while loop pause during operation

    Hi everyone, I have written the attached code which will eventually be a part of a bigger program. The program is intended to log some test value, in this case just the date and time  to a csv file  when a button is pressed (log in WHITE, loop1).  Lo

  • Playing a third-party audiofile through iTunes

    I downloaded an audiobook file from iAmplify and thought it would be a breeze to start listening, but I'm missing something. Can't get through to their tech support either! (Note to self: don't order from them again!) The downloaded file is on my des

  • Problem after downloading mountain lion

    Ihave just downloaded mountain lion from the app store to my iMac which was running macOSX Lion. When I restarted the computer the Lion symbol comes up and after putting in my password the toolbar appears but then I am asked wheter I want to install

  • If i store my photos in iphoto but delete it from my computer will my pictures still be stored?

    if i store my photos in iphoto but delete it from my computer will my pictures still be stored? (it's not in iphoto photo stream)

  • "Problem accessing excel" Error

    Hi All, I have just downloaded the trial version for Xcelsius Engage 2008. Whenver I try to launch it, I am getting an error "Problem accessing excel: exiting". I am using windows XP and excel 2007. I have checked in the windows task manager and ther