create the cookie using pl sql and retrieve values

Hello
I am currently in an urgent need to create cookies to BE oracle and also read the values of the. I tried to use code below. his display error
code
DECLARE
ourcookie owa_cookie.cookie;
BEGIN
ourCookie: = owa_cookie.get('SESSION2');
END;
/

BEGIN

owa_util.mime_header ("text/html", FALSE ");

-Create a cookie
(owa_cookie). Send
name = > 'SESSION. "
value = > '344444',.
expires = > sysdate + 2,.
path = > ' / ');


owa_util.http_header_close;

EXCEPTION
WHEN OTHER THEN NULL;

END;


But when I'm reading the cookie that I created, I am unable to exercise

-It's for reading cookies
DECLARE
ourcookie owa_cookie.cookie;
BEGIN
ourCookie: = owa_cookie.get('SESSION2');
END;
/

error:
ORA-06502: PL/SQL: digital error or value
ORA-06512: at "SYS." OWA_UTIL", line 325
ORA-06512: at "SYS." OWA_COOKIE', line 36
ORA-06512: at "SYS." OWA_COOKIE', line 140
ORA-06512: at line 4 level

842106 wrote:

Now according to the guidelines of your comment, I created a simple OWA environment and run the code below. Now I get not found error of data

ORA-01403: no data found
ORA-06512: at line 23

The error is caused the cookie is not found.

The following is not valid - as there is no browser to receive the cookie:

(owa_cookie). Send
name-online "SESSION1"
value-online '344433',
expires => it sysdate + 2,.
=> path ' / '.
);

The following code must set the CGI environment - and add the cookie to the environment for the following code to read (as shown in the code example that I posted in the 2nd thread I talked to you):

/ * Initialization * /.
OWA.cgi_var_name (1): = 'something ';
OWA.cgi_var_val (1): = "other";
OWA.init_cgi_env (1, owa.cgi_var_name, owa.cgi_var_val);
/ * End initialization * /.

Of course, the following code will fail with a NO_DATA_FOUND there is no cookie.

ourCookie: = owa_cookie.get('SESSION1');
v_session: = ourCookie.vals (1);

So it is not possible to create a true cookie and retrieve the value of CGI environment or apex not?

Yes. But the web browser is non-existent. Then, you need create the CGI environment, which would have created the web server, before you call your allowed web code PL/SQL.

In other words, if your initialization code of CGI should pretend that it is the web server, he received the call from web browser, it received the cookie (s) from the web browser - and now she needs to create the CGI (including cookies) environment for this web browser, and then call the procedure PL/SQL referenced by the browser in the URL, he argued.

Tags: Database

Similar Questions

  • drop and re-create the table using dynamic sql

    The following procedure should drop the table and re-create it. Currently, I get the dbms_output of the query. If I run the query only, it works well. but through the procedure, it does not work. Please help me

    PROCEdure emp_backup is
    sql_txt varchar2(10000);
    begin
         begin
         EXECUTE IMMEDIATE 'drop table emp_backup ' ;
         exception
         when others then
         null;
    
         sql_txt:= 'CREATE TABLE emp_backup as ' ||
                     'select * from emp  '||
                     'where dep_no=10 ' ;
         dbms_output.put_line(sql_txt);
         EXECUTE IMMEDIATE sql_txt;
    Exception
    when others then
    Null;
    
    End;

    Daniel wrote:
    I'm getting following error ORA-01031: insufficient privileges

    What is the command to grant privileges to this

    GRANT CREATE TABLE TO <>
    

    Detaching Frank, however, and echoing my previous comment, let them down and to re-create the tables makes no sense. It is logical to truncate a table if you test a load. If you build a data warehouse, it makes sense to delete and re-create a partition if you rerun a load for a particular date and that you have daily partitions. Deletion and recreation of a table in a stored procedure is not a reasonable way to test a system (nor is there a reasonable way to approach change control issues that will inevitably produce when you need to change the structure of a table).

    Justin

  • How to create the report using the procedure.

    Hi all

    I want to create the report in the apex. But I don't have a sql code. I have a single procedure. Is it possible to create the report using this procedure in the apex.

    CREATE OR REPLACE PROCEDURE headcsv_prc2

    AS

    CURSOR cr_header

    IS

    SELECT ood.organization_code, fm.formula_no AS "FORMULA_NAME."

    FM.formula_vers AS "FORMULA_VERSION."

    FM.formula_desc1 AS "FORMULA_DESC."

    DECODE (fm.formula_status,

    100, 'new ',.

    400, "approved for use in the laboratory."

    700, "allow the general."

    800, "We Hold."

    900, "frozen."

    1000, "obsolete/archived.

    ) AS "FORMULA_STATUS."

    DECODE (fd.line_type, '1', msib.segment1).

    DECODE (fd.line_type, '-1', msib.segment1 ') ingrediant.

    DECODE (fd.line_type, '2', msib.segment1) AS "BY_PRODUCT."

    DECODE (by_product_type,

    "W', 'waste."

    "R',"rework. "

    "Y', 'Yield."

    The of ', 'Sample. "

    NULL VALUE

    ) AS "BY_PRODUCT_TYPE".

    Of org_organization_definitions ood,.

    fm_form_mst fm,

    fm_matl_dtl fd,

    mtl_system_items_b msib

    WHERE ood.organization_id = fm.owner_organization_id

    AND fm.owner_organization_id = msib.organization_id

    AND msib.organization_id = fd.organization_id

    AND fd.organization_id = ood.organization_id

    AND fm.formula_id = fd.formula_id

    AND msib.inventory_item_id = fd.inventory_item_id

    - and fm. FORMULA_NO like '% THE % '.

    AND fd.line_type IN ('1 ', ' 2', '-1' ")

    Ood.organization_code GROUP,

    FM.formula_no,

    FM.formula_vers,

    FM.formula_desc1,

    FM.formula_status,

    FD.line_type,

    MSIB. Segment1,

    by_product_type

    ORDER BY fm.formula_no, fm.formula_vers;

    BEGIN

    Dbms_output.put_line (INITCAP ('the ORGANIZATION CODE')

    || ','

    || INITCAP ('NAME FORMULA')

    || ','

    || INITCAP ('FORMULA VERSION')

    || ','

    || INITCAP ('FORMULA DESC')

    || ','

    || INITCAP ('FORMULA STATUS')

    || ','

    || INITCAP ('PRODUCT')

    || ','

    || INITCAP ('INGREDIANT")

    || ','

    || INITCAP ("PER PRODUCT")

    || ','

    || INITCAP ('PER TYPE OF PRODUCT")

    );

    FOR ch IN cr_header

    LOOP

    Dbms_output.put_line (ch.organization_code

    || ','

    || ch.formula_name

    || ','

    || ch.formula_version

    || ','

    || '"'

    || ch.formula_desc

    || '"'

    || ','

    || ch.formula_status

    || ','

    || ch. Product

    || ','

    || ch.ingrediant

    || ','

    || ch.by_product

    || ','

    || ch.by_product_type

    );

    END LOOP;

    EXCEPTION

    WHILE OTHERS

    THEN

    Dbms_output.put_line (' No error: ' |) SQLCODE. "Error Msg: ' '.

    || SQLERRM

    );

    END;

    EXEC HeadCSV_Prc2



    Thank you

    Rambeau

    Hi Christian,

    In addition to the fact that the Oracle database has an internal Java engine and it would be possible for Apex call a Java stored procedure, the Apex really has nothing to do with Java. To create a report, you discovered, you specify a SQL query. In certain circumstances, you can embed a query in a PL/SQL function, but the incorporation of an arbitrary Java application and waiting for it to be called from Apex for a kind of security is there with the fairies.

    I recommend you research the Apex and then enter your so-called "higher authorities" how things work.

    Concerning

    André

  • Trying to create the table using Clause any Union with Select multiple stmts

    The motion seeks to get the substring of the value to for example.
    If the value is * ASA 2 * then so do ASA
    where as if the value is * 1.5 TST * it sholud come as TST as wise for others too.
    I am trying to execute stmt SQL written but in error as below:

    * ' ORA-00998 must appoint this expression with the alias column 00998.00000 - must appoint this expression with the column alias. "

    CREATE TABLE TEST_CARE AS
    (
    SELECT row_id, old_care_lvl, SUBSTR(old_care_lvl,3), len test_care_lvl FROM
    WHERE LENGTH (old_care_lvl) = 5
    UNION ALL
    SELECT row_id, old_care_lvl, SUBSTR(old_care_lvl,3), len test_care_lvl FROM
    WHERE LENGTH (old_care_lvl) = 7
    UNION ALL
    SELECT row_id, old_care_lvl, SUBSTR(old_care_lvl,3), len test_care_lvl FROM
    WHERE LENGTH (old_care_lvl) = 14
    UNION ALL
    Row_id SELECT, old_care_lvl, SUBSTR (old_care_lvl, 3), LEN test_care_lvl
    WHERE LENGTH = 7 AND old_care_lvl (old_care_lvl) = "Regular."
    );

    I want to create the table using the above given the multiple selection by using the Union ALL clause, but trying to create run query error like "ORA-00998 must appoint this expression with the alias column 00998.00000 - must appoint this expression with the column alias.

    Please guide me how to approach to solve this problem.
    Thanks in advance.

    Try this->

    CREATE TABLE TEST_CARE
    AS
      select *
      from (
              SELECT row_id, old_care_lvl,SUBSTR(old_care_lvl,3), len FROM test_care_lvl
              WHERE LENGTH(old_care_lvl) =5
              UNION ALL
              SELECT row_id, old_care_lvl,SUBSTR(old_care_lvl,3), len FROM test_care_lvl
              WHERE LENGTH(old_care_lvl) =7
              UNION ALL
              SELECT row_id, old_care_lvl,SUBSTR(old_care_lvl,3), len FROM test_care_lvl
              WHERE LENGTH(old_care_lvl) =14
              UNION ALL
              SELECT row_id, old_care_lvl,SUBSTR(old_care_lvl,3),LEN FROM test_care_lvl
              WHERE LENGTH(old_care_lvl) =7 AND old_care_lvl ='Regular'
          );
    

    N.B.: Not tested...

    Kind regards.

    LOULOU.

  • Oracle cloud virtual image, I was able to create the database using DBCA (virtual image) oracle cloud. I understand with the virtual image, we won't have a lot of tools like on DAAS cloud... But could please at least use us dbconsole?

    On oracle cloud virtual, image I was able to create the database using DBCA (virtual image) oracle cloud. I understand with the virtual image, we won't have a lot of tools like on DAAS cloud. But could please at least use us dbconsole?


    I tried to start dbconsole, and it did not work:

    [oracle@ltutest ~] $ emctl start dbconsole

    OC4J Configuration problem. /U01/app/Oracle/product/11.2.0/dbhome_1/OC4J/J2EE/OC4J_DBConsole_ltutest.compute-aulatrobeu83140.oraclecloud.internal_ORCL not found.


    According to the oracle help doc center - "creating a database on an instance of virtual image service" (http://docs.oracle.com/cloud/latest/dbcs_dbaas/CSDBI/GUID-29290A81-8798-4988-848E-77A1BE0CF08A.htm#GUID-4851560B-D4B6-42...)

    database was created with the option as:

    emConfiguration - NONE - storageType FS


    I guess we have to manually configure the em console, but when I tried to create it, he told me that "' Dbcontrol repository already exists." "

    When I try to start it, it exports the error

    [Oracle@ltutest ~] $ emctl start dbconsole

    OC4J Configuration problem. /U01/app/Oracle/product/11.2.0/dbhome_1/OC4J/J2EE/OC4J_DBConsole_ltutest.compute-aulatrobeu83140.oraclecloud.internal_ORCL not found.

    Could someone could give me help with this problem?


    Thanks Brian. I tried your command, and it works. Now I've encountered another problem, how can I browse the URL?

    I created the access rule for access remote on port 1521 and 1158. but when I try to browse the EM console URL, it does not work. all the configurations that I need to do?

  • I have to install just Adobe presenter of this entire application. I created the package using AAMEE3.1

    I created the package using JOHN 3.1, using the source of Adobe eLearning Suite 6.1.

    During the creation of a Package I selected only Adobe Presenter 8. The package is serialized and also Adobe ID is here to connect. The package is created successfully. But when I run MSI it restorations during the Installation.

    Here is the PDApp.log file:

    15/07/2013 09:07:21 [INFO] DeploymentManager - Build Version - 3.1.105.0

    15/07/2013 09:07:21 [INFO] DeploymentManager - verbosity Logging Level Set of 4

    15/07/2013 09:07:21 [INFO] DeploymentManager - runs the deferred custom action.

    15/07/2013 09:07:21 [INFO] DeploymentManager - obtained the following as CustomActionData

    15/07/2013 09:07:21 [INFO] DeploymentManager - mode = install; sourceDir = c:\Nouveau (2) folder \Adobe presenter 8\Build\. installDir =; origDB = folder (2) c:\Nouveau \Adobe 8\Build\Adobe presenter presenter 8. MSI

    15/07/2013 09:07:21 [INFO] DeploymentManager - mode = install; sourceDir = c:\Nouveau (2) folder \Adobe presenter 8\Build\. installDir =; origDB = folder (2) c:\Nouveau \Adobe 8\Build\Adobe presenter presenter 8. MSI

    15/07/2013 09:07:21 [INFO] DeploymentManager - original database path: C:\New folder (2) \Adobe 8\Build\Adobe host presenter 8. MSI

    {15/07/2013 09:07:21 [INFO] DeploymentManager - OptionXML saved to the location: D:\Users\Vmbuild\AppData\Local\Temp\{0EAD2103-39AF-4D85-B942-CAC0E462C482}\\{9CB14C72-1E7 1-49 C 0 - A7D8 - 559F1DC35661}

    15/07/2013 09:07:21 [INFO] DeploymentManager - Build Version - 3.1.105.0

    15/07/2013 09:07:21 [INFO] DeploymentManager - verbosity Logging Level Set of 4

    15/07/2013 09:07:21 [INFO] DeploymentManager - initialization of the Custom Action parameters data

    15/07/2013 09:07:21 [INFO] utility - file does not exist

    15/07/2013 09:07:21 [INFO] DeploymentManager - commissioning tool path is (D:\Users\Vmbuild\AppData\Local\Temp\{0EAD2103-39AF-4D85-B942-CAC0E462C482}\\{731F139B-D8 D6-4870-AA90-9626C4D6D4E2}).

    15/07/2013 09:07:21 [INFO] DeploymentManager - begins to run the custom action to install mode

    15/07/2013 09:07:21 [INFO] DeploymentManager - STEP 1: start to parse the XML Option.

    {15/07/2013 09:07:21 [INFO] DeploymentManager - deployment XML created to the path: D:\Users\Vmbuild\AppData\Local\Temp\{2592DDC9-72BD-430A-B2EA-C2839B69B46E}\\{709B4BF9-4A0 5-4D3E-BC48-850DE16D5A85}

    15/07/2013 09:07:21 [INFO] DeploymentManager - Deployment Manager runs in Install Mode.

    15/07/2013 09:07:21 [INFO] DeploymentManager - relative path to Self-Update the bootstrapper does not exist.

    {15/07/2013 09:07:21 [INFO] DeploymentManager - substitute XML created to the path: D:\Users\Vmbuild\AppData\Local\Temp\{2592DDC9-72BD-430A-B2EA-C2839B69B46E}\\{61E5FBB2-8F4 C-4909-9A3F-823EC1DE99F5}

    15/07/2013 09:07:21 [INFO] DeploymentManager - no updates found (0).

    15/07/2013 09:07:21 [INFO] DeploymentManager - STEP 2: from launch media program boot.

    15/07/2013 09:07:21 [INFO] DeploymentManager - bootstrapper launch location is: C:\New folder (2) \Adobe presenter 8\Build\Setup\Set-up.dat

    15/07/2013 09:07:22 [INFO] installation - build Version - 6.2.136.0

    15/07/2013 09:07:22 [INFO] installation - verbosity Logging Level Set of 4

    15/07/2013 09:07:22 [INFO] installation - start the installation of Adobe

    15/07/2013 09:07:22 [INFO] installation - TimeLog: start-up of the bootstrapper

    15/07/2013 09:07:22 [INFO] installation - TimeLog: begin the initial checks

    15/07/2013 09:07:22 [INFO] installation - specified Action - "install".

    15/07/2013 09:07:22 [ERROR] installation - error analysis of the arguments of the command line to the - 'DISABLE_CCM_DESKTOPSHORTCUT '.

    The expected arguments are-

    -mode = silent

    -overrideFile = '< FilePath > ".

    15/07/2013 09:07:22 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\Setup\resources\setup.xml

    15/07/2013 09:07:22 [INFO] PIM - XML is valid

    15/07/2013 09:07:22 [WARN] PIM - could not find node

    15/07/2013 09:07:22 [INFO] installation - found 7 packages in install manifest

    15/07/2013 09:07:23 [INFO] utility - semaphore is not locked

    15/07/2013 09:07:23 [INFO] PIM - Build Version - 6.2.136.0

    15/07/2013 09:07:23 [INFO] PIM - verbosity Logging Level Set of 4

    15/07/2013 09:07:23 [INFO] utility - the file does not exist

    15/07/2013 09:07:23 [INFO] utility - the file does not exist

    15/07/2013 09:07:23 [INFO] PIM - Build Version - 6.2.136.0

    15/07/2013 09:07:23 [INFO] PIM - verbosity Logging Level Set of 4

    15/07/2013 09:07:23 [INFO] PIM - PIM INSTANTIATE...

    15/07/2013 09:07:23 [INFO] utility - the file does not exist

    15/07/2013 09:07:23 [INFO] PIM - trying to createOrUpdatePIMDbSchema.

    15/07/2013 09:07:23 [INFO] PIM - schema version current db on computer 1.

    15/07/2013 09:07:23 [INFO] PIM - schema version current db installation 1.

    15/07/2013 09:07:23 [INFO] PIM - PIM DB schema is updated. Current schema version is 1.

    15/07/2013 09:07:23 [INFO] PIM - PIM Database is Up To Date.

    15/07/2013 09:07:23 [INFO] PIM - Updater inventory location: c:\Nouveau file (2) \Adobe presenter 8\Build\Setup\resources\updaterinventory.dll

    15/07/2013 09:07:23 [INFO] PIM - system locking ACF acquired level...

    15/07/2013 09:07:23 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\Setup\packages\core\PDApp.pimx

    15/07/2013 09:07:23 [INFO] PIM - XML is valid

    15/07/2013 09:07:23 [WARN] PIM - cannot find the node

    15/07/2013 09:07:23 [INFO] PIM - Package id 5AA1D762-31AF-4FC3-A0C0-66BF663B2117 is already installed

    15/07/2013 09:07:24 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\Setup\packages\D6\D6.pimx

    15/07/2013 09:07:24 [INFO] PIM - XML is valid

    15/07/2013 09:07:24 [WARN] PIM - could not find node

    15/07/2013 09:07:24 [INFO] PIM - Package id 54FD72DC-72EC-4CDC-8828-F07C4E9E6FA2 is already installed

    15/07/2013 09:07:24 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\Setup\packages\DECore\DECore.pimx

    15/07/2013 09:07:24 [INFO] PIM - XML is valid

    15/07/2013 09:07:24 [WARN] PIM - could not find node

    15/07/2013 09:07:24 [INFO] PIM - Package id 6D2A548B-C50D-46BA-B83E-C8199C6A9406 is already installed

    15/07/2013 09:07:24 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\Setup\packages\DWA\DWA.pimx

    15/07/2013 09:07:24 [INFO] PIM - XML is valid

    15/07/2013 09:07:24 [WARN] PIM - could not find node

    15/07/2013 09:07:24 [INFO] PIM - Package id 99477136-88AD-496B-9551-BAE72699A32C is already installed

    15/07/2013 09:07:25 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\Setup\packages\P6\P6.pimx

    15/07/2013 09:07:25 [INFO] PIM - XML is valid

    15/07/2013 09:07:25 [WARN] PIM - could not find node

    15/07/2013 09:07:25 [INFO] PIM - id Package FAFC744B-DDFB-4097-A41D-7E9539FEBAF9 is already installed

    15/07/2013 09:07:27 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\Setup\packages\LWA\LWA.pimx

    15/07/2013 09:07:27 [INFO] PIM - XML is valid

    15/07/2013 09:07:27 [WARN] PIM - could not find node

    15/07/2013 09:07:27 [INFO] PIM - id Package B322281B-C04F-438E-82D7-7DA34A359526 is already installed

    15/07/2013 09:07:28 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\Setup\packages\UWA\UWA.pimx

    15/07/2013 09:07:29 [INFO] PIM - XML is valid

    15/07/2013 09:07:29 [WARN] PIM - cannot find the node

    15/07/2013 09:07:29 [INFO] PIM - id Package B1313DE3-08DF-4834-91D9-CBD1A91488E5 is already installed

    15/07/2013 09:07:29 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\Setup\packages\CCM\CCM.pimx

    15/07/2013 09:07:29 [INFO] PIM - XML is valid

    15/07/2013 09:07:29 [WARN] PIM - cannot find the node

    15/07/2013 09:07:29 [INFO] PIM - id Package F0158AAB-0779-4B40-A07D-3F2A21D47E74 is already installed

    15/07/2013 09:07:29 [INFO] PIM - pim_haveEnoughDiskSpaceToInstallPackages reqSize... 29928536

    15/07/2013 09:07:29 [INFO] installation - TimeLog: complete the initial audits

    15/07/2013 09:07:29 [INFO] installation - TimeLog: start the installation

    15/07/2013 09:07:29 [INFO] C:\New - Start by installing the package kernel - Setup folder (2) \Adobe presenter 8\Build\Setup\packages\core\PDApp.pimx

    15/07/2013 09:07:29 [INFO] PIM - BEGINNING to the C:\New folder (2) file installPackage \Adobe presenter 8\Build\Setup\packages\core\PDApp.pimx

    15/07/2013 09:07:29 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\Setup\packages\core\PDApp.pimx

    15/07/2013 09:07:29 [INFO] PIM - XML is valid

    15/07/2013 09:07:29 [WARN] PIM - cannot find the node

    15/07/2013 09:07:29 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\Setup\packages\core\PDApp.pimx.

    15/07/2013 09:07:29 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\Setup\packages\core\PDApp.pima.

    15/07/2013 09:07:29 [INFO] PIM - Package id 5AA1D762-31AF-4FC3-A0C0-66BF663B2117 is already installed

    15/07/2013 09:07:29 [INFO] PIM - deleteAppletRegInfoRecords SUCCESS.

    15/07/2013 09:07:31 [INFO] PIM - deletePackageUpgradeInfoRecords SUCCESS.

    15/07/2013 09:07:31 [INFO] PIM - deletePackageInstallationInfoRecords SUCCESS.

    15/07/2013 09:07:32 [INFO] PIM - insertPackageUpdateList SUCCESS.

    15/07/2013 09:07:32 [WARN] PIM - could not find node

    15/07/2013 09:07:32 [INFO] PIM - insertAppletRegInfoList SUCCESS.

    15/07/2013 09:07:32 [INFO] PIM - created backup file

    15/07/2013 09:07:34 [INFO] utility - the file does not exist

    15/07/2013 09:07:37 [INFO] PIM - installPackage SUCCESS to the C:\New folder (2) file \Adobe presenter 8\Build\Setup\packages\core\PDApp.pimx.

    15/07/2013 09:07:38 [INFO] C:\New Setup - finished installing the kernel package - file (2) \Adobe presenter 8\Build\Setup\packages\core\PDApp.pimx, status code returned: 0

    15/07/2013 09:07:38 [INFO] C:\New - Start installation package - Setup folder (2) \Adobe presenter 8\Build\Setup\packages\D6\D6.pimx

    15/07/2013 09:07:38 [INFO] PIM - BEGINNING to the C:\New folder (2) file installPackage \Adobe presenter 8\Build\Setup\packages\D6\D6.pimx

    15/07/2013 09:07:38 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\Setup\packages\D6\D6.pimx

    15/07/2013 09:07:38 [INFO] PIM - XML is valid

    15/07/2013 09:07:38 [WARN] PIM - cannot find the node

    15/07/2013 09:07:38 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\Setup\packages\D6\D6.pimx.

    15/07/2013 09:07:38 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\Setup\packages\D6\D6.pima.

    15/07/2013 09:07:38 [INFO] PIM - Package id 54FD72DC-72EC-4CDC-8828-F07C4E9E6FA2 is already installed

    15/07/2013 09:07:39 [INFO] PIM - deleteAppletRegInfoRecords SUCCESS.

    15/07/2013 09:07:39 [INFO] PIM - deletePackageUpgradeInfoRecords SUCCESS.

    15/07/2013 09:07:39 [INFO] PIM - deletePackageInstallationInfoRecords SUCCESS.

    15/07/2013 09:07:39 [INFO] PIM - insertPackageUpdateList SUCCESS.

    15/07/2013 09:07:39 [INFO] PIM - insertAppletRegInfoList SUCCESS.

    15/07/2013 09:07:39 [INFO] PIM - created backup file

    15/07/2013 09:07:39 [INFO] utility - the file does not exist

    15/07/2013 09:07:42 [INFO] PIM - installPackage SUCCESS to the C:\New folder (2) file \Adobe presenter 8\Build\Setup\packages\D6\D6.pimx.

    15/07/2013 09:07:42 [INFO] C:\New Setup - finish by installing the package - file (2) \Adobe presenter 8\Build\Setup\packages\D6\D6.pimx

    15/07/2013 09:07:42 [INFO] C:\New - Start installation package - Setup folder (2) \Adobe presenter 8\Build\Setup\packages\DECore\DECore.pimx

    15/07/2013 09:07:42 [INFO] PIM - BEGINNING to the C:\New folder (2) file installPackage \Adobe presenter 8\Build\Setup\packages\DECore\DECore.pimx

    15/07/2013 09:07:42 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\Setup\packages\DECore\DECore.pimx

    15/07/2013 09:07:42 [INFO] PIM - XML is valid

    15/07/2013 09:07:42 [WARN] PIM - cannot find the node

    15/07/2013 09:07:42 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\Setup\packages\DECore\DECore.pimx.

    15/07/2013 09:07:42 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\Setup\packages\DECore\DECore.pima.

    15/07/2013 09:07:42 [INFO] PIM - Package id 6D2A548B-C50D-46BA-B83E-C8199C6A9406 is already installed

    15/07/2013 09:07:42 [INFO] PIM - deleteAppletRegInfoRecords SUCCESS.

    15/07/2013 09:07:43 [INFO] PIM - deletePackageUpgradeInfoRecords SUCCESS.

    15/07/2013 09:07:43 [INFO] PIM - deletePackageInstallationInfoRecords SUCCESS.

    15/07/2013 09:07:43 [INFO] PIM - insertPackageUpdateList SUCCESS.

    15/07/2013 09:07:43 [WARN] PIM - could not find node

    15/07/2013 09:07:43 [INFO] PIM - insertAppletRegInfoList SUCCESS.

    15/07/2013 09:07:43 [INFO] PIM - created backup file

    15/07/2013 09:07:45 [INFO] utility - the file does not exist

    15/07/2013 09:07:47 [INFO] PIM - installPackage SUCCESS to the C:\New folder (2) file \Adobe presenter 8\Build\Setup\packages\DECore\DECore.pimx.

    15/07/2013 09:07:48 [INFO] C:\New Setup - finish by installing the package - file (2) \Adobe presenter 8\Build\Setup\packages\DECore\DECore.pimx

    15/07/2013 09:07:48 [INFO] C:\New - Start installation package - Setup folder (2) \Adobe presenter 8\Build\Setup\packages\DWA\DWA.pimx

    15/07/2013 09:07:48 [INFO] PIM - BEGINNING to the C:\New folder (2) file installPackage \Adobe presenter 8\Build\Setup\packages\DWA\DWA.pimx

    15/07/2013 09:07:48 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\Setup\packages\DWA\DWA.pimx

    15/07/2013 09:07:48 [INFO] PIM - XML is valid

    15/07/2013 09:07:48 [WARN] PIM - cannot find the node

    15/07/2013 09:07:48 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\Setup\packages\DWA\DWA.pimx.

    15/07/2013 09:07:48 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\Setup\packages\DWA\DWA.pima.

    15/07/2013 09:07:48 [INFO] PIM - Package id 99477136-88AD-496B-9551-BAE72699A32C is already installed

    15/07/2013 09:07:48 [INFO] PIM - deleteAppletRegInfoRecords SUCCESS.

    15/07/2013 09:07:48 [INFO] PIM - deletePackageUpgradeInfoRecords SUCCESS.

    15/07/2013 09:07:48 [INFO] PIM - deletePackageInstallationInfoRecords SUCCESS.

    15/07/2013 09:07:48 [INFO] PIM - insertPackageUpdateList SUCCESS.

    15/07/2013 09:07:48 [INFO] PIM - insertAppletRegInfoList SUCCESS.

    15/07/2013 09:07:48 [INFO] PIM - created backup file

    15/07/2013 09:07:49 [INFO] utility - the file does not exist

    15/07/2013 09:07:53 [INFO] PIM - installPackage SUCCESS to the C:\New folder (2) file \Adobe presenter 8\Build\Setup\packages\DWA\DWA.pimx.

    15/07/2013 09:07:53 [INFO] C:\New Setup - finish by installing the package - file (2) \Adobe presenter 8\Build\Setup\packages\DWA\DWA.pimx

    15/07/2013 09:07:53 [INFO] C:\New - Start installation package - Setup folder (2) \Adobe presenter 8\Build\Setup\packages\P6\P6.pimx

    15/07/2013 09:07:53 [INFO] PIM - BEGINNING to the C:\New folder (2) file installPackage \Adobe presenter 8\Build\Setup\packages\P6\P6.pimx

    15/07/2013 09:07:53 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\Setup\packages\P6\P6.pimx

    15/07/2013 09:07:53 [INFO] PIM - XML is valid

    15/07/2013 09:07:53 [WARN] PIM - cannot find the node

    15/07/2013 09:07:53 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\Setup\packages\P6\P6.pimx.

    15/07/2013 09:07:53 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\Setup\packages\P6\P6.pima.

    15/07/2013 09:07:53 [INFO] PIM - id Package FAFC744B-DDFB-4097-A41D-7E9539FEBAF9 is already installed

    15/07/2013 09:07:53 [INFO] PIM - deleteAppletRegInfoRecords SUCCESS.

    15/07/2013 09:07:54 [INFO] PIM - deletePackageUpgradeInfoRecords SUCCESS.

    15/07/2013 09:07:54 [INFO] PIM - deletePackageInstallationInfoRecords SUCCESS.

    15/07/2013 09:07:54 [INFO] PIM - insertPackageUpdateList SUCCESS.

    15/07/2013 09:07:54 [INFO] PIM - insertAppletRegInfoList SUCCESS.

    15/07/2013 09:07:54 [INFO] PIM - created backup file

    15/07/2013 09:07:59 [INFO] utility - the file does not exist

    15/07/2013 09:08:04 [INFO] PIM - installPackage SUCCESS to the C:\New folder (2) file \Adobe presenter 8\Build\Setup\packages\P6\P6.pimx.

    15/07/2013 09:08:04 [INFO] C:\New Setup - finish by installing the package - file (2) \Adobe presenter 8\Build\Setup\packages\P6\P6.pimx

    15/07/2013 09:08:04 [INFO] C:\New - Start installation package - Setup folder (2) \Adobe presenter 8\Build\Setup\packages\LWA\LWA.pimx

    15/07/2013 09:08:04 [INFO] PIM - BEGINNING to the C:\New folder (2) file installPackage \Adobe presenter 8\Build\Setup\packages\LWA\LWA.pimx

    15/07/2013 09:08:04 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\Setup\packages\LWA\LWA.pimx

    15/07/2013 09:08:04 [INFO] PIM - XML is valid

    15/07/2013 09:08:04 [WARN] PIM - could not find node

    15/07/2013 09:08:04 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\Setup\packages\LWA\LWA.pimx.

    15/07/2013 09:08:04 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\Setup\packages\LWA\LWA.pima.

    15/07/2013 09:08:04 [INFO] PIM - id Package B322281B-C04F-438E-82D7-7DA34A359526 is already installed

    15/07/2013 09:08:04 [INFO] PIM - deleteAppletRegInfoRecords SUCCESS.

    15/07/2013 09:08:05 [INFO] PIM - deletePackageUpgradeInfoRecords SUCCESS.

    15/07/2013 09:08:05 [INFO] PIM - deletePackageInstallationInfoRecords SUCCESS.

    15/07/2013 09:08:05 [INFO] PIM - insertPackageUpdateList SUCCESS.

    15/07/2013 09:08:05 [INFO] PIM - insertAppletRegInfoList SUCCESS.

    15/07/2013 09:08:05 [INFO] PIM - created backup file

    15/07/2013 09:08:09 [INFO] utility - the file does not exist

    15/07/2013 09:08:18 [INFO] PIM - installPackage SUCCESS to the C:\New folder (2) file \Adobe presenter 8\Build\Setup\packages\LWA\LWA.pimx.

    15/07/2013 09:08:18 [INFO] C:\New Setup - finish by installing the package - file (2) \Adobe presenter 8\Build\Setup\packages\LWA\LWA.pimx

    15/07/2013 09:08:18 [INFO] C:\New - Start installation package - Setup folder (2) \Adobe presenter 8\Build\Setup\packages\UWA\UWA.pimx

    15/07/2013 09:08:18 [INFO] PIM - BEGINNING to the C:\New folder (2) file installPackage \Adobe presenter 8\Build\Setup\packages\UWA\UWA.pimx

    15/07/2013 09:08:18 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\Setup\packages\UWA\UWA.pimx

    15/07/2013 09:08:18 [INFO] PIM - XML is valid

    15/07/2013 09:08:18 [WARN] PIM - could not find node

    15/07/2013 09:08:18 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\Setup\packages\UWA\UWA.pimx.

    15/07/2013 09:08:19 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\Setup\packages\UWA\UWA.pima.

    15/07/2013 09:08:19 [INFO] PIM - id Package B1313DE3-08DF-4834-91D9-CBD1A91488E5 is already installed

    15/07/2013 09:08:19 [INFO] PIM - deleteAppletRegInfoRecords SUCCESS.

    15/07/2013 09:08:20 [INFO] PIM - deletePackageUpgradeInfoRecords SUCCESS.

    15/07/2013 09:08:20 [INFO] PIM - deletePackageInstallationInfoRecords SUCCESS.

    15/07/2013 09:08:20 [INFO] PIM - insertPackageUpdateList SUCCESS.

    15/07/2013 09:08:20 [INFO] PIM - insertAppletRegInfoList SUCCESS.

    15/07/2013 09:08:20 [INFO] PIM - created backup file

    15/07/2013 09:08:21 [INFO] utility - the file does not exist

    15/07/2013 09:08:27 [INFO] PIM - installPackage SUCCESS to the C:\New folder (2) file \Adobe presenter 8\Build\Setup\packages\UWA\UWA.pimx.

    15/07/2013 09:08:27 [INFO] C:\New Setup - finish by installing the package - file (2) \Adobe presenter 8\Build\Setup\packages\UWA\UWA.pimx

    15/07/2013 09:08:27 [INFO] C:\New - Start installation package - Setup folder (2) \Adobe presenter 8\Build\Setup\packages\CCM\CCM.pimx

    15/07/2013 09:08:27 [INFO] PIM - BEGINNING to the C:\New folder (2) file installPackage \Adobe presenter 8\Build\Setup\packages\CCM\CCM.pimx

    15/07/2013 09:08:27 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\Setup\packages\CCM\CCM.pimx

    15/07/2013 09:08:27 [INFO] PIM - XML is valid

    15/07/2013 09:08:27 [WARN] PIM - could not find node

    15/07/2013 09:08:27 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\Setup\packages\CCM\CCM.pimx.

    15/07/2013 09:08:27 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\Setup\packages\CCM\CCM.pima.

    15/07/2013 09:08:28 [INFO] PIM - id Package F0158AAB-0779-4B40-A07D-3F2A21D47E74 is already installed

    15/07/2013 09:08:28 [INFO] PIM - deleteAppletRegInfoRecords SUCCESS.

    15/07/2013 09:08:28 [INFO] PIM - deletePackageUpgradeInfoRecords SUCCESS.

    15/07/2013 09:08:28 [INFO] PIM - deletePackageInstallationInfoRecords SUCCESS.

    15/07/2013 09:08:29 [INFO] PIM - insertPackageUpdateList SUCCESS.

    15/07/2013 09:08:29 [INFO] PIM - insertAppletRegInfoList SUCCESS.

    15/07/2013 09:08:29 [INFO] PIM - created backup file

    15/07/2013 09:08:29 [INFO] utility - the file does not exist

    15/07/2013 09:08:33 [INFO] utility - path to the process: C:\Program Files (x 86) \Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeCreativeCloudClient.exe directory of process: \Common Files\Adobe\OOBE\PDApp\\CCM\Utilities arguments C:\Program Files (x 86) being passed: "C:\Program Files (x 86) \Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeCreativeCloudClient.exe" - registry = true - createShortcut = true

    15/07/2013 09:08:33 [INFO] utility - success of CreateProcess

    15/07/2013 09:08:35 [INFO] utility - Sucessfully launched and executed the process...

    15/07/2013 09:08:35 [INFO] PIM - executed correctly install modifier to the path: "C:\Program Files (x 86) \Common.

    15/07/2013 09:08:35 [INFO] PIM - installPackage SUCCESS to the C:\New folder (2) file \Adobe presenter 8\Build\Setup\packages\CCM\CCM.pimx.

    15/07/2013 09:08:35 [INFO] C:\New Setup - finish by installing the package - file (2) \Adobe presenter 8\Build\Setup\packages\CCM\CCM.pimx

    15/07/2013 09:08:35 [INFO] PIM - treatment... _pimCreateOrUpdateAAMInventory

    15/07/2013 09:08:36 [INFO] PIM - inventory already present on the machine...

    15/07/2013 09:08:36 [INFO] installation - TimeLog: installation of the end Lance PDApp.

    15/07/2013 09:08:37 [INFO] installation - path of deployment file not specified in command-line arguments. Skip the deployment of payload part

    15/07/2013 09:08:37 [INFO] installation - = end of Adobe installer. Exit code: 0 =.

    15/07/2013 09:08:37 [INFO] PIM - PIMSqlite closeDB status 0

    15/07/2013 09:08:37 [INFO] FREE PIM - PIM Instance...

    15/07/2013 09:08:37 [INFO] DeploymentManager - Build Version - 3.1.105.0

    15/07/2013 09:08:37 [INFO] DeploymentManager - verbosity Logging Level Set of 4

    15/07/2013 09:08:37 [INFO] DeploymentManager - the code returned by the boot process is (0).

    15/07/2013 09:08:37 [INFO] DeploymentManager - STEP 3: from throw ASU AAM.

    15/07/2013 09:08:37 [INFO] DeploymentManager - bootstrapper launch location is: C:\New folder (2) \Adobe presenter 8\Build\ASU\Set-up.dat

    15/07/2013 09:08:37 [INFO] installation - build Version - 6.2.136.0

    15/07/2013 09:08:37 [INFO] installation - verbosity Logging Level Set of 4

    15/07/2013 09:08:37 [INFO] installation - start the installation of Adobe

    15/07/2013 09:08:37 [INFO] installation - TimeLog: start-up of the bootstrapper

    15/07/2013 09:08:37 [INFO] installation - TimeLog: begin the initial checks

    15/07/2013 09:08:37 [INFO] installation - specified Action - "install".

    15/07/2013 09:08:37 [ERROR] installation - error analysis of the arguments of the command line to the - 'DISABLE_CCM_DESKTOPSHORTCUT '.

    The expected arguments are-

    -mode = silent

    -overrideFile = '< FilePath > ".

    15/07/2013 09:08:37 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\ASU\resources\setup.xml

    15/07/2013 09:08:37 [INFO] PIM - XML is valid

    15/07/2013 09:08:37 [WARN] PIM - cannot find the node

    15/07/2013 09:08:37 [INFO] installation - found 7 packages in install manifest

    15/07/2013 09:08:37 [INFO] utility - semaphore is not locked

    15/07/2013 09:08:37 [INFO] PIM - Build Version - 6.2.136.0

    15/07/2013 09:08:37 [INFO] PIM - verbosity Logging Level Set of 4

    15/07/2013 09:08:37 [INFO] utility - the file does not exist

    15/07/2013 09:08:37 [INFO] utility - the file does not exist

    15/07/2013 09:08:37 [INFO] PIM - Build Version - 6.2.136.0

    15/07/2013 09:08:37 [INFO] PIM - verbosity Logging Level Set of 4

    15/07/2013 09:08:37 [INFO] PIM - PIM INSTANTIATE...

    15/07/2013 09:08:37 [INFO] utility - the file does not exist

    15/07/2013 09:08:38 [INFO] PIM - trying to createOrUpdatePIMDbSchema.

    15/07/2013 09:08:38 [INFO] PIM - schema version current db on computer 1.

    15/07/2013 09:08:38 [INFO] PIM - schema version current db installation 1.

    15/07/2013 09:08:38 [INFO] PIM - PIM DB schema is updated. Current schema version is 1.

    15/07/2013 09:08:38 [INFO] PIM - PIM Database is Up To Date.

    15/07/2013 09:08:38 [INFO] PIM - Updater inventory location: c:\Nouveau file (2) \Adobe presenter 8\Build\ASU\resources\updaterinventory.dll

    15/07/2013 09:08:38 [INFO] PIM - system locking ACF acquired level...

    15/07/2013 09:08:38 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\ASU\packages\core\PDApp.pimx

    15/07/2013 09:08:38 [INFO] PIM - XML is valid

    15/07/2013 09:08:38 [WARN] PIM - cannot find the node

    15/07/2013 09:08:38 [INFO] PIM - Package id 5AA1D762-31AF-4FC3-A0C0-66BF663B2117 is already installed

    15/07/2013 09:08:38 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\ASU\packages\D6\D6.pimx

    15/07/2013 09:08:38 [INFO] PIM - XML is valid

    15/07/2013 09:08:38 [WARN] PIM - cannot find the node

    15/07/2013 09:08:38 [INFO] PIM - Package id 54FD72DC-72EC-4CDC-8828-F07C4E9E6FA2 is already installed

    15/07/2013 09:08:38 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\ASU\packages\DECore\DECore.pimx

    15/07/2013 09:08:38 [INFO] PIM - XML is valid

    15/07/2013 09:08:38 [WARN] PIM - cannot find the node

    15/07/2013 09:08:38 [INFO] PIM - Package id 6D2A548B-C50D-46BA-B83E-C8199C6A9406 is already installed

    15/07/2013 09:08:38 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\ASU\packages\DWA\DWA.pimx

    15/07/2013 09:08:38 [INFO] PIM - XML is valid

    15/07/2013 09:08:38 [WARN] PIM - cannot find the node

    15/07/2013 09:08:38 [INFO] PIM - Package id 99477136-88AD-496B-9551-BAE72699A32C is already installed

    15/07/2013 09:08:38 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\ASU\packages\P6\P6.pimx

    15/07/2013 09:08:39 [INFO] PIM - XML is valid

    15/07/2013 09:08:39 [WARN] PIM - cannot find the node

    15/07/2013 09:08:39 [INFO] PIM - id Package FAFC744B-DDFB-4097-A41D-7E9539FEBAF9 is already installed

    15/07/2013 09:08:39 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\ASU\packages\LWA\LWA.pimx

    15/07/2013 09:08:39 [INFO] PIM - XML is valid

    15/07/2013 09:08:39 [WARN] PIM - cannot find the node

    15/07/2013 09:08:39 [INFO] PIM - id Package B322281B-C04F-438E-82D7-7DA34A359526 is already installed

    15/07/2013 09:08:39 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\ASU\packages\UWA\UWA.pimx

    15/07/2013 09:08:39 [INFO] PIM - XML is valid

    15/07/2013 09:08:39 [WARN] PIM - cannot find the node

    15/07/2013 09:08:39 [INFO] PIM - id Package B1313DE3-08DF-4834-91D9-CBD1A91488E5 is already installed

    15/07/2013 09:08:39 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\ASU\packages\CCM\CCM.pimx

    15/07/2013 09:08:39 [INFO] PIM - XML is valid

    15/07/2013 09:08:39 [WARN] PIM - cannot find the node

    15/07/2013 09:08:39 [INFO] PIM - id Package F0158AAB-0779-4B40-A07D-3F2A21D47E74 is already installed

    15/07/2013 09:08:39 [INFO] PIM - pim_haveEnoughDiskSpaceToInstallPackages reqSize... 29928536

    15/07/2013 09:08:39 [INFO] installation - TimeLog: complete the initial audits

    15/07/2013 09:08:39 [INFO] installation - TimeLog: start the installation

    15/07/2013 09:08:39 [INFO] C:\New - Start by installing the package kernel - Setup folder (2) \Adobe presenter 8\Build\ASU\packages\core\PDApp.pimx

    15/07/2013 09:08:39 [INFO] PIM - BEGINNING to the C:\New folder (2) file installPackage \Adobe presenter 8\Build\ASU\packages\core\PDApp.pimx

    15/07/2013 09:08:39 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\ASU\packages\core\PDApp.pimx

    15/07/2013 09:08:39 [INFO] PIM - XML is valid

    15/07/2013 09:08:39 [WARN] PIM - cannot find the node

    15/07/2013 09:08:39 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\ASU\packages\core\PDApp.pimx.

    15/07/2013 09:08:39 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\ASU\packages\core\PDApp.pima.

    15/07/2013 09:08:39 [INFO] PIM - Package id 5AA1D762-31AF-4FC3-A0C0-66BF663B2117 is already installed

    15/07/2013 09:08:39 [INFO] PIM - deleteAppletRegInfoRecords SUCCESS.

    15/07/2013 09:08:39 [INFO] PIM - deletePackageUpgradeInfoRecords SUCCESS.

    15/07/2013 09:08:39 [INFO] PIM - deletePackageInstallationInfoRecords SUCCESS.

    15/07/2013 09:08:39 [INFO] PIM - insertPackageUpdateList SUCCESS.

    15/07/2013 09:08:39 [WARN] PIM - cannot find the node

    15/07/2013 09:08:39 [INFO] PIM - insertAppletRegInfoList SUCCESS.

    15/07/2013 09:08:40 [INFO] PIM - created backup file

    15/07/2013 09:08:41 [INFO] utility - the file does not exist

    15/07/2013 09:08:45 [INFO] PIM - installPackage SUCCESS to the C:\New folder (2) file \Adobe presenter 8\Build\ASU\packages\core\PDApp.pimx.

    15/07/2013 09:08:45 [INFO] C:\New Setup - finished installing the kernel package - file (2) \Adobe presenter 8\Build\ASU\packages\core\PDApp.pimx, status code returned: 0

    15/07/2013 09:08:45 [INFO] C:\New - Start installation package - Setup folder (2) \Adobe presenter 8\Build\ASU\packages\D6\D6.pimx

    15/07/2013 09:08:45 [INFO] PIM - BEGINNING to the C:\New folder (2) file installPackage \Adobe presenter 8\Build\ASU\packages\D6\D6.pimx

    15/07/2013 09:08:45 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\ASU\packages\D6\D6.pimx

    15/07/2013 09:08:45 [INFO] PIM - XML is valid

    15/07/2013 09:08:45 [WARN] PIM - could not find node

    15/07/2013 09:08:45 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\ASU\packages\D6\D6.pimx.

    15/07/2013 09:08:45 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\ASU\packages\D6\D6.pima.

    15/07/2013 09:08:45 [INFO] PIM - Package id 54FD72DC-72EC-4CDC-8828-F07C4E9E6FA2 is already installed

    15/07/2013 09:08:45 [INFO] PIM - deleteAppletRegInfoRecords SUCCESS.

    15/07/2013 09:08:45 [INFO] PIM - deletePackageUpgradeInfoRecords SUCCESS.

    15/07/2013 09:08:45 [INFO] PIM - deletePackageInstallationInfoRecords SUCCESS.

    15/07/2013 09:08:45 [INFO] PIM - insertPackageUpdateList SUCCESS.

    15/07/2013 09:08:45 [INFO] PIM - insertAppletRegInfoList SUCCESS.

    15/07/2013 09:08:45 [INFO] PIM - created backup file

    15/07/2013 09:08:46 [INFO] utility - the file does not exist

    15/07/2013 09:08:49 [INFO] PIM - installPackage SUCCESS to the C:\New folder (2) file \Adobe presenter 8\Build\ASU\packages\D6\D6.pimx.

    15/07/2013 09:08:49 [INFO] C:\New Setup - finish by installing the package - file (2) \Adobe presenter 8\Build\ASU\packages\D6\D6.pimx

    15/07/2013 09:08:49 [INFO] C:\New - Start installation package - Setup folder (2) \Adobe presenter 8\Build\ASU\packages\DECore\DECore.pimx

    15/07/2013 09:08:49 [INFO] PIM - BEGINNING to the C:\New folder (2) file installPackage \Adobe presenter 8\Build\ASU\packages\DECore\DECore.pimx

    15/07/2013 09:08:49 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\ASU\packages\DECore\DECore.pimx

    15/07/2013 09:08:49 [INFO] PIM - XML is valid

    15/07/2013 09:08:49 [WARN] PIM - cannot find the node

    15/07/2013 09:08:49 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\ASU\packages\DECore\DECore.pimx.

    15/07/2013 09:08:49 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\ASU\packages\DECore\DECore.pima.

    15/07/2013 09:08:49 [INFO] PIM - Package id 6D2A548B-C50D-46BA-B83E-C8199C6A9406 is already installed

    15/07/2013 09:08:49 [INFO] PIM - deleteAppletRegInfoRecords SUCCESS.

    15/07/2013 09:08:49 [INFO] PIM - deletePackageUpgradeInfoRecords SUCCESS.

    15/07/2013 09:08:49 [INFO] PIM - deletePackageInstallationInfoRecords SUCCESS.

    15/07/2013 09:08:49 [INFO] PIM - insertPackageUpdateList SUCCESS.

    15/07/2013 09:08:49 [WARN] PIM - cannot find the node

    15/07/2013 09:08:49 [INFO] PIM - insertAppletRegInfoList SUCCESS.

    15/07/2013 09:08:49 [INFO] PIM - created backup file

    15/07/2013 09:08:51 [INFO] utility - the file does not exist

    15/07/2013 09:08:53 [INFO] PIM - installPackage SUCCESS to the C:\New folder (2) file \Adobe presenter 8\Build\ASU\packages\DECore\DECore.pimx.

    15/07/2013 09:08:53 [INFO] C:\New Setup - finish by installing the package - file (2) \Adobe presenter 8\Build\ASU\packages\DECore\DECore.pimx

    15/07/2013 09:08:53 [INFO] C:\New - Start installation package - Setup folder (2) \Adobe presenter 8\Build\ASU\packages\DWA\DWA.pimx

    15/07/2013 09:08:53 [INFO] PIM - BEGINNING to the C:\New folder (2) file installPackage \Adobe presenter 8\Build\ASU\packages\DWA\DWA.pimx

    15/07/2013 09:08:53 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\ASU\packages\DWA\DWA.pimx

    15/07/2013 09:08:53 [INFO] PIM - XML is valid

    15/07/2013 09:08:53 [WARN] PIM - cannot find the node

    15/07/2013 09:08:53 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\ASU\packages\DWA\DWA.pimx.

    15/07/2013 09:08:53 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\ASU\packages\DWA\DWA.pima.

    15/07/2013 09:08:55 [INFO] PIM - Package id 99477136-88AD-496B-9551-BAE72699A32C is already installed

    15/07/2013 09:08:55 [INFO] PIM - deleteAppletRegInfoRecords SUCCESS.

    15/07/2013 09:08:55 [INFO] PIM - deletePackageUpgradeInfoRecords SUCCESS.

    15/07/2013 09:08:55 [INFO] PIM - deletePackageInstallationInfoRecords SUCCESS.

    15/07/2013 09:08:55 [INFO] PIM - insertPackageUpdateList SUCCESS.

    15/07/2013 09:08:55 [INFO] PIM - insertAppletRegInfoList SUCCESS.

    15/07/2013 09:08:55 [INFO] PIM - created backup file

    15/07/2013 09:08:55 [INFO] utility - the file does not exist

    15/07/2013 09:08:58 [INFO] PIM - installPackage SUCCESS to the C:\New folder (2) file \Adobe presenter 8\Build\ASU\packages\DWA\DWA.pimx.

    15/07/2013 09:08:58 [INFO] C:\New Setup - finish by installing the package - file (2) \Adobe presenter 8\Build\ASU\packages\DWA\DWA.pimx

    15/07/2013 09:08:58 [INFO] C:\New - Start installation package - Setup folder (2) \Adobe presenter 8\Build\ASU\packages\P6\P6.pimx

    15/07/2013 09:08:58 [INFO] PIM - BEGINNING to the C:\New folder (2) file installPackage \Adobe presenter 8\Build\ASU\packages\P6\P6.pimx

    15/07/2013 09:08:58 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\ASU\packages\P6\P6.pimx

    15/07/2013 09:08:58 [INFO] PIM - XML is valid

    15/07/2013 09:08:58 [REPORT] PIM - cannot find the node

    15/07/2013 09:08:58 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\ASU\packages\P6\P6.pimx.

    15/07/2013 09:08:58 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\ASU\packages\P6\P6.pima.

    15/07/2013 09:08:59 [INFO] PIM - id Package FAFC744B-DDFB-4097-A41D-7E9539FEBAF9 is already installed

    15/07/2013 09:08:59 [INFO] PIM - deleteAppletRegInfoRecords SUCCESS.

    15/07/2013 09:08:59 [INFO] PIM - deletePackageUpgradeInfoRecords SUCCESS.

    15/07/2013 09:08:59 [INFO] PIM - deletePackageInstallationInfoRecords SUCCESS.

    15/07/2013 09:08:59 [INFO] PIM - insertPackageUpdateList SUCCESS.

    15/07/2013 09:08:59 [INFO] PIM - insertAppletRegInfoList SUCCESS.

    15/07/2013 09:08:59 [INFO] PIM - created backup file

    15/07/2013 09:09:03 [INFO] utility - the file does not exist

    15/07/2013 09:09:11 [INFO] PIM - installPackage SUCCESS to the C:\New folder (2) file \Adobe presenter 8\Build\ASU\packages\P6\P6.pimx.

    15/07/2013 09:09:11 [INFO] C:\New Setup - finish by installing the package - file (2) \Adobe presenter 8\Build\ASU\packages\P6\P6.pimx

    15/07/2013 09:09:11 [INFO] C:\New - Start installation package - Setup folder (2) \Adobe presenter 8\Build\ASU\packages\LWA\LWA.pimx

    15/07/2013 09:09:11 [INFO] PIM - BEGINNING to the C:\New folder (2) file installPackage \Adobe presenter 8\Build\ASU\packages\LWA\LWA.pimx

    15/07/2013 09:09:11 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\ASU\packages\LWA\LWA.pimx

    15/07/2013 09:09:11 [INFO] PIM - XML is valid

    15/07/2013 09:09:11 [WARN] PIM - cannot find the node

    15/07/2013 09:09:11 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\ASU\packages\LWA\LWA.pimx.

    15/07/2013 09:09:11 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\ASU\packages\LWA\LWA.pima.

    15/07/2013 09:09:11 [INFO] PIM - id Package B322281B-C04F-438E-82D7-7DA34A359526 is already installed

    15/07/2013 09:09:11 [INFO] PIM - deleteAppletRegInfoRecords SUCCESS.

    15/07/2013 09:09:11 [INFO] PIM - deletePackageUpgradeInfoRecords SUCCESS.

    15/07/2013 09:09:11 [INFO] PIM - deletePackageInstallationInfoRecords SUCCESS.

    15/07/2013 09:09:12 [INFO] PIM - insertPackageUpdateList SUCCESS.

    15/07/2013 09:09:12 [INFO] PIM - insertAppletRegInfoList SUCCESS.

    15/07/2013 09:09:12 [INFO] PIM - created backup file

    15/07/2013 09:09:15 [INFO] utility - the file does not exist

    15/07/2013 09:09:23 [INFO] PIM - installPackage SUCCESS to the C:\New folder (2) file \Adobe presenter 8\Build\ASU\packages\LWA\LWA.pimx.

    15/07/2013 09:09:23 [INFO] C:\New Setup - finish by installing the package - file (2) \Adobe presenter 8\Build\ASU\packages\LWA\LWA.pimx

    15/07/2013 09:09:23 [INFO] C:\New - Start installation package - Setup folder (2) \Adobe presenter 8\Build\ASU\packages\UWA\UWA.pimx

    15/07/2013 09:09:23 [INFO] PIM - BEGINNING to the C:\New folder (2) file installPackage \Adobe presenter 8\Build\ASU\packages\UWA\UWA.pimx

    15/07/2013 09:09:23 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\ASU\packages\UWA\UWA.pimx

    15/07/2013 09:09:23 [INFO] PIM - XML is valid

    15/07/2013 09:09:23 [WARN] PIM - cannot find the node

    15/07/2013 09:09:23 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\ASU\packages\UWA\UWA.pimx.

    15/07/2013 09:09:23 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\ASU\packages\UWA\UWA.pima.

    15/07/2013 09:09:24 [INFO] PIM - id Package B1313DE3-08DF-4834-91D9-CBD1A91488E5 is already installed

    15/07/2013 09:09:24 [INFO] PIM - deleteAppletRegInfoRecords SUCCESS.

    15/07/2013 09:09:24 [INFO] PIM - deletePackageUpgradeInfoRecords SUCCESS.

    15/07/2013 09:09:24 [INFO] PIM - deletePackageInstallationInfoRecords SUCCESS.

    15/07/2013 09:09:24 [INFO] PIM - insertPackageUpdateList SUCCESS.

    15/07/2013 09:09:24 [INFO] PIM - insertAppletRegInfoList SUCCESS.

    15/07/2013 09:09:24 [INFO] PIM - created backup file

    15/07/2013 09:09:25 [INFO] utility - the file does not exist

    15/07/2013 09:09:31 [INFO] PIM - installPackage SUCCESS to the C:\New folder (2) file \Adobe presenter 8\Build\ASU\packages\UWA\UWA.pimx.

    15/07/2013 09:09:32 [INFO] C:\New Setup - finish by installing the package - file (2) \Adobe presenter 8\Build\ASU\packages\UWA\UWA.pimx

    15/07/2013 09:09:32 [INFO] C:\New - Start installation package - Setup folder (2) \Adobe presenter 8\Build\ASU\packages\CCM\CCM.pimx

    15/07/2013 09:09:32 [INFO] PIM - BEGINNING to the C:\New folder (2) file installPackage \Adobe presenter 8\Build\ASU\packages\CCM\CCM.pimx

    15/07/2013 09:09:32 [INFO] PIM - tries to access xml path: c:\Nouveau folder (2) \Adobe presenter 8\Build\ASU\packages\CCM\CCM.pimx

    15/07/2013 09:09:32 [INFO] PIM - XML is valid

    15/07/2013 09:09:32 [WARN] PIM - could not find node

    15/07/2013 09:09:32 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\ASU\packages\CCM\CCM.pimx.

    15/07/2013 09:09:32 [INFO] PIM - package validation file: "C:\New folder (2) \Adobe presenter 8\Build\ASU\packages\CCM\CCM.pima.

    15/07/2013 09:09:32 [INFO] PIM - id Package F0158AAB-0779-4B40-A07D-3F2A21D47E74 is already installed

    15/07/2013 09:09:32 [INFO] PIM - deleteAppletRegInfoRecords SUCCESS.

    15/07/2013 09:09:33 [INFO] PIM - deletePackageUpgradeInfoRecords SUCCESS.

    15/07/2013 09:09:33 [INFO] PIM - deletePackageInstallationInfoRecords SUCCESS.

    15/07/2013 09:09:33 [INFO] PIM - insertPackageUpdateList SUCCESS.

    15/07/2013 09:09:33 [INFO] PIM - insertAppletRegInfoList SUCCESS.

    15/07/2013 09:09:33 [INFO] PIM - created backup file

    15/07/2013 09:09:33 [INFO] utility - the file does not exist

    15/07/2013 09:09:35 [INFO] utility - path to the process: C:\Program Files (x 86) \Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeCreativeCloudClient.exe directory of process: \Common Files\Adobe\OOBE\PDApp\\CCM\Utilities arguments C:\Program Files (x 86) being passed: "C:\Program Files (x 86) \Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeCreativeCloudClient.exe" - registry = true - createShortcut = true

    15/07/2013 09:09:36 [INFO] utility - success of CreateProcess

    15/07/2013 09:09:37 [INFO] utility - Sucessfully launched and executed the process...

    15/07/2013 09:09:37 [INFO] PIM - executed correctly install modifier to the path: "C:\Program Files (x 86) \Common.

    15/07/2013 09:09:37 [INFO] PIM - installPackage SUCCESS to the C:\New folder (2) file \Adobe presenter 8\Build\ASU\packages\CCM\CCM.pimx.

    15/07/2013 09:09:37 [INFO] C:\New Setup - finish by installing the package - file (2) \Adobe presenter 8\Build\ASU\packages\CCM\CCM.pimx

    15/07/2013 09:09:37 [INFO] PIM - treatment... _pimCreateOrUpdateAAMInventory

    15/07/2013 09:09:37 [INFO] PIM - inventory already present on the machine...

    15/07/2013 09:09:37 [INFO] installation - TimeLog: installation of the end Lance PDApp.

    15/07/2013 09:09:37 [INFO] installation - path of deployment file not specified in command-line arguments. Skip the deployment of payload part

    15/07/2013 09:09:37 [INFO] installation - = end of Adobe installer. Exit code: 0 =.

    15/07/2013 09:09:37 [INFO] PIM - PIMSqlite closeDB status 0

    15/07/2013 09:09:37 [INFO] FREE PIM - PIM Instance...

    15/07/2013 09:09:37 [INFO] DeploymentManager - Build Version - 3.1.105.0

    15/07/2013 09:09:37 [INFO] DeploymentManager - verbosity Logging Level Set of 4

    15/07/2013 09:09:37 [INFO] DeploymentManager - the code returned by the boot process is (0).

    15/07/2013 09:09:37 [INFO] DeploymentManager - correction of dependencies in local db.

    15/07/2013 09:09:37 [INFO] DeploymentManager - no db media present on the machine.

    15/07/2013 09:09:37 [INFO] DeploymentManager - STEP 4: start the Adobe installer.

    15/07/2013 09:09:37 [INFO] DeploymentManager - path of the common Adobe got.

    15/07/2013 09:09:37 [INFO] DeploymentManager - Installer Adobe launch location is: C:\Program Files (x 86) \Common Files\Adobe\OOBE\PDApp\DECore\Setup.exe

    15/07/2013 09:16:50 [INFO] AAMEEUtilities - creation process is complete.

    15/07/2013-09:16:50 [FATAL] DeploymentManager - the code returned by the Adobe installation process is (6). Stop the installation process.

    15/07/2013 09:16:50 [INFO] DeploymentManager - begins to clean partially recessed payloads.

    {15/07/2013 09:16:50 [INFO] DeploymentManager - undeployment XML created to the path: D:\Users\Vmbuild\AppData\Local\Temp\{2592DDC9-72BD-430A-B2EA-C2839B69B46E}\\{EE4FEE4B-4C1 3 - 44E5 - 8 c 22-230423DB10EF}

    15/07/2013 09:16:50 [INFO] DeploymentManager - begins to launch the Adobe installer to uninstall mode.

    15/07/2013 09:16:50 [INFO] DeploymentManager - path of the common Adobe got.

    15/07/2013 09:16:50 [INFO] DeploymentManager - C:\Program Files (x 86) \Common Files\Adobe\OOBE\PDApp\DECore\Setup.exe

    15/07/2013 09:20:21 [INFO] PIM-uninstall - Version Build - 6.2.136.0

    15/07/2013 09:20:21 [INFO] PIM-Uninstall - verbosity Logging Level Set of 4

    15/07/2013 09:20:21 [INFO] PIM-uninstall - Start: uninstall Adobe Application Manager...

    15/07/2013 09:20:21 [INFO] PIM-Uninstall - County of SIDES occurs

    15/07/2013 09:20:21 [INFO] PIM-Uninstall - SIDES produced install status

    15/07/2013 09:20:21 [INFO] PIM-Uninstall - get the NO SIDE product count

    15/07/2013 09:20:21 [INFO] utility - file does not exist

    15/07/2013 09:20:21 [INFO] PIM-Uninstall - AAMRefs folder does not exist. Products non-cotes does not exist on the system

    15/07/2013 09:20:21 [INFO] PIM-Uninstall - SIDES NOT produced install status

    15/07/2013 09:20:21 [INFO] utility - the file does not exist

    15/07/2013 09:20:22 [INFO] utility - the file does not exist

    15/07/2013 09:20:22 [INFO] PIM-uninstall - launch RemoveAAM to: C:\Program Files (x 86) \Common Files\Adobe\RemoveAAM.bin

    15/07/2013 09:20:22 [INFO] UninstallAAM - argc: 2

    15/07/2013 09:20:22 [INFO] UninstallAAM - PIM.dll starting from loading: C:\Program Files (x 86) \Common Files\Adobe\AdobePIM.dll

    15/07/2013 09:20:22 [INFO] AAMEEUtilities - creation process is complete.

    15/07/2013 09:20:22 [INFO] DeploymentManager - the code returned by the Adobe installation process is (0).

    {15/07/2013 09:20:22 [INFO] DeploymentManager - sizing tool launch location is: D:\Users\Vmbuild\AppData\Local\Temp\{0EAD2103-39AF-4D85-B942-CAC0E462C482}\\{731F139B-D8D 6-4870-AA90-9626C4D6D4E2}

    15/07/2013 09:20:22 [INFO] PIM-uninstall - Version Build - 6.2.136.0

    15/07/2013 09:20:22 [INFO] PIM-Uninstall - verbosity Logging Level Set of 4

    15/07/2013 09:20:22 [INFO] PIM-Uninstall - killing all deployment workflows

    15/07/2013 09:20:22 [INFO] PIM-Uninstall - Check and wait on the installation of Adobe (Bootstrapper) runs...

    15/07/2013 09:20:22 [INFO] PIM-Uninstall - Check and wait on installation of Adobe (SIDES) if running...

    15/07/2013 09:20:22 [INFO] PIM-Uninstall - Check and wait if ACF is locked...

    15/07/2013 09:20:22 [INFO] PIM-Uninstall - Check and close notifiers Adobe Application Manager...

    15/07/2013 09:20:22 [INFO] utility - semaphore is not locked

    15/07/2013 09:20:22 [INFO] PIM - modifying installation execution

    15/07/2013 09:20:22 [INFO] PIM - Build Version - 6.2.136.0

    15/07/2013 09:20:22 [INFO] PIM - verbosity Logging Level Set of 4

    15/07/2013 09:20:22 [INFO] PIM - PIM INSTANTIATE...

    15/07/2013 09:20:22 [INFO] utility - the file does not exist

    15/07/2013 09:20:22 [INFO] PIM - trying to createOrUpdatePIMDbSchema.

    15/07/2013 09:20:22 [INFO] PIM - schema version current db on computer 1.

    15/07/2013 09:20:22 [INFO] PIM - schema version current db installation 1.

    15/07/2013 09:20:22 [INFO] PIM - PIM DB schema is updated. Current schema version is 1.

    15/07/2013 09:20:22 [INFO] PIM - PIM Database is Up To Date.

    15/07/2013 09:20:23 [INFO] utility - path to the process: C:\Program Files (x 86) \Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeCreativeCloudClient.exe directory of process: \Common Files\Adobe\OOBE\PDApp\\CCM\Utilities arguments C:\Program Files (x 86) being passed: "C:\Program Files (x 86) \Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeCreativeCloudClient.exe" - unregister = true - deleteShortcut = true

    15/07/2013 09:20:23 [INFO] utility - success of CreateProcess

    15/07/2013 09:20:23 [INFO] AAMEEUtilities - creation process is complete.

    15/07/2013 09:20:23 [INFO] DeploymentManager - the return Code of the tool in service (0).

    15/07/2013 09:20:23 [INFO] DeploymentManager - commissioning tool succeeded UnSerialize the product.

    15/07/2013 09:20:23 [INFO] DeploymentManager - install workflow ends.

    15/07/2013 09:20:25 [INFO] utility - Sucessfully launched and executed the process...

    15/07/2013 09:20:25 [INFO] PIM - executed properly uninstall modifier to the path: "C:\Program Files (x 86) \Common.

    15/07/2013 09:20:25 [INFO] PIM - PIMSqlite closeDB status 0

    15/07/2013 09:20:25 [INFO] FREE PIM - PIM Instance...

    15/07/2013 09:20:33 [INFO] UninstallAAM - Self delete to delete RemoveAAM.bin and AdobePIM.dll...

    1. Office 2010 64 bit as a dependency.

    2. the register used to deceive the 64-bit version of PowerPoint application is already installed.

    Even though source works with 32-bit powerPoint. but need to MSI 64-bit powerpoint.

  • Create the HTML using UTL_FILE

    I'll send emails using UTL_MAIL, sending the HTML, I generate dynamically to a cursor and the text with UTL_MAIL sending. SEND_ATTACH_VARCHAR2.

    When I get these emails, some periods are missing some very important numbers.

    I decided to record this HTML code in my server and then send it using UTL_MAIL. SEND_ATTACH_RAW.

    How can I create this HTML using UTL_FILE file and save it to a folder on my server. After you send the message, I would like to delete this file.

    I already have my HTML code and just want to save it as a HTML file.

    First create a virtual directory of the Oracle who can access the path specified in your server. Make sure that your procedure have write access to this directory.

    then in your code, you create something like this
    IE - myFileName 'ABCD.html' +.
    myDIR - IE 'YourOracleVirtualDir ' +.

    CREATE OR REPLACE PROCEDURE CREATE_HTML
    (myFileName IN VARCHAR2, myDir IN VARCHAR2) AS

    v_cFile UTL_FILE. TYPE_DE_FICHIER;
    v_cDir VARCHAR2 (30): = myDir.
    v_cExcept EXCEPTION;

    BEGIN

    v_cFile: = UTL_FILE. FOPEN (v_cDir, myFileName, 'W');
    UTL_FILE. PUT(v_cFile,e)'|| Chr (13) | Chr (10));
    UTL_FILE. PUT (v_cFile, "It's your HTML Code" |) Chr (13) | Chr (10));
    UTL_FILE. PUT(v_cFile,e)'|| Chr (13) | Chr (10));
    UTL_FILE. FCLOSE (v_cFile);

    EXCEPTION

    WHILE OTHERS THEN
    UTL_FILE. FCLOSE (v_cFile);
    RAISE_APPLICATION_ERROR (-20010, SQLERRM);

    END;

    to remove the file, you can use

    UTL_FILE. FREMOVE (myDir, myFileName);

    Published by: lie Ching Te on January 20, 2010 07:53

  • is there a JQuery TEXTAREA Wizard to connect to the database to store information and retrieve recordsets to view?

    is there a JQuery TEXTAREA Wizard to connect to the database to store information and retrieve recordsets to view?

    OK - I am referring to a replacement for the old form assistant manuals spry validation...

    Hello brendanm2430678,

    We at DMXzone have developed a replacement server DW and Spry Actions behaviors. Please see the following article: http://www.dmxzone.com/go/22096/updated-replacing-dreamweaver-server-behaviors-with-dmxzon e-extensions

  • How to increase the font size to the bridge using windows 7 and a k 4 monitor?  It seems that this problem has come up before, but there is no answer.

    How to increase the font size to the bridge using windows 7 and a k 4 monitor?  It seems that this problem has come up before, but there is no answer.

    For Windows, you can try this:

    Adobe App scaling on the screens to high-resolution (FIX) | Dan Antonielli

  • create the file using flex

    Hello

    I work in flex.

    I want to create the file using flex 4.

    I use this code

    private var file:File;

    private function addfolder (): void

    {

    file = new File ("file:///C:/MyNewFolder");

    file.createDirectory ();

    }

    the error is

    Type was not found or was not a compilation constant: file.

    anyone helpme

    concerning

    Athi

    Hello

    With flex, you need to display the filereference function record. Because of the security sandbox you cannot programmatically save files or create folders, you need to open a box to browse to windows files, so the user can create a folder or save a file.

    private void testme (): void

    {

    var fi: FileReference = new FileReference();

    fi. Save ('Hello');<=== this="" would="" open="" a="" system="" file="" save="">

    }

    David.
  • I get "failed to set the refresh attribute COMMIT for the materialized view" when I try to create a MV using a table and another MV

    Experts,

    I'm trying to create a YOUNG refreshable ON COMMIT MV (xyz) using a table (circuit) and quickly updateable on validation MV (abc), but get an error:

    SQL error: ORA-12054: cannot set the attribute ON COMMIT refresh for the materialized view

    12054 00000 - "cannot set the refresh attribute COMMIT for the materialized view.

    * Cause: The materialized view did not meet the requirements for update to

    moment of validation.

    * Action: Specify only valid options.

    1] MV abc
    = MV abc defined as below =.

    CREATE MATERIALIZED view abc_MV

    Immediate CONSTRUCTION

    REFRESH QUICKLY YOU COMMIT using constraints of trust

    WITH ROWID AS SELECT n.*,.

    n.ROWID noderowid

    node n

    where n.nodetype in (1610000069,1610007267);


    -Above works OK and MV connect you on table node is created successfully

    =====================================================

    [ 2] Circuit Board

    ======================================================

    CREATE MATERIALIZED VIEW LOG ON Cramer.Circuit WITH SEQUENCE, ROWID ( ) -all columns of table ofcircut parentheses

    INCLUDING THE NEW VALUES;

    -More top works OK and MV connect you on table circuit is created successfully

    ======================================================



    [3] trying to create MV xyz

    ======================================================

    CREATE MATERIALIZED VIEW LOG ON cramer.abc_MV WITH SEQUENCE, ROWID ( ) -all columns of abc_MV brackets

    INCLUDING THE NEW VALUES;

    -Above works OK and log on ABC MV MV gets created successfully

    -Problematic step below

    Xyz_MV CREATE MATERIALIZED VIEW

    IMMEDIATE CONSTRUCTION

    REFRESH QUICKLY YOU COMMIT using constraints of trust

    AS

    SELECT c., c.rowid circuit_rowid, n.rowid tr_rowid

    the circuit c, abc_mv n

    where circuit2startnode = n.nodeid

    and c.rpplanId = n.rpplanId;
    ==========================================================

    Clues on how to solve this problem and make quickly updatable ON Commit MV xyz

    Thanks in advance.

    Chanchal,

    If you can read my original post carefully you may have noticed that all these restrictions will not apply in my case.

    All,

    In any case I found the solution to my problem.

    There are a few additional restrictions for materialized views multilayer

    Additional Restrictions for master materialized views

    The following types of materialized views may not be masters of editable materialized views:

    • ROWIDmaterialized views
    • Complex materialized views
    • Read-only materialized views

    I've updated the underlying MV abc below and everything worked like a charm

    CREATE MATERIALIZED view abc_MV

    Immediate CONSTRUCTION

    REFRESH QUICKLY YOU COMMIT using constraints of trust

    IN SELECT

    n.*, n.rowid noderowid, nt.rowid nodetyperowid

    the node n, nodetype_m nt

    where n.node2nodetype = nt.nodetypeid

    and nt.nodetypeid in (1610000069,1610007267);

    Note: To ADD a join without which I was getting error below (although had primary key on the table of the node)

    SQL error: ORA-23415: materialized view log for "NODE" does not save the primary key

    23415 00000 - "view the log for materialized \"%s\".\"%s\"does not save the primary key.

    * Cause: A primary key materialized view is refreshed quickly, but the

    The materialized view log does not record the primary key information.

    * Action: Use CREATING MATERIALIZED VIEW LOG... Command to add a PRIMARY KEY to

    start recording of the primary key information in the materialized view

    Newspaper.

  • Create the view using SQL DEVELOPER

    I'm new to this forum :)

    11 GR 2, WIN2008 R2

    SQL Developer Version 3.2.09

    I am creating the data below view (view existing)

    Table: Dovmarker
    MARKERBOREHOLE                             UWI             MARKERSURFACE              Z
    WELLXXX               65372643AAAA     Cw     -982,985619574516
    WELLXXX               65372643AAAA     Cn     -1891,47401803955
    WELLXXX               65372643AAAA     J     -674,989528816517
    WELLXXX               65372643AAAA     K3     20,00165000429
    WELLXXX               65372643AAAA     Tr     125,000317308153
    WELLXXX               65372643AAAA     K1     -658,989731894024
    WELLXXX               65372643AAAA     Q     149,999999999549
    
    WELLYYY                          56618334AAAA     Jkm     -715,071442105268
    WELLYYY                          56618334AAAA     K3     36,9013966413975
    WELLYYY                          56618334AAAA     J2     -976,056079257549
    WELLYYY                          56618334AAAA     Tr     106,900507694299
    I try to describe the table and my goal :),

    each line describes wells, uwi(uniqe identifier), z (deppth), high (surface marker)

    I try to merge all lines with the same MARKERBOREHOLE/UWI and MARKERSURFACE contact coresponding Z (ascending) as MARKERSURFACE = Z.
    If it is posibble to reduce the number of decimals to 2.

    My idea to solve the problem:
    example: ' | ' is the delimiter
    WELLXXX    Q=149,999999999549 | Tr=125,000317308153 | K3=20,00165000429 |  K1=-658,989731894024 | J =-674,989528816517 | Cw=-982,985619574516 | Cn=-1891,47401803955
    WELLYYY   Tr=106,900507694299 | K3=36,9013966413975 |  Jkm=-715,071442105268 | J2=-976,056079257549
    or better (not enough knowledge ;))
    WELLXXX    Q=149,999999999549 
                     Tr=125,000317308153
                     K3=20,00165000429 
                     K1=-658,989731894024 
                     J =-674,989528816517 
                     Cw=-982,985619574516 
                     Cn=-1891,47401803955
    
    WELLYYY   Tr=106,900507694299 
                     K3=36,9013966413975 
                     Jkm=-715,071442105268 
                     J2=-976,056079257549
    Number of markersurface is different for each well


    I try to do it by the listagg function, but I have failled
    select markerborehole, listagg(z, ' | ') within group (order by z) as new1 
      from dovmarker
      group by markerborehole;
     
    result:
    WELLZZZ  -2575,95869465411 | -1891,47401803955 | -982,985619574516 | -674,989528816517 | -658,989731894024 | 
    WELLRRR -2376,96975480605 | -2376,96975480605 | -2308,97180590009 | -2308,97180590009 | -2206,47428534641 | -2206,47428534641 | -2163,97522524171
    When I tried to create new view in sql developer I occurred error;
    Error(s) parsing SQL:
    unexpected token near *!* in the following:
    select markerborehole, listagg(z, ' | ') within *!*group (order by z) as new1
    unexpected token near *!* in the following:
    select markerborehole, listagg(z, ' | ') within group *!*(order by z) as new1
    missing expression near *!* in the following:
    select markerborehole, listagg(z, ' | ') within group (*!*order by z) as new1
    Can you help me with this?

    Concerning
    Jaroslaw

    961148 wrote:
    I missed x

    Well Yes, my apologies, I has not changed all that.

    It's a simple way to format the Z value to 2 decimal places?

    Yes. It depends on if you want to use rounded, floor, ceiling, truncate or if you like a string always have 2 decimal places etc.
    Make your choice and customize according to your needs...

    SQL> ed
    Wrote file afiedt.buf
    
      1  with t as (select 'WELLXXX' as MARKERBOREHOLE, '65372643AAAA' as UWI, 'Cw' as MARKERSURFACE, -982.985619574516 as Z from dual union all
      2             select 'WELLXXX', '65372643AAAA', 'Cn', -1891.47401803955 from dual union all
      3             select 'WELLXXX', '65372643AAAA', 'J', -674.989528816517 from dual union all
      4             select 'WELLXXX', '65372643AAAA', 'K3', 20.00165000429 from dual union all
      5             select 'WELLXXX', '65372643AAAA', 'Tr', 125.000317308153 from dual union all
      6             select 'WELLXXX', '65372643AAAA', 'K1', -658.989731894024 from dual union all
      7             select 'WELLXXX', '65372643AAAA', 'Q', 149.999999999549 from dual union all
      8             select 'WELLYYY', '56618334AAAA', 'Jkm', -715.071442105268 from dual union all
      9             select 'WELLYYY', '56618334AAAA', 'K3', 36.9013966413975 from dual union all
     10             select 'WELLYYY', '56618334AAAA', 'J2', -976.056079257549 from dual union all
     11             select 'WELLYYY', '56618334AAAA', 'Tr', 106.900507694299 from dual)
     12  --
     13  -- END OF TEST DATA - IGNORE ABOVE WITH CLAUSE
     14  --
     15  select z
     16        ,round(z,2) as round_z_2
     17        ,floor(z*100)/100 as floor_z_2
     18        ,ceil(z*100)/100 as ceil_z_2
     19        ,trunc(z,2) as trunc_z_2
     20        ,to_char(round(z,2),'fm9990.00') as string_z_2
     21* from t
    SQL> /
    
                      Z  ROUND_Z_2  FLOOR_Z_2   CEIL_Z_2  TRUNC_Z_2 STRING_Z
    ------------------- ---------- ---------- ---------- ---------- --------
     -982.9856195745160    -982.99    -982.99    -982.98    -982.98 -982.99
    -1891.4740180395500   -1891.47   -1891.48   -1891.47   -1891.47 -1891.47
     -674.9895288165170    -674.99    -674.99    -674.98    -674.98 -674.99
       20.0016500042900         20         20      20.01         20 20.00
      125.0003173081530        125        125     125.01        125 125.00
     -658.9897318940240    -658.99    -658.99    -658.98    -658.98 -658.99
      149.9999999995490        150     149.99        150     149.99 150.00
     -715.0714421052680    -715.07    -715.08    -715.07    -715.07 -715.07
       36.9013966413975       36.9       36.9      36.91       36.9 36.90
     -976.0560792575490    -976.06    -976.06    -976.05    -976.05 -976.06
      106.9005076942990      106.9      106.9     106.91      106.9 106.90
    
    11 rows selected.
    

    with above code I try to create a new view in SQL Developer, but I have error:

    Error(s) parsing SQL:
    Unexpected token near *!* in the following:
    select markerborehole, listagg(z,chr(10)) within *!*group(order by rn) as z
    Unexpected token near *!* in the following:
    select markerborehole, listagg(z,chr(10)) within group*!*(order by rn) as z
    Missing expression near  *!* in the following:
    select markerborehole, listagg(z,chr(10)) within group(*!*order by rn) as z
    

    What are all the {noformat}! * * {noformat} in the code? Delete them.

    Edit: or maybe your version of SQL Developer is not up-to-date and does not know the new LISTAGG function in 11g?

    Published by: BluShadow on 26-Sep-2012 09:41

  • Remove the Cookie using Javascript and App_Process

    Dear experts Apex!

    I've tried throughout the day and I think it's finally time to ask!

    I use jquery tabs with the jquery cookie option enabled.
    It works very well, but since I have a lot of pages I want to delete the cookie when you move to another page.
    This is due to the fact that if I open the tab-3 on page 1 and go to the page 2 subsequently, tab-3 on page two will be selected, whereas it be tab-0.

    My idea is that the cookie should be created from scratch when you switch pages.

    That's why I created an application process:
    Begin
    HTP.p ('<script type="text/javascript">');
    HTP.p ('$.cookie(''tabID Cookie'', null);');
    HTP.p ('</script>');
    
    End;
    and set the condition to equals "dc".

    Since I was on the menus (drop) list, the value of the application of these list items has the value "dc" as well.
    I know that the application process is triggered since I tested it with an alert message.

    However, the cookie is not deleted!

    You have everything related to me?

    Thanks in advance!

    Brgds,

    SEB

    Hello

    Ok

    You have to load the htmldbQuery plugin?
    Calculate a value of zero before the header element P510_SEL_TAB if it is null.

    Kind regards
    Jari

    Published by: jarola on March 4, 2011 13:48

    And make sure your hidden item is not "hidden and protected."
    Use only the hidden type

    Published by: jarola on March 4, 2011 13:50

    In fact, I don't have use of the hidden element calculation

    My hidden element

    Display as: hidden
    Source: only when current value in session state is null
    Source type: static assignment (the value corresponds to the attribute of the source)
    Source of value or an expression: 0
    Default value: 0
    By default the value Type: static text with Substitutions of Session State

    Published by: jarola on March 4, 2011 13:57

    If you do not use the htmdlQuery plugin, below should work

    
    
  • Using PL/SQL to retrieve column names and column values

    If I have a table as follows

    Table has)
    meal varchar2 (32),
    drink varchar2 (32),
    VARCHAR2 (32)) desert.

    and the table contains a row

    drinks food desert
    -------------------------------------------------------
    Pork chops crispy Apple of iced tea


    Is it possible in pl/sql to retrieve the names of columns and values. I have an object type
    (OBJECT) ACE DATA_DEFINITION_T
    VARCHAR2 (32) 'FIELD_NAME ',.
    'FIELD_VALUE' VARCHAR2 (32)

    I need to store the column name in field_name and the value of column in field_value.

    So, the result would be:

    Field_name = meals
    Field_value = pork_chops

    Field_name = drink
    Field_value = iced tea

    Field_name = desert
    Field_value = croustade

    Thanks in advance.

    The Subscriber to the queue will pick up the message and how to process the data (field_value) based on the field_name (s). With the domain name, it cannot be what to do with the data.

    Sounds like an XML approach would be better than this owner = value field.

    You have considered things like [DBMS_XMLGEN | http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14259/xdb13gen.htm#i1025386]?

    Concerning
    Peter

  • How to create sql and read values in peoplecode page?

    Hello PS, team

    I have different sqls to be executed at the app level and based on the values retrieved I need to fill in the grid which is at level 2.

    Could anyone suggest how to use my sql to create the sql function and load the data into the grid accordingly.

    Thanks in advance

    Page activate PeopleCode is the wrong place to be load data.  This should really only be used to show/hide features.

    Discover the PeopleBooks - treatment of sequences for more details on the logical place to put the code you're after.

Maybe you are looking for

  • Live from multiple devices fails if in some time slots

  • Reinstall XP Home

    "The following list shows the existing partitions and unpartitioned on my computer space. 38147 MB disk 0 at Id 0 on bus 0 on atapi (MBR) -: Partition 1 FAT 31 MB 24 MB of free space C: partition 2 NTFS 34522 19351 MB free G: FAT32 Partition 3 3585 M

  • Internet Explorer cannot display this webpage

    Internet Explorer cannot display this webpage, it is my problem. as a side note, I can use OE and play games online without any problem. On the same computer with a 'new' profile, I can navigate without problem but cannot use OE or OUTLOOK, I am runn

  • Failed to retrieve the serial number, chat is always closed,

    I initially bought Photoshop many years ago and had set up account [deleted by Moderator] . What ever why it stopped working a year or two back so I created a new account that works very well since then. Now I need to recover the serial numbers of th

  • $32,32 21.54 I want my money refunded the difference...!

    Why did I summer pay US$ 32,32 since March 28, 2014 Bill US $32.32?I was paying February 28, 2014 (US$ 21.54 bill every month) (student/teacher version)...I want my money refunded the difference...!ASAP PLEASE!Thank you...