Compare and update

Hello ,
I have one table where two different coulmn have zip code.
Column A have 9 digit Zip and Coulmn B have 5 digit Zip.
I want to update the coulmn B (with Remaining last 4 digit of column A ) if first five digit of Coulmn A is Match with Coulmn B 5 digit zip
Please, suggest.
A B
199711933     19971
200091557     20009
200152356 20015
200113574     20011
028650000 02865
199561030     19956
199771024     19977
Thanks in Advance

How about something like this?
UPDATE  ZIP_TABLE
SET     COLB = COLB || SUBSTR(COLA,6)
WHERE   SUBSTR(COLA,1,5) = COLB;Sample below:
SQL> CREATE TABLE    ZIP_TABLE
  2  (
  3          COLA    VARCHAR2(9)
  4  ,       COLB    VARCHAR2(9)
  5  );
Table created.
SQL> INSERT INTO ZIP_TABLE VALUES('199711933','19971');
1 row created.
SQL> INSERT INTO ZIP_TABLE VALUES('200091557','20009');
1 row created.
SQL> INSERT INTO ZIP_TABLE VALUES('200152356','20015');
1 row created.
SQL> INSERT INTO ZIP_TABLE VALUES('200113574','20011');
1 row created.
SQL> INSERT INTO ZIP_TABLE VALUES('028650000','02865');
1 row created.
SQL> INSERT INTO ZIP_TABLE VALUES('199561030','19956');
1 row created.
SQL> INSERT INTO ZIP_TABLE VALUES('199771024','19977');
1 row created.
SQL> SELECT * FROM ZIP_TABLE ORDER BY COLA;
COLA      COLB
028650000 02865
199561030 19956
199711933 19971
199771024 19977
200091557 20009
200113574 20011
200152356 20015
7 rows selected.
SQL> UPDATE  ZIP_TABLE
  2  SET     COLB = COLB || SUBSTR(COLA,6)
  3  WHERE   SUBSTR(COLA,1,5) = COLB;
7 rows updated.
SQL> SELECT * FROM ZIP_TABLE ORDER BY COLA;
COLA      COLB
028650000 028650000
199561030 199561030
199711933 199711933
199771024 199771024
200091557 200091557
200113574 200113574
200152356 200152356
7 rows selected.

Similar Messages

  • Compare and update the same Column

    Hi ,
    SQL> select * from
    v$version;
    BANNER
    Oracle Database 10g Express
    Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 -
    Production
    CORE 10.2.0.1.0 Production
    TNS for 32-bit Windows:
    Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 -
    Production
    I am having an issue in Updating the column in a Table.......
    What i am trying to do is ...Compare 2 column and then update one of the compared column....
    Table 1 Name: TEST1 _
    bq. LNID \\ NEW_AN8 \\ OLD_AN8 \\ OLD_DESC \\ 2 \\ 123002 \\ 100001 \\ C2370 \\ 125846 \\ 100001 CS24 \\ 123024 \\ 100028 \\ C2392 \\ 125868 \\ 100028 CS25 \\ 123025 \\ 100036 C2393 \\ 125869 \\ 100036 CS26 123026 \\ 100116 \\ C2394 \\ 125870 \\ 100116 \\ CS
    TEST2_
    SZAN8     SZAN82     SZAN86     SZAT1
    123,002 100,001 100,001 C
    125,846 100,001 100,001 CS
    123,024 100,028 100,028 C
    125,868 100,028 100,028 CS
    125,869 100,036 100,036 CS
    123,025 100,036 100,036 C
    125,870 100,116 100,116 CS
    123,026 100,116 100,116 C
    I wanted to update SZAN82 of TEST2 table..... based on the SZAT1 value ...
    I shud be able to pick the CS type record first then the C type record and the SZAN82 value and check whether it is present in the TEST1 table if it present then I shud update the AN82 value,,
    UPDATE LPLSCHEMA.LPL_F0101Z2_CUSTOMER C SET (SZAN82)=
    (SELECT NEW_AN8 FROM LPL_CROSS_CUSTOMER B,LPL_F0101Z2_CUSTOMER C WHERE C.SZAT1='CS' AND B.OLD_DESC='CS'and C.szan82=B.old_an8);
    I tried like tis .... i got an Error sub query more than one rows ...
    Thanks in Advance !!
    Ananda
    Edited by: Ananda on Jan 2, 2009 6:30 PM
    Edited by: Ananda on Jan 2, 2009 6:30 PM
    Edited by: Ananda on Jan 2, 2009 6:34 PM
    Edited by: Ananda on Jan 2, 2009 6:37 PM

    Or:
    UPDATE  LPLSCHEMA.LPL_F0101Z2_CUSTOMER C
      SET   SZAN82 = (
                      SELECT  NEW_AN8
                        FROM  LPL_CROSS_CUSTOMER B
                        WHERE C.SZAT1='CS'
                        AND B.OLD_DESC='CS'
                        AND C.szan82=B.old_an8
      WHERE (SZAT1,szan82) IN (
                                SELECT  'CS',
                                        old_an8
                                  FROM  LPL_CROSS_CUSTOMER B
                                  WHERE B.OLD_DESC='CS'
                              );Or, depending on your version and table structure:
    UPDATE  (
             SELECT  C.SZAN82,
                     B.NEW_AN8
               FROM  LPL_CROSS_CUSTOMER B,
                     LPL_F0101Z2_CUSTOMER c
                     WHERE C.SZAT1='CS'
                     AND B.OLD_DESC='CS'
                     AND C.szan82=B.old_an8
      SET   SZAN82 = NEW_AN8
    /SY.

  • Implement the Logic in Mapping to select, compare and update on one table

    Hi All,
    We have a Sales Order history table *(HISTORY_TABLE)* and we want implement the below logic in warehouse builder where we are using only one table for checking the condition and selecting the records to update in the HISTORY_TABLE.
    Like
    SELECT ORDERNO, LINENO, ORDERTYPE FROM HISTORY_TABLE A
    WHERE EXISTS IN (SELECT ‘X’
    FROM HISTORY_TABLE B
    WHERE A. ORDERNO = B. ORDERNO
    AND   A. LINENO = B. LINENO
    AND   A.ORDERTYPE = B. ORDERTYPE
    HAVING MAX (B.PDDJ) = 0)
    Thanks in advance.

    Hi,
    you can implement this as
    SELECT A.ORDERNO, A.LINENO, A.ORDERTYPE FROM HISTORY_TABLE A,
    (SELECT ORDERNO,LINENO,ORDERTYPE FROM HISTORY_TABLE GROUP BY ORDERNO,LINENO,ORDERTYPE HAVING MAX(PDDJ) = 0) B
    WHERE A.ORDERNO = B.ORDERNO
    AND A.LINENO = B.LINENO
    AND A.ORDERTYPE = B.ORDERTYPE Use Aggregator (group by with having) and then Joiner
    Regards,
    Oleg

  • Compare table A and table B and update table B ,,,,table B has 300k rows

    Hi,
    I m trying to write a code, I have tables A and table B.
    I need to compare table A and table B , and update table B with one column.
    using joins b/w A&B tables, I selected one record from table A in cursor.
    After Begin I m trying to open cursor and in FOR LOOP
    Im trying to update table B WHERE CURRENT OF Cursor.
    this is erroring out.
    could you let me know on this.
    there is another way like selecting required columns from both table.but i was told to do as above.
    Thanks

    > this is erroring out.
    You haven't posted nearly enough for anyone to help you.  You didn't even tell us what error you are getting.
    So about the only thing we can do is post a generic MERGE statement which you'll have to modify for your use.
    merge into tableB b
    using (select some_key, some_column from tableA where etc.) u
    on (u.some_key = b.some_key)
    when matched then update
    set b.some_column = u.some_column;

  • Comparing Two tables with 300k records and update one table

    Could you let me know how to compare two tables having 300k records and update one table.below is the scenario.
    Table Tabl_1 has columns A,B and Tabl_2 has columns B,new_column.
    Column B has same data in both the tables.
    I need to update Tabl_2 in new_column with Tabl_1 A column data by comparing B column in both tables.
    I m trying to do using PLSQL Tables.
    Any suggestion?
    Thanks.

    Hi,
    Whenever you have a problem, please post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) from all tables involved, so that the people who want to help you can re-create the problem and test their ideas.
    Also post the results you want from that data, and an explanation of how you get those results from that data, with specific examples.
    If you're asking about a DML statement, such as UPDATE, the CREATE TABLE and INSERT statements should re-create the tables as they are before the DML, and the results  will be the contents of the changed table(s) when everything is finished.
    Always say which version of Oracle you're using (for example, 11.2.0.2.0).
    See the forum FAQ: https://forums.oracle.com/message/9362002
    ef2019c7-080c-4475-9cf4-2cf1b1057a41 wrote:
    Could you let me know how to compare two tables having 300k records and update one table.below is the scenario.
    Table Tabl_1 has columns A,B and Tabl_2 has columns B,new_column.
    Column B has same data in both the tables.
    I need to update Tabl_2 in new_column with Tabl_1 A column data by comparing B column in both tables.
    I m trying to do using PLSQL Tables.
    Any suggestion?
    Thanks.
    Why are you trying to use PL/SQL tables?  If tabl_1 and tabl_2 are regular database tables, it will be much simpler and faster just to use them.
    Depending on your requirements, you can do an UPDATE or MERGE, either in SQL or in PL/SQL.

  • Compare 45 columns and update one table col

    I am using Oracle 9i database.I need to compare each record between two tables
    and update the one of table column (what records are updated)
    CURSOR cur1 is select t1., t2. from t1, t2 where t1.primarykey = t2.primarykey
    FOR rec1 IN cur1
    LOOP
    IF rec1.t1_col_1<>rec1.t2_col_1
    then
    update t1
    set col_t1.rem="MOdified",t.col_1=rec1.t2_col_1
    where t1.primerykey=rec1.primarykey
    END IF;
    IF rec1.t1_col_2<>rec1.t2_col_2
    then
    update t1
    set col_t1.rem="MOdified",t.col_2=rec1.t2_col_2
    where t1.primerykey=rec1.primarykey
    END IF;
    ..........45 if else conditions
    END LOOP;
    I have 1 million records to compare and 45 columns to compare, how do I increase performance.
    Currently it takes about 5hrs for the cursor to go through this if -else comparison.
    Thanks and Regards
    Swayamprakash.Chiluveru

    Hi Swayamprakash,
    Few basics first.
    1. DML SQL's perform better than PL/SQL. Sounds great but Oracle then need to hop between SQL and PL/SQL engine for every record in the cursor causing THRASHING. This is an old concept, reference of which can be found in Operating Systems.
    With Bulk Collect option, this could be minimized to a large extent, but causes a large amount of Undo being generated. This is another pitfall of using Bulk Collect. Morever, when you expect more percentage of records to be updated, it is advisable that the indices (if any) must be disabled. They can be rebuild afterwards causing very minimal amount of Undo. Performance gain is expected here.
    Now a query that you need to clarify:
    1. One million records to be updated on a diurnal basis - An OLTP database might need this functionality which is better handled by a screen driven interface rather than a SQL/Procedure running in background.
    An OLAP database must simply ignore such requirements for they are meant to be history archives.
    Suggestion:
    Merge - Seems to be the only optimal solution at the moment for the exact requirements are unclear. Already, somone has suggested this.
    Oracle Developers, DBA's must setp out from technicalities and turn towards functionality.
    Kind regards,
    Abhijit

  • Need help to compare and replace

    Hi All,
    I have a cumulative file that is appended at the end of the month. The Table holds customer information, like:
    customer_id, name, address, phone, notes, DATE_STAMP
    In addition to this, I have other Tables that are split up into monthly Tables and information for these monthly Tables is gotten from this one cumulative Table. When I collect information at the end of the month (which is appended into the cumulative Table that grows in size), I put the name of the MONTH into the DATE_STAMP column. MARCH, APRIL, MAY< JUNE, etc......
    So I select all of MARCH (from the cumulative Table) and then that is put into the MARCH Table. These monthly Tables are compared with other control Tables for analysis purposes.
    So, the challenge is that say in APRIL or in MAY, an important column value changes in the cumulative Table and I need to update the Monthly Tables to reflect that.
    So.... I will concentrate on the key columns.
    customer_id, DATE_STAMP, Sales_Person_Assigned
    From the cumulative Table (which has many months), say I select all of MARCH and move those customers to a MARCH_TABLE. I will use one customer as Example:
    customer_id, DATE_STAMP, Sales_Person_Assigned
    12345, MARCH, NULL
    Then in APRIL, more data goes into the cumulative file, and those are stamped APRIL for the DATE_STAMP column.
    So, when I check the customer that was in MARCH, now in this file, they might be like this: (sales person updated the record)
    customer_id, DATE_STAMP, Sales_Person_Assigned
    12345, MARCH, Frank Smith
    I need a way to take the CUMULATIVE Table and compare it with the corresponding MONTH_Table and update that Null to Frank Smith.
    So say it is: September now and we have 9 separate Tables Jan - September and the ONE cumulative Tables that has Jan - September, I need that one cumulative Table to check all the individual Tables and based on:
    customer_id AND DATE_STAMP - do a JOIN match there and if the value was null before in the Sales_Person_assigned field, if that is no longer null, update that to the new value from the cumulative to the monthly tables.
    Any help would be appreciated, sorry if this sounds too complicated.

    Thanks Sean and Frank for replying.
    This problem is a little bit more complicated, I didn't want to post all the little details, no body would read my post (I am afraid). The Sales people update their Store data in a Excel sheet, they have no access to a Database or know anything about databases, they can barely use Excel as it is. I know this sounds bad, but that's the way it is, I have no control over that.
    So in their sheet, the customer_id stays constant, and DATE_STAMP (once that is stamped) also stays constant, they might manually go in and change a NULL value under the Sales_Person_Assigned cell to the name of the Sales person.
    So when I bring in new records, and (2) the manual changes to records that are already there, I need to update that change from the CUMULATIVE into the MONTHLY.
    so:
    WAS
    customer_id: 12345
    DATE_STAMP: MARCH
    Sales_Person_Assigned: NULL
    NEXT MONTH IT NOW IS:
    customer_id: 12345
    DATE_STAMP: MARCH
    Sales_Person_Assigned: Frank Smith
    I need a query that will look into all the MONTHLY_TABLES and sync the change of that Sales_Person_Assigned.
    Because the entire Analysis (done by a different person and department) is based on the idea that a customer will shop more and spend more when they have a dedicated Sales_Associate to help them vs. no body.
    I hope this make it clear. Sean's Query is close to what I need.
    I was thinking if there is a way to this: If there is a change that makes it into the MONTHLY_TABLE to also maybe create a new column in the MONTHLY_TABLE so indicate a change and put a Date in there, so I know which rows were updated and which were not.
    Hope this is more clear.

  • How to maintain several views of the same data and update a tree

    I have an object UiUser, which is displayed in my application in several different views. There are three different views which all have the User object i.e. search results, user tree and user table. Each of the views has the same menu items, so the user can be deleted from any of the views.
    What I am trying to work out is how should I ensure the item is updated in all of the views?
    I can fire a property change event with the UiUser and update two of the views i.e. search results and user table, but how do I update the tree?
    I thought of overiding the equals/hashcode methods of the UserTreeNode to compare uiUser.getId () and I could then search the tree and find the tree node of the required UiUser. But I have reservations about this whole approach as it just seems wrong.
    Any ideas of how to keep N views in sync, I really don't want all of the views to have tree nodes as this equally seems wrong. This should be a simple problem to solve and I'm sure lots of people have done it, I'm just not sure which is the best approach to take.
    Thanks

    Hi Jan,
    This is so because each installer has a GUID that is used to check whether the application needs to be upgraded or not. (It's a Microsoft function).
    What you can do is create a new installer with a different GUID (copy the installer in the projects), and check witha  text editor whether this GUID has changed.
    But any specific reason you need two seperate installs? You can run the application twice with a specific INI token:
    allowmultipleinstances=True
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • Application Manager (6.2all) fails to Install Apps and Update Apps

    I have searched the forums for weeks and have yet to find a solution that works.  I am currently running WIndows 7 Pro 64 Bit in a corporate environment.  I orginally installed all my apps from the Application Manager and then one day about a month ago, it stopped working.  I know I have read posts that you can download the trials but there are certain products that you cannot get in a trial like Edge Animate.  I have done the following things to resolve: (in no paticular order, just everything I have tried thus far).  I really need to get Edge Animate installed.  I have spent over a week trying to solve this so hopeuflly someone out there can see something I am not.
    Read all my logs and compared them to other forum issues.
    Uninstalled every Adobe App and ran the Cleaner Tool.
    Re-Installed the AAM Manager 6.2all.
    Created a new admin account on my computer and tried from there.
    Tried on a different computer.
    Renamed my OOBE folder.
    Turned off all my antivirus and firewall software.  I tested to make sure that I could get to the https license site and I could. 
    Rebuilt my machine from scratch.  NO ADOBE SOFTWARE, ANIT-VIRUS etc.  Still the same issues.  For installing new software I get:  The download appears corrupt, Press Cancel -(60)
    And for updates I get: Update Failed: The download appears corrupt.  ...... (U43M1D207).
    Here is the weird part.  I watch step by step what it does.  I open up Applicaiton Manger.  Click on Install (say for Edge Animate).  Go to my Users\AppData\Local\Temp folder and see that it creates a temporary folder with letters and numbers.  I can see 4 files being downloaded fully.  Edge Animate.exe (2), Manifest.xml and info.  It fully downloads them and then they disappear and that's  when the error appears.  I made sure that the proper rights were on that folder and set to Full Access. 
    Here is my PDAPP.log:  I cleared out the log and ran the install for a new app and an update so you can see both errors.
    02/05/13 12:01:12:611 | [INFO] |  | ASU | RunMeFirst | RunMeFirst |  |  | 6248 | Build Version - 7.0.0.230
    02/05/13 12:01:12:611 | [INFO] |  | ASU | RunMeFirst | RunMeFirst |  |  | 6248 | Logging Level verbosity Set  to 4
    02/05/13 12:01:12:611 | [INFO] |  | ASU | RunMeFirst | RunMeFirst |  |  | 6248 | Launching the Bootstrapper in elevated mode
    02/05/13 12:01:12:611 | [INFO] |  | ASU | RunMeFirst | Utilities |  |  | 6248 | Path to Process :C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\Set-up.bin Process Directory :C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2 arguments being passed :"C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\Set-up.bin"
    02/05/13 12:01:12:611 | [INFO] |  | ASU | RunMeFirst | Utilities |  |  | 6248 | Success in CreateProcess
    02/05/13 12:01:13:079 | [INFO] |  | ASU | Setup | Setup |  |  | 6256 | Build Version - 7.0.0.233
    02/05/13 12:01:13:079 | [INFO] |  | ASU | Setup | Setup |  |  | 6256 | Logging Level verbosity Set  to 4
    02/05/13 12:01:13:095 | [INFO] |  | ASU | Setup | Setup |  |  | 6256 | Start Adobe Setup
    02/05/13 12:01:13:095 | [INFO] |  | ASU | Setup | Setup |  |  | 6256 | TimeLog: Bootstrapper Start
    02/05/13 12:01:13:095 | [INFO] |  | ASU | Setup | Setup |  |  | 6256 | TimeLog: Start initial checks
    02/05/13 12:01:13:095 | [INFO] |  | ASU | Setup | Setup |  |  | 6256 | Dictionary Path: C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\resources\Dictionary\en_US\stringTable.zdct
    02/05/13 12:01:13:095 | [INFO] |  | ASU | Setup | PIM |  |  | 6256 | XML is valid
    02/05/13 12:01:13:095 | [WARN] |  | ASU | Setup | PIM |  |  | 6256 | Failed to find Node
    02/05/13 12:01:13:173 | [INFO] |  | ASU | Setup | Utilities |  |  | 6280 | Semaphore is not locked
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | Build Version - 7.0.0.233
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | Logging Level verbosity Set  to 4
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | Utilities |  |  | 6280 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\pim.db-journal' does not exist
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | Utilities |  |  | 6280 | File 'C:\Users\a01gassu\AppData\Local\Temp\\asuap.txt' does not exist
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | Build Version - 7.0.0.233
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | Logging Level verbosity Set  to 4
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | CREATE PIM Instance ...
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | Utilities |  |  | 6280 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\pim.db-journal' does not exist
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | Utilities |  |  | 6280 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\pim.db' does not exist
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | trying to createOrUpdatePIMDbSchema.
    02/05/13 12:01:13:298 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | SUCCESS Created Tables.
    02/05/13 12:01:13:298 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | PIM Database is Up To Date.
    02/05/13 12:01:13:298 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | Updater Inventory location:C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\resources\updaterinventory.dll
    02/05/13 12:01:13:298 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | Acquired System level ACF lock ...
    02/05/13 12:01:13:313 | [INFO] |  | ASU | Setup | Setup |  |  | 6256 | TimeLog: End initial checks
    02/05/13 12:01:13:313 | [INFO] |  | ASU | Setup | Setup |  |  | 6284 | TimeLog: Begin Installing
    02/05/13 12:01:13:313 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Current OS version is: Major:6, Minor:1, ServicePack:1
    02/05/13 12:01:13:313 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:13:313 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:407 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:13:407 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:438 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:13:438 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:469 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:13:469 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:485 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:13:485 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:516 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:13:516 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:547 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:13:547 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:641 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:13:641 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | pim_haveEnoughDiskSpaceToInstallPackages reqSize ... 122563823
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Executing Adobe Genuine Validation for all the AAM packages
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\core\PDApp.pimx'
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\core\PDApp.pima'
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\D6\D6.pimx'
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\D6\D6.pima'
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\DECore\DECore.pimx'
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\DECore\DECore.pima'
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\DWA\DWA.pimx'
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\DWA\DWA.pima'
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\P6\P6.pimx'
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\P6\P6.pima'
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\LWA\LWA.pimx'
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\LWA\LWA.pima'
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\UWA\UWA.pimx'
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\UWA\UWA.pima'
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\CCM\CCM.pimx'
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\CCM\CCM.pima'
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Adobe Genuine Validation PASSED for all the AAM packages
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | START installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\core\PDApp.pimx
    02/05/13 12:01:13:703 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:13:703 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:953 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertPackageUpdateList.
    02/05/13 12:01:13:953 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:953 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertAppletRegInfoList.
    02/05/13 12:01:15:279 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\core\PDApp.pimx' does not exist
    02/05/13 12:01:15:654 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\core\PDApp.pimx.
    02/05/13 12:01:15:763 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | START installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\D6\D6.pimx
    02/05/13 12:01:15:763 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:15:778 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:15:919 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertPackageUpdateList.
    02/05/13 12:01:15:919 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertAppletRegInfoList.
    02/05/13 12:01:16:434 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\D6\D6.pimx' does not exist
    02/05/13 12:01:17:026 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\D6\D6.pimx.
    02/05/13 12:01:17:104 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | START installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\DECore\DECore.pimx
    02/05/13 12:01:17:104 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:17:104 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:17:229 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertPackageUpdateList.
    02/05/13 12:01:17:229 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:17:229 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertAppletRegInfoList.
    02/05/13 12:01:18:914 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\DECore\DECore.pimx' does not exist
    02/05/13 12:01:19:226 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\DECore\DECore.pimx.
    02/05/13 12:01:19:366 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | START installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\DWA\DWA.pimx
    02/05/13 12:01:19:366 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:19:366 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:19:819 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertPackageUpdateList.
    02/05/13 12:01:19:819 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertAppletRegInfoList.
    02/05/13 12:01:19:819 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:20:365 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\DWA\DWA.pimx' does not exist
    02/05/13 12:01:20:739 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\DWA\DWA.pimx.
    02/05/13 12:01:21:176 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | START installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\P6\P6.pimx
    02/05/13 12:01:21:176 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:21:176 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:21:316 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertPackageUpdateList.
    02/05/13 12:01:21:316 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertAppletRegInfoList.
    02/05/13 12:01:24:327 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\P6\P6.pimx' does not exist
    02/05/13 12:01:25:435 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\P6\P6.pimx.
    02/05/13 12:01:25:825 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | START installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\LWA\LWA.pimx
    02/05/13 12:01:25:825 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:25:825 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:26:121 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertPackageUpdateList.
    02/05/13 12:01:26:121 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertAppletRegInfoList.
    02/05/13 12:01:26:121 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:28:306 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\LWA\LWA.pimx' does not exist
    02/05/13 12:01:28:742 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\LWA\LWA.pimx.
    02/05/13 12:01:29:491 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | START installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\UWA\UWA.pimx
    02/05/13 12:01:29:491 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:29:491 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:29:881 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertPackageUpdateList.
    02/05/13 12:01:29:881 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertAppletRegInfoList.
    02/05/13 12:01:31:582 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\UWA\UWA.pimx' does not exist
    02/05/13 12:01:32:206 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\UWA\UWA.pimx.
    02/05/13 12:01:32:299 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | START installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\CCM\CCM.pimx
    02/05/13 12:01:32:299 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:32:299 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:32:455 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertPackageUpdateList.
    02/05/13 12:01:32:455 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertAppletRegInfoList.
    02/05/13 12:01:33:750 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\CCM.pimx' does not exist
    02/05/13 12:01:34:561 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | Path to Process :C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeApplicationManager(URIHandler).exe Process Directory :C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities arguments being passed :"C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeApplicationManager(URIHandler).exe" --register=true --createShortcut=true
    02/05/13 12:01:34:561 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | Success in CreateProcess
    02/05/13 12:01:35:092 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | Sucessfully launched and executed process...
    02/05/13 12:01:35:092 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Successfully executed install modifier at path: 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeApplicationManager(URIHandler).exe'
    02/05/13 12:01:35:092 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\CCM\CCM.pimx.
    02/05/13 12:01:35:841 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\PDAppFlex.swf' does not exist
    02/05/13 12:01:35:919 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\PDAppFlex-app.xml' does not exist
    02/05/13 12:01:35:965 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Processing ... _pimCreateOrUpdateAAMInventory
    02/05/13 12:01:35:981 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Inventory Already present on the machine...
    02/05/13 12:01:35:981 | [INFO] |  | ASU | Setup | Setup |  |  | 6284 | TimeLog: End Installing. Now launching PDApp
    02/05/13 12:01:36:558 | [INFO] |  | ASU | Setup | Setup |  |  | 6256 | Bootstrapping successful. PDApp launched. Quitting Bootstrapper
    02/05/13 12:01:36:558 | [INFO] |  | ASU | PIM | PIM |  |  | 6256 | PIMSqlite closeDB status 0
    02/05/13 12:01:36:558 | [INFO] |  | ASU | PIM | PIM |  |  | 6256 | FREE PIM Instance ...
    02/05/13 12:01:36:558 | [INFO] |  | ASU | Setup | Setup |  |  | 6256 | =================  End Adobe Setup. Exit code: 0  =================
    02/05/13 12:01:49:210 | [INFO] |  | ASU | PDApp | PDApp |  |  | 6544 | Build Version - 7.0.0.233
    02/05/13 12:01:49:210 | [INFO] |  | ASU | PDApp | PDApp |  |  | 6544 | Logging Level verbosity Set  to 4
    02/05/13 12:01:49:210 | [INFO] |  | ASU | PDApp | PDApp.CommandLineParser |  |  | 6544 | Parsing the command line provided. Number of command line arguments is 4
    02/05/13 12:01:49:210 | [INFO] |  | ASU | PDApp | PDApp |  |  | 6544 | Detecting Applet Database Library file...
    02/05/13 12:01:49:210 | [INFO] |  | ASU | PDApp | PDApp |  |  | 6544 | Fetching Applet registeration information...
    02/05/13 12:01:49:210 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 6544 | AppletManager initialize...
    02/05/13 12:01:49:210 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 6544 | Applet database path - C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\..
    02/05/13 12:01:49:210 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 6544 | PIM library path - C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\AdobePIM.dll
    02/05/13 12:01:49:210 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 6544 | Loading PIM library...
    02/05/13 12:01:49:226 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | Build Version - 7.0.0.233
    02/05/13 12:01:49:226 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | Logging Level verbosity Set  to 4
    02/05/13 12:01:49:226 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | CREATE PIM Instance ...
    02/05/13 12:01:49:226 | [INFO] |  | ASU | PIM | Utilities |  |  | 6544 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\..\pim.db-journal' does not exist
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | trying to createOrUpdatePIMDbSchema.
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | Current db schema version on machine 1.
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | Current db schema version to install 1.
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | PIM DB Schema is up to date. Current schema version is 1.
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | PIM Database is Up To Date.
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 6544 | Getting applet data from Applet database
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 6544 | All installed pakages version string (pim_getCurrentPackagesVersion) is CCM:7.0.0.237|D6:7.0.0.235|DECore:7.0.0.235|DWA:3.0.97.0|LWA:3.0.97.0|P6:7.0.0.125|PDApp: 7.0.0.235|UWA:7.0.0.235
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | PIMSqlite closeDB status 0
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | FREE PIM Instance ...
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 6544 | Registering Applets...
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp |  |  | 6544 | DWA AppletID argument not specified on command line. Trying to find the existing instance
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp |  |  | 6544 | This is the first instance so creating a thread for listening to the created pipe
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PipeThread |  |  | 6556 | Pipe thread started
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp |  |  | 6544 | Starting AsyncMessageProcessor
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp.AsyncMsgProcessor |  |  | 6544 | AsyncMsgProcessor initialized...
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp.AsyncMsgProcessor |  |  | 6544 | AsyncMsgProcessor started. on thread id = 6564
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 6544 | Initializing native WindowManager
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 6544 | Creating window instance
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 6544 | Checking for appletID and appletVersion given in CommandLineOptions
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 6544 | Creating APE stage instance
    02/05/13 12:01:50:349 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 6544 | MessageHandler initialized...
    02/05/13 12:01:50:349 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 6544 | ExternalGateway initialized...
    02/05/13 12:01:50:349 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 6544 | NativeCommandHandler initialized...
    02/05/13 12:01:50:365 | [INFO] |  | ASU | PDApp | PDApp.StartupCommand |  |  | 6544 | Logging Level verbosity Set to  INFO
    02/05/13 12:01:50:365 | [INFO] |  | ASU | PDApp | PDApp.StartupCommand |  |  | 6544 | Processing the startup Command
    02/05/13 12:01:50:365 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Starting Applet registeration...
    02/05/13 12:01:50:380 | [INFO] |  | ASU | PDApp | PDAPP.MainDisplayMediator |  |  | 6544 | Looking up for the Exact versioned applet for ID :CCM_UI
    02/05/13 12:01:50:380 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading Applet: CCM_UI Version = 1.0
    02/05/13 12:01:50:396 | [INFO] |  | ASU | PDApp | PDApp.ZStringLoader |  |  | 6544 | PDAPP SWF - locale set to - en_US
    02/05/13 12:01:50:411 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 0 out of 1481767
    02/05/13 12:01:50:411 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 65536 out of 1481767
    02/05/13 12:01:50:411 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 131072 out of 1481767
    02/05/13 12:01:50:411 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 196608 out of 1481767
    02/05/13 12:01:50:411 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 262144 out of 1481767
    02/05/13 12:01:50:411 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 327680 out of 1481767
    02/05/13 12:01:50:427 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 393216 out of 1481767
    02/05/13 12:01:50:427 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 458752 out of 1481767
    02/05/13 12:01:50:427 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 524288 out of 1481767
    02/05/13 12:01:50:427 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 589824 out of 1481767
    02/05/13 12:01:50:427 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 655360 out of 1481767
    02/05/13 12:01:50:427 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 720896 out of 1481767
    02/05/13 12:01:50:427 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 786432 out of 1481767
    02/05/13 12:01:50:427 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 851968 out of 1481767
    02/05/13 12:01:50:427 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 917504 out of 1481767
    02/05/13 12:01:50:443 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 983040 out of 1481767
    02/05/13 12:01:50:443 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 1048576 out of 1481767
    02/05/13 12:01:50:443 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 1114112 out of 1481767
    02/05/13 12:01:50:443 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 1179648 out of 1481767
    02/05/13 12:01:50:443 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 1245184 out of 1481767
    02/05/13 12:01:50:443 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 1310720 out of 1481767
    02/05/13 12:01:50:443 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 1376256 out of 1481767
    02/05/13 12:01:50:443 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 1441792 out of 1481767
    02/05/13 12:01:50:443 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 1481767 out of 1481767
    02/05/13 12:01:50:864 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = ApplicationStartupCommand, type = null
    02/05/13 12:01:50:864 | [INFO] |  | ASU | PDApp | CCM.AppStartup |  |  | 6544 | Processing the application startup command
    02/05/13 12:01:50:864 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 6544 | Recieved Applet Loading Completion
    02/05/13 12:01:50:864 | [INFO] |  | ASU | PDApp | CCM.AppStartup |  |  | 6544 | DPI values are 96,96 and DPIType is set to 1
    02/05/13 12:01:50:879 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.compositeComponent.ScreenBasePopupWindowMediator |  |  | 6544 | onRegister
    02/05/13 12:01:50:879 | [INFO] |  | ASU | PDApp | CCM.AppStartup |  |  | 6544 | Going to start the workflow
    02/05/13 12:01:50:879 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow, type = null
    02/05/13 12:01:50:879 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:50:879 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = bootEXECUTE_CCM_WORKFLOW, type = null
    02/05/13 12:01:50:879 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:50:879 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = initCCMNativeSignal, type = null
    02/05/13 12:01:50:879 | [INFO] |  | ASU | PDApp | CCM.InitializeCCMNativeCommand |  |  | 6544 | inside initial windows show
    02/05/13 12:01:50:895 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 6544 | Loading Applet - CCM_Native for WindowID - 1
    02/05/13 12:01:50:911 | [INFO] |  | ASU | PDApp | CCMNativeApplet |  |  | 6544 | startApplet
    02/05/13 12:01:50:911 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:50:911 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = initZstringSignal, type = null
    02/05/13 12:01:50:942 | [INFO] |  | ASU | PDApp | ZStringLoader |  |  | 6544 | Trying to load ZString for preferred locale - en_US
    02/05/13 12:01:50:942 | [INFO] |  | ASU | PDApp | ZStringLoader |  |  | 6544 | Locale set to - en_US
    02/05/13 12:01:50:942 | [INFO] |  | ASU | PDApp | CCM.InitializeZstringCommand |  |  | 6544 | Font fallback applied is applicationFonts 'Lucida Grande, Segoe UI, Tahoma, _sans' inputControlFonts: 'Lucida Grande, Segoe UI, Tahoma, _sans'
    02/05/13 12:01:50:957 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = zstringLoadCompleteSignal, type = null
    02/05/13 12:01:50:957 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow, type = null
    02/05/13 12:01:50:957 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:50:957 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = initAppletViewSignal, type = null
    02/05/13 12:01:50:973 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = ShowScreen, type = null
    02/05/13 12:01:50:973 | [INFO] |  | ASU | PDApp | AAMShared.DynamicViewMediator |  |  | 6544 | Showing screen with screenID : com.adobe.aam.shared.view.compositeComponent::CCMMainView
    02/05/13 12:01:51:067 | [INFO] |  | ASU | PDApp | CCM.PrepareInitialAppletView |  |  | 6544 | Going to show the window now!!!
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = RegisterMediatorCommand, type = null
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.compositeComponent.CCMMainViewMediator |  |  | 6544 | onRegister
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.CCMMainContentMediator |  |  | 6544 | onRegister
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = CCM_CONTENT_REFRESH_DATA, type = null
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.CCMMainContentMediator |  |  | 6544 | handleNotification : CCM_CONTENT_REFRESH_DATA
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.CCMNavigationPanelMediator |  |  | 6544 | onRegister
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = CCM_NAVIGATION_PANEL_REFRESH_DATA, type = null
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.CCMNavigationPanelMediator |  |  | 6544 | handleNotification : CCM_NAVIGATION_PANEL_REFRESH_DATA
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = ccmInitialViewCompleteSignal, type = null
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = CCM_MAIN_CONTENT_IS_BUSY, type = null
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.CCMMainContentMediator |  |  | 6544 | handleNotification : CCM_MAIN_CONTENT_IS_BUSY
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow, type = null
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = preprocess_ccm_applet, type = null
    02/05/13 12:01:51:254 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = populateSystemInfoDataSignal, type = null
    02/05/13 12:01:51:254 | [INFO] |  | ASU | PDApp | SystemUtilities |  |  | 6544 | Current system is a windows system
    02/05/13 12:01:51:254 | [INFO] |  | ASU | PDApp | SystemUtilities |  |  | 6544 | Current system is 64 bit
    02/05/13 12:01:51:254 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = initNativeSessionsSignal, type = null
    02/05/13 12:01:51:254 | [INFO] |  | ASU | PDApp | CCMNativeApplet |  |  | 6544 | createSession
    02/05/13 12:01:51:254 | [INFO] |  | ASU | PDApp | CCMNativeApplet |  |  | 6544 | dlmAppletSessionProxy.sessionId = {76C89C44-B9B1-47A2-9A71-3CB13E3C36C5}
    02/05/13 12:01:51:254 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = initGlobalUpdateSession, type = null
    02/05/13 12:01:51:254 | [INFO] |  | ASU | PDApp | CCMNativeApplet |  |  | 6544 | createSession
    02/05/13 12:01:51:316 | [INFO] |  | ASU | PDApp | CCMNativeApplet |  |  | 6544 | dlmAppletSessionProxy.sessionId = {5621E9AD-39EA-4686-B443-DA3AB4C158F6}
    02/05/13 12:01:51:332 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:51:332 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = readGlobalPrefSignal, type = null
    02/05/13 12:01:51:332 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Build Version - 7.0.0.237
    02/05/13 12:01:51:332 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Logging Level verbosity Set  to 4
    02/05/13 12:01:51:332 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:01:52:003 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:01:52:003 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | No Record found for the input fields in opm_getValueForKey
    02/05/13 12:01:52:003 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | No Record found for the input fields in opm_getValueForKey
    02/05/13 12:01:52:003 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:01:52:003 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:52:003 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = readUpdatesPrefSignal, type = null
    02/05/13 12:01:52:065 | [INFO] |  | ASU | PDApp | PDApp.MessageQuequeManager |  |  | 6544 | Message Queue Manager initialized...
    02/05/13 12:01:52:569 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = handleNativeDataSignal, type = null
    02/05/13 12:01:52:569 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = readUpdatesPrefResultSignal, type = null
    02/05/13 12:01:52:569 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = GetUpdaterPreferencesCompleteSignal, type = null
    02/05/13 12:01:52:569 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow, type = null
    02/05/13 12:01:52:569 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:52:569 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = check_new_aam_version, type = null
    02/05/13 12:01:52:579 | [INFO] |  | ASU | OPM | Utilities |  |  | 6640 | File 'C:\Users\a01gassu\AppData\Local\Temp\{2C77F8A3-4149-4CB9-8AEF-CF29B6E39246}AAMVersion.xm l' does not exist
    02/05/13 12:01:52:579 | [INFO] |  | ASU | OPM | Utilities |  |  | 6640 | File 'C:\Users\a01gassu\AppData\Local\Temp\{2C77F8A3-4149-4CB9-8AEF-CF29B6E39246}\AAMVersion.x ml' does not exist
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | Build Version - 7.0.0.233
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | Logging Level verbosity Set  to 4
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | CREATE PIM Instance ...
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | Utilities |  |  | 6640 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\pim.db-journal' does not exist
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | trying to createOrUpdatePIMDbSchema.
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | Current db schema version on machine 1.
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | Current db schema version to install 1.
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | PIM DB Schema is up to date. Current schema version is 1.
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | PIM Database is Up To Date.
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | PIMSqlite closeDB status 0
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | FREE PIM Instance ...
    02/05/13 12:01:56:206 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = handleNativeDataSignal, type = null
    02/05/13 12:01:56:206 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = aamVersionCheckCompleteSignal, type = null
    02/05/13 12:01:56:206 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow, type = null
    02/05/13 12:01:56:206 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:56:206 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = parseInputXmlForDownloadRequestSignal, type = null
    02/05/13 12:01:56:206 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:56:206 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = showAdobeLogInSignal, type = null
    02/05/13 12:01:56:206 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = initProvCommonSignal, type = null
    02/05/13 12:01:56:206 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 6544 | Loading Applet - LWA_Native for WindowID - 1
    02/05/13 12:01:56:237 | [INFO] |  | ASU | LWANative | LWANative |  |  | Build Version - 7.0.0.124
    02/05/13 12:01:56:237 | [INFO] |  | ASU | LWANative | LWANative |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:01:56:237 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = INIT_PROV_COMMON_NOTIFICATION, type = null
    02/05/13 12:01:56:237 | [INFO] |  | ASU | PDApp | ProvCommon.ZStringLoader |  |  | 6544 | Applet locale set to - en_US
    02/05/13 12:01:56:237 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = FetchDefaultUserCommand, type = null
    02/05/13 12:01:56:253 | [INFO] |  | ASU | LWANative | LWANative |  |  | Performing openIMSLibSession...
    02/05/13 12:01:56:253 | [INFO] |  | ASU | LWANative | LWANative |  |  | pwa_openIMSLibSession Session key : {8DEAC40A-3487-4680-A7A9-3F9EECF19730}
    02/05/13 12:01:56:268 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | Build Version - 7.0.0.11
    02/05/13 12:01:56:268 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:01:56:268 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | Creating IMSLib instance ...
    02/05/13 12:01:56:268 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.11
    02/05/13 12:01:56:268 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:01:56:268 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | OPM |  |  | No Record found for the input fields in opm_getValueForKey
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | IMSLib_OPMWrapper |  |  | Failed in getting value for key in OPMGetValueForKey domain:OOBE subDomain:ProxyCredentials key:ProxyUsername
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | Failed to get proxy user name from local db in getProxyCredentialsFromLocalStore
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | IMSLib |  |  | Failed get proxy credentials from local store while creating IMSLib instance ...
    02/05/13 12:01:56:487 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 6544 | Done opening IMSSession, session key - {8DEAC40A-3487-4680-A7A9-3F9EECF19730}
    02/05/13 12:01:56:487 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 6544 | Fetching default user profile for requested ClientID...
    02/05/13 12:01:56:487 | [INFO] |  | ASU | LWANative | LWANative |  |  | Performing fetch default user for clientID...
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | IMSLib |  |  | Performing fetchDefaultUserInfoForClientId...
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.11
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:01:56:689 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:01:57:937 | [INFO] |  | ASU | OPM | OPM |  |  | returning size of value as:33 in opm_getValueForKey
    02/05/13 12:01:57:937 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully retreived value from opm domain:IMSLib subdomain:CSServiceMap key:426eb9f9-9989-45dd-8b7c-1bcdc957c8e5 in opm_getValueForKey
    02/05/13 12:01:57:937 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:01:57:937 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.11
    02/05/13 12:01:57:937 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:01:57:937 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:01:58:421 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:01:58:421 | [INFO] |  | ASU | OPM | OPM |  |  | returning size of value as:1166 in opm_getValueForKey
    02/05/13 12:01:58:421 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully retreived value from opm domain:IMSLib subdomain:SignInUsers key:e58f52b002e54a2b37e40e58b8e8a057 in opm_getValueForKey
    02/05/13 12:01:58:421 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:01:58:421 | [INFO] |  | ASU | OPM | IMSLib |  |  | Performing releaseData...
    02/05/13 12:01:58:421 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 6544 | Retrieved default user profile successfully
    02/05/13 12:01:58:421 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 6544 | Closing IMSSession: {8DEAC40A-3487-4680-A7A9-3F9EECF19730}
    02/05/13 12:01:58:421 | [INFO] |  | ASU | LWANative | LWANative |  |  | Performing closeIMSLibSession...
    02/05/13 12:01:58:421 | [INFO] |  | ASU | OPM | IMSLib |  |  | Releasing IMSLib instance ...
    02/05/13 12:01:58:421 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 6544 | Done closing IMSSession: {8DEAC40A-3487-4680-A7A9-3F9EECF19730}
    02/05/13 12:01:58:421 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = FetchAccessTokenCommand, type = null
    02/05/13 12:01:58:421 | [INFO] |  | ASU | PDApp | CCM.FetchAccessTokenCommand |  |  | 6544 | Fetching access token for the requested user...
    02/05/13 12:01:58:421 | [INFO] |  | ASU | LWANative | LWANative |  |  | Performing openIMSLibSession...
    02/05/13 12:01:58:421 | [INFO] |  | ASU | LWANative | LWANative |  |  | pwa_openIMSLibSession Session key : {BD969FC5-445B-49A9-AEF9-ECA298FC59E2}
    02/05/13 12:01:58:421 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | Build Version - 7.0.0.11
    02/05/13 12:01:58:421 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:01:58:421 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | Creating IMSLib instance ...
    02/05/13 12:01:58:437 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.11
    02/05/13 12:01:58:437 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:01:58:437 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:01:58:640 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:01:58:640 | [INFO] |  | ASU | OPM | OPM |  |  | No Record found for the input fields in opm_getValueForKey
    02/05/13 12:01:58:640 | [INFO] |  | ASU | OPM | IMSLib_OPMWrapper |  |  | Failed in getting value for key in OPMGetValueForKey domain:OOBE subDomain:ProxyCredentials key:ProxyUsername
    02/05/13 12:01:58:640 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | Failed to get proxy user name from local db in getProxyCredentialsFromLocalStore
    02/05/13 12:01:58:640 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:01:58:640 | [INFO] |  | ASU | OPM | IMSLib |  |  | Failed get proxy credentials from local store while creating IMSLib instance ...
    02/05/13 12:01:58:640 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 6544 | Done opening IMSSession, session key - {BD969FC5-445B-49A9-AEF9-ECA298FC59E2}
    02/05/13 12:01:58:640 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 6544 | Performing fetchAccessToken...
    02/05/13 12:01:58:640 | [INFO] |  | ASU | LWANative | LWANative |  |  | Performing fetch Access token for user...
    02/05/13 12:01:58:640 | [INFO] |  | ASU | OPM | IMSLib |  |  | Performing fetch accessToken...
    02/05/13 12:01:58:655 | [INFO] |  | ASU | OPM | IMSLib |  |  | Using environment:ims-na1.adobelogin.com
    02/05/13 12:01:58:655 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.11
    02/05/13 12:01:58:655 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:01:58:655 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | OPM |  |  | returning size of value as:1166 in opm_getValueForKey
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully retreived value from opm domain:IMSLib subdomain:SignInUsers key:e58f52b002e54a2b37e40e58b8e8a057 in opm_getValueForKey
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | OPM |  |  | returning size of value as:65 in opm_getValueForKey
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully retreived value from opm domain:IMSLib subdomain:Default key:deviceID in opm_getValueForKey
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | setting authproxy credentials in fetchAccessTokenForDeviceToken
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.11
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:01:59:026 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:01:59:026 | [INFO] |  | ASU | OPM | OPM |  |  | No Record found for the input fields in opm_getValueForKey
    02/05/13 12:01:59:026 | [INFO] |  | ASU | OPM | IMSLib_OPMWrapper |  |  | Failed in getting value for key in OPMGetValueForKey domain:OOBE subDomain:ProxyCredentials key:ProxyUsername
    02/05/13 12:01:59:026 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | Failed to get proxy user name from local db in getProxyCredentialsFromLocalStore
    02/05/13 12:01:59:026 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:01:59:026 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | Failed to get proxyCredentials from local store in setProxyCredentialsForHTTPRequest
    02/05/13 12:01:59:026 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | Failed in setting authproxy credentials in fetchAccessTokenForDeviceToken
    02/05/13 12:01:59:036 | [INFO] |  | ASU | OPM | HTTPConnector |  |  | GetIEProxyInfo - No default proxy present on the user machine
    02/05/13 12:02:01:308 | [INFO] |  | ASU | OPM | HTTPConnector |  |  | GetIEProxyInfo - Failed to get proxy for the url, error:12180
    02/05/13 12:02:01:308 | [INFO] |  | ASU | OPM | HTTPConnector |  |  | GetIEProxyInfo - proxy Url is
    02/05/13 12:02:01:698 | [INFO] |  | ASU | OPM | HTTPConnector |  |  | WINHTTP_CALLBACK_STATUS_HEADERS_AVAILABLE...
    02/05/13 12:02:01:698 | [INFO] |  | ASU | OPM | HTTPConnector |  |  | HTTP Request Status code 200.
    02/05/13 12:02:01:698 | [INFO] |  | ASU | OPM | HTTPConnector |  |  | The http request returned response code:0
    02/05/13 12:02:01:698 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | user has not selected 'Remember Me', proxy data is not saved in local store
    02/05/13 12:02:01:698 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.11
    02/05/13 12:02:01:698 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:02:01:698 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:02:02:447 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:02:02:447 | [INFO] |  | ASU | OPM | OPM |  |  | returning size of value as:1166 in opm_getValueForKey
    02/05/13 12:02:02:447 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully retreived value from opm domain:IMSLib subdomain:SignInUsers key:e58f52b002e54a2b37e40e58b8e8a057 in opm_getValueForKey
    02/05/13 12:02:02:525 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully updated opm.db for fields domain:IMSLib subdomain:SignInUsers key:e58f52b002e54a2b37e40e58b8e8a057 in opm_setValueForKey
    02/05/13 12:02:02:525 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:02:02:525 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.11
    02/05/13 12:02:02:525 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:02:02:525 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:02:02:650 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:02:02:728 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully updated opm.db for fields domain:IMSLib subdomain:CSServiceMap key:426eb9f9-9989-45dd-8b7c-1bcdc957c8e5 in opm_setValueForKey
    02/05/13 12:02:02:728 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:02:02:728 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.11
    02/05/13 12:02:02:728 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:02:02:728 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:02:03:086 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:02:03:445 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully updated opm.db for fields domain:IMSLib subdomain:Default key:deviceID in opm_setValueForKey
    02/05/13 12:02:03:445 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:02:03:445 | [INFO] |  | ASU | OPM | IMSLib |  |  | Invoking client callback function with response and status : 0
    02/05/13 12:02:03:445 | [INFO] |  | ASU | LWANative | LWANative |  |  | Proceeding with fetchAccessToken callback...
    02/05/13 12:02:03:492 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = FetchAccessTokenStatusCommand, type = null
    02/05/13 12:02:03:492 | [INFO] |  | ASU | PDApp | CCM.FetchAccessTokenCommand |  |  | 6544 | Received FetchAccessToken response with status : success
    02/05/13 12:02:03:492 | [INFO] |  | ASU | PDApp | CCM.FetchAccessTokenCommand |  |  | 6544 | AccessToken generated successfully.
    02/05/13 12:02:03:492 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = ADOBEID_SIGNIN_ACCESSTOKEN_RESPONSE, type = null
    02/05/13 12:02:03:492 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = adobeLogInDoneSignal, type = null
    02/05/13 12:02:03:492 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = sendAnalyticsSignal, type = null
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = adobeLogInCompleteSignal, type = null
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow, type = null
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = showPostAdobeIdScreenSignal, type = null
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = CCM_MAIN_CONTENT_IS_BUSY, type = null
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.CCMMainContentMediator |  |  | 6544 | handleNotification : CCM_MAIN_CONTENT_IS_BUSY
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = CCM_NAVIGATION_PANEL_REFRESH_DATA, type = null
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.CCMNavigationPanelMediator |  |  | 6544 | handleNotification : CCM_NAVIGATION_PANEL_REFRESH_DATA
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = loadUserPrefSignal, type = null
    02/05/13 12:02:03:508 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Build Version - 7.0.0.237
    02/05/13 12:02:03:508 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Logging Level verbosity Set  to 4
    02/05/13 12:02:03:508 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:02:03:679 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:02:05:255 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | returning size of value as:339 in opm_getValueForKey
    02/05/13 12:02:05:255 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Successfully retreived value from opm domain:OOBE subdomain:CCM_Pref key:1b8ec8539d00c8de37ed1903f379b493 in opm_getValueForKey
    02/05/13 12:02:05:255 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:02:05:255 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:02:05:255 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = prefetchProductsIcons, type = null
    02/05/13 12:02:05:271 | [INFO] |  | ASU | OPM | Utilities |  |  | 6688 | File 'C:\Users\a01gassu\AppData\Local\Temp\{2C77F8A3-4149-4CB9-8AEF-CF29B6E39246}\{9AC7DB7C-67 B4-4AC4-BD10-97E94251ED00}.xml' does not exist
    02/05/13 12:02:05:832 | [INFO] |  | ASU | PDApp | CCM.ETSCommunicator |  |  | 6544 | Response: SUCCESS
    02/05/13 12:02:09:498 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = handleNativeDataSignal, type = null
    02/05/13 12:02:09:498 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = IconsPrefetchResult, type = null
    02/05/13 12:02:09:529 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = productsIconsFetchedSignal, type = null
    02/05/13 12:02:09:529 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow, type = null
    02/05/13 12:02:09:529 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:02:09:529 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = fetchAvailableUpdatesSignal, type = null
    2/5/2013 12:02:10 [INFO] OPM - Build Version - 6.0.281.0
    2/5/2013 12:02:10 [INFO] OPM - Logging Level verbosity Set  to 4
    2/5/2013 12:02:10 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    2/5/2013 12:02:10 [INFO] OPM - No Record found for the input fields
    2/5/2013 12:02:10 [INFO] OPM - Released OPM refrence successfully
    2/5/2013 12:02:11 [INFO] OPM - Build Version - 6.0.281.0
    2/5/2013 12:02:11 [INFO] OPM - Logging Level verbosity Set  to 4
    2/5/2013 12:02:11 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    2/5/2013 12:02:11 [INFO] OPM - No Record found for the input fields
    2/5/2013 12:02:11 [INFO] OPM - Released OPM refrence successfully
    2/5/2013 12:02:11 [INFO] OPM - Build Version - 6.0.281.0
    2/5/2013 12:02:11 [INFO] OPM - Logging Level verbosity Set  to 4
    2/5/2013 12:02:11 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    2/5/2013 12:02:11 [INFO] OPM - No Record found for the input fields
    2/5/2013 12:02:11 [INFO] OPM - Released OPM refrence successfully
    2/5/2013 12:02:11 [INFO] OPM - Build Version - 6.0.281.0
    2/5/2013 12:02:11 [INFO] OPM - Logging Level verbosity Set  to 4
    2/5/2013 12:02:11 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    2/5/2013 12:02:11 [INFO] OPM - No Record found for the input fields
    2/5/2013 12:02:11 [INFO] OPM - Released OPM refrence successfully
    2/5/2013 12:02:11 [INFO] OPM - Build Version - 6.0.281.0
    2/5/2013 12:02:11 [INFO] OPM - Logging Level verbosity Set  to 4
    2/5/2013 12:02:11 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    2/5/2013 12:02:12 [INFO] OPM - No Record found for the input fields
    2/5/2013 12:02:12 [INFO] OPM - Released OPM refrence successfully
    2/5/2013 12:02:12 [INFO] OPM - Build Version - 6.0.281.0
    2/5/2013 12:02:12 [INFO] OPM - Logging Level verbosity Set  to 4
    2/5/2013 12:02:12 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    2/5/2013 12:02:12 [INFO] OPM - No Record found for the input fields
    2/5/2013 12:02:12 [INFO] OPM - Released OPM refrence successfully
    2/5/2013 12:02:12 [INFO] OPM - Build Version - 6.0.281.0
    2/5/2013 12:02:12 [INFO] OPM - Logging Level verbosity Set  to 4
    2/5/2013 12:02:12 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    2/5/2013 12:02:12 [INFO] OPM - No Record found for the input fields
    2/5/2013 12:02:12 [INFO] OPM - Released OPM refrence successfully
    2/5/2013 12:02:12 [INFO] OPM - Build Version - 6.0.281.0
    2/5/2013 12:02:12 [INFO] OPM - Logging Level verbosity Set  to 4
    2/5/2013 12:02:12 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    2/5/2013 12:02:12 [INFO] OPM - No Record found for the input fields
    2/5/2013 12:02:12 [INFO] OPM - Released OPM refrence successfully
    2/5

    Matt,
    I am glad (well not glad, it sucks but I'm glad I'm not alone)  to hear you are experiencing the same thing.  I have literally tried everything to get this to work.  I even took a brand new laptop out of the box and Adobe was the only thing I installed.  I can usually follow other posts and fix issues but I am stumped and WAY aggrivated.  I love the concept as does my editing team but I'm in charge of installing and updating 5 PC's and my team is now aggrivated that they can't get what they need to do their jobs.  Even if you download the trials, you don't get everything you need for the whole cloud process.  Not to mention we all  need updates badly and really need to start using Edge Animate. 

  • Select and update in same instruction

    Can i select and update a column in table by one query only
    I donot want to execute two queries one for updation and one for retrieval
    e.g. instead of UPDATE t1 set val=val+1 and then SELECT val from t1;
    i wanna have a single query (compliant to mysql and ORACLE)
    because when i passa query UPDATE t1 set val=val+1; SELECT val from t1; on the command prompt is is fine but when i do so through jdbc it gives me errror
    please help

    Why would a stored procedure change anything?
    The stored procedure would have the UPDATE ... ; SELECT sequence in it.
    Which results in the same "work" the database has to do, compared to sending the two statements via JDBC.
    The only thing that a stored procedure would save, is the second JDBC call, but I doubt that this makes a big difference (provided this is not done in a loop. Then I'd retrieve the new values in one statement after all the updates have been committed)
    So I would simply do Statement statement = connection.createStatement();
    int rows = statement.executeUpdate("UPDATE ....");
    ResultSet rs = statement.executeQuery("SELECT ... ");
    String val = null;
    if (rs.next()) val = rs.getString(1);
    rs.close();The code for the stored procedure would look very similar to this with the disadvantage that that you have to maintain it for every DBMS that has to be supported.

  • Compare and adjust functionality for Solution Directory

    Hello all,
    I am trying to use the Compare and Adjust function with a Solution Directory. There is a previous discussion about how to do this between a Master Template and Implementation Project. Now that the Solution Directory exists, I would like to do the same thing. I.e. take scenarios from the Solution Directory into individual projects to extend them before putting them back into production. Together with the check in/out function, I would like to use the Compare and Adjust (SA_PROJECT_UPGRADE) function to identify differences periodically. The button for this appears in the transaction SOLMAN_DIRECTORY, but I can't seem to activate it - i.e. it is faded out. For projects, you must first run SA_PROJECT_UPGRADE to activate this button. However, you cannot select a Solution when running the project upgrade transaction. Does anyone know how to do this? Is anyone using the Solution Directory in a similar way and have advice?
    Regards,
    Marcel

    Hi Marcel,
    Funnily enough I have the exact same question.
    Is there a way to compare changes between a maintenance project (business scenarios checked out this project) and the solution. This way the person approving the check in can see the changes before approving.
    Have you had further information on this?
    Referring back to your question, ideally once you've checked out a business scenario to a maintenance project you wouldn't continue to maintain it. It is the responsibility of that project to maintain it. In the meanwhile if you have a support issue that requires that business scenario to be updated, this will have to assessed and handled by either the project or the solution administrators.
    Cheers
    Ganesh

  • Automate Compare and Adjust functionality

    Hello Experts,
    I would like to know if there is an easy way to automate the entire process of "compare and adjust" in template management. I mean not only the transaction SA_PROJECT_UPGRADE execution but also all the adjustments in the roll-out projects (yellow flags): I do not want to click on every process / tab where the yellow flag appears and click on the button "compare and adjust", but click just once and my roll-out project is updated...
    Thanks a lot !
    Victoria

    Hello VIctoria,
    You are not the first one to ask this question.
    Please have a look at this link. The last comment is from Andreas Diebold and he is a developer with SAP, so he is authoratative in this regards.
    Accept all changes after SA_PROJECT_UPGRADE
    To summarize: there is no way to do this presently.
    Hope this puts this issue to rest for the time being.
    Regards,
    Paul

  • Delta Calculation and Updating multiple tables

    We pull data from a System of Records table that contains the most up to date information. The information changes daily so we have a delta process to identify what new records were added, which records were deleted (records that are not found in the table as compared to yesterday) and which were updated. Delta process compares the already loaded data with the newly updated SOR data to find the differences.
    Once the delta is established, either new records get added or existing records get updated or existing records are marked as inactive (Deletes). Additions and Updates generally happen across multiple destination tables.
    Updates are identified by looking at different columns to see if any one column is changed. These columns end up in different tables.
    Example
    Source Delta Table, S1
    ID COL1 COL2 COL3 ACTION
    1 abc xyz pqr A
    2 bcd lmn def U
    S1.Col1 maps to Destination Table D1.Col23
    S1.Col2 maps to Destination Table D2.Col45
    S1.Col3 maps to Destination Table D3.Col11
    Currently all tables are updated irrespective of whether the relevant data has changed or not (All 3 destination tables are updated).
    I would like to know which of the Columns for a given row has changed values so that I can update only the relevant tables.
    Thus if additional columns are available that act as flags
    Source Delta Table, S1
    ID COL1 COL2 COL3 ACTION COL1 COL2 COL3
    1 abc xyz pqr A - - -
    2 bcd lmn def U N Y N
    3 kjh qwe iop U Y Y N
    then for incoming ID=2, I just have to update Destination Table D2 and not D1 and D3
    for incoming ID= 3, I have to update Destination Tables D1 and D2 but not D3.
    How can I achieve that?
    This is mainly to improve performance as the processing time is very short - Faster the delta processing, better will it be.
    Thanks in advance.

    Thanks for your response.
    My question was more towards establishing what has changed.
    Given a table, which is updated daily, how does one efficiently establish which data has changed?
    Here is an example to clarify my question further
    The Source table has the following data on a particular day
    Data in Source table on Monday               
    ID     Col1     Col2     Col3
    1     abc     bcd     cde
    2     def     efg     fgh
    3     ghi     hij     ijk
    4     jkl     klm     lmn
    Copy of the above data is stored in a Old Data table
    Data in Source table on Tuesday               
    ID     Col1     Col2     Col3
    1     bac     bcd     cde
    2     def     gfe     fgh
    3     ghi     jih     jik
    5     mno     nop     opq
    Data in Source Table is compared with data in Old Data Table
    Delta established by comparing Source Table with Old Data Table                    
    ID     Col1     Col2     Col3     Delta_Flag
    1     bac     bcd     cde     U
    2     def     gfe     fgh     U
    4                    D
    5     mno     nop     opq     A
    Rows with IDs 1 & 2 were updated - thus to be updated
    Row with ID 3 - no change so not seen in delta
    Row with ID 4 was not found - thus to be deleted
    Row with ID 5 was new - To be added
    I can do the above easily. I would like to a step further to be able to say for updates
    Row with ID 1 has Col1 changed
    Row with ID 2 has Col2 and Col3 changed
    Is there an easy way to do this?

  • SSIS and Update-Insert(Upsert) based on a SQL Server Result Set

    So on a weekly basis, I have to sweep a sub-set of our Member data. So my query is built to produce this result set. I then have to take that result set and compare it to a data table which contains all that same information that I have provided to a 3rd
    party vendor. So I need to take into account the following scenarios...
    Obviously, if the Member is new, then I have to Insert its row to what we'll call table 3rdPartyMember and create a row out on a 3rdPartyMemberAuditTrail Table
    Individually, I also have to manage if any of the following data fields have changed: Name, Birth Date, Addressing Information, Member Plan, Member Termination...and by Individually what I mean is that if the Last Name has changed, then update its row in
    3rdPartyMember and Insert a row to 3rdPartyMemberAuditTrail indicating "Last Name Change"...and similarly if Address Line 1 has changed..."Address Line 1 Change"
    So I guess my question is this. Should this be done in one whole Stored Procedure invoked by my SSIS Package or should it be done in pieces?
    Create the Temporary Table to house our weekly Member subset extract and result set
    Determine if the row exists on 3rdPartyMember Table and if it does not, Insert it
    If the row exists, determine if there is a First Name Change...Last Name Change...BirthDate change...Address Line 1 change...etc... If there is a change, Update 3rdPartyMember Table and also Insert a row to 3rdPartyMemberAuditTrail indicating the change
    Based on all this, I'm just not sure the right way to approach this...meaning should we create one big Stored Procedure to handle everything or each individual data point in my SSIS as an UpSert based on its lookup. I am new to the SSIS World and don't really
    know what the generally accepted practice is per se of creating and running an SSIS Package with multiple data point update steps or doing so in one big Stored Procedure.
    Also....if anyone know of some good YouTubes or web sites that would instruct me as to how to go about doing this, I'd GREATLY appreciate it.
    Thanks for your review and am hopeful for a reply.

    In my opinion using SSIS is quite a pain for Upsert-functionality, especially with your requirement of maintaining an audit trail.  With Google you can probably find 20 different variants all of which are quite complex.  I would go for the procedure
    version just to keep my sanity.  It is so easy to test and verify.
    I have been using an excellent Uppsert add on from Pragmatic Works Task Factory, but that would not help with the audit trail, though...
    http://pragmaticworks.com/Products/Features?Feature=UpsertDestination(BatchUpdateOrInsert)
    I recently discovered the CHECKSUM-function in Transact-SQL, it might simplify your code and certainly improve performance, if you have lot's of rows.
    Here is an example:
    create table member
    (id int primary key,
    name char(10) not null,
    address char(20) not null,
    checks int not null);
    create table member3p
    (id int primary key,
    name char(10) not null,
    address char(20) not null,
    checks int not null);
    create index xmember3p on member3p(id,checks);
    --create member3p_audit (...);
    insert into member values(1,'tom','new york',0);
    insert into member values(2,'mary','dallas',0);
    insert into member values(3,'marvin','durham',0);
    update member
    set checks = checksum(name,address);
    insert into member3p values(1,'tom','new york',0);
    insert into member3p values(2,'mary','chicago',0);
    update member3p
    set checks = checksum(name,address);
    insert into member3p
    select *
    from member m
    where not exists
    ( select *
    from member3p m3p
    where m3p.id = m.id );
    -- insert into audit...
    select m.*,
    case
    when m.name <> m3p1.name then 'x'
    else ' '
    end as name_change,
    case
    when m.address <> m3p1.address then 'x'
    else ' '
    end as adr_change
    from member m,
    member3p m3p1
    where m.id = m3p1.id and
    exists
    ( select *
    from member3p m3p2
    where m3p2.id = m.id and
    m3p2.checks <> m.checks );
    -- loop and update member3p and member_audit-- It's OK to update columns that were not changedupdate member3p set name = @new_name, address = @new_address;

  • Importing a Flat File to Oracle and updating another table

    Hey everyone,
    I am a newbie with Oracle, and I've tried for the last 2 days to solve this problem below. But all my searches and attempts have failed.
    I have a text file called ReturnedFile.txt. This is a comma separated text file that contains records for two fields.... Envelope and Date Returned.
    At the same time, I have a table in Oracle called Manifest. This table contains the following fields:
    Envelope
    DateSentOut
    DateReturned
    I need to write something that imports the ReturnedFile.txt into a temporary Oracle table named UploadTemp, and then compares the data in the Envelope field from UploadTemp with the Envelope field in Manifest. If it's a match, then the DateReturned field in Manifest needs updated with the DateReturned field in UploadTemp.
    I've done this with SQL Server no problem, but I've been trying for two days to make this work with Oracle and I can't figure it out. I've been trying to use SQL*Loader, but I can't even get it to run properly on my machine.
    I did create a Control file, saved as RetFile.ctl. Below is the contents of the CTL file:
    LOAD DATA
    INFILE 'C:\OracleTest\ReturnedFile.txt'
    APPEND
    INTO TABLE UploadTemp
    FIELDS TERMINATED BY "'"
    ENVELOPE,
    DATERETURNED
    If I could get SQL*Loader running, below is the code I came up with to import the text file and then to do the compare to the Manifest table and update as appropriate:
    sqlldr UserJoe/Password123 CONTROL=C:\OracleTest\RetFile.ctl LOG=RetFile.log BAD=RetFile.bad
    update Manifest m set m.DateReturned =
    (select t.DateReturned
        from UploadTemp t
        where m.Envelope = t.Envelope
    That's all I got. As I said, I can't find a way to test it and I have no idea if it's even close.
    PLEASE...can anyone assist me? Am I even close on this thing?
    Joe

    If your ReturnedFile.txtfile is comma separated then you need TERMINATED BY "," not TERMINATED BY "'" in your control file.  If there happens to not be an ending comma in any row, then you also need to add TRAILING NULLCOLS to your control file.  You should also use a date format for your date in your control file that corresponds to the date format in your ReturnedFile.txt file, in case it does not match the date format on your system.  You need to add a WHERE EXISTS clause to your update statement to prevent any rows that do not match from having the DateReturned updated to a null value.  Please see the example below.  If this does not help then please do a copy and paste as I did, that includes a few rows of sample data and table structure.  It would also help to see your SQL*Loader log file or a SQL*Loader error message.  If you can't get SQL*Loader to run properly, then you may have other issues, such as file permissions at the operating system level.  There are also other options besides the methods below.  For example, you could use an external table, instead of SQL*Loader, if your ReturnedFile.txtfile is on your serer, not your client.  You could also use merge instead of update.
    SCOTT@orcl_11gR2> host type returnedfile.txt
    env2,03-07-2013
    env3,04-07-2013
    env4,05-07-2013
    SCOTT@orcl_11gR2> host type retfile.ctl
    LOAD DATA
    INFILE 'ReturnedFile.txt'
    APPEND
    INTO TABLE UploadTemp
    FIELDS TERMINATED BY ","
    trailing nullcols
    (ENVELOPE
    , DATERETURNED date "dd-mm-yyyy")
    SCOTT@orcl_11gR2> create table uploadtemp
      2    (envelope         varchar2(15),
      3     datereturned  date)
      4  /
    Table created.
    SCOTT@orcl_11gR2> create table Manifest
      2    (Envelope         varchar2(15),
      3     DateSentOut   date,
      4     DateReturned  date)
      5  /
    Table created.
    SCOTT@orcl_11gR2> insert all
      2  into manifest values ('env1', sysdate-7, sysdate-3)
      3  into manifest values ('env2', sysdate-6, null)
      4  into manifest values ('env3', sysdate-5, null)
      5  select * from dual
      6  /
    3 rows created.
    SCOTT@orcl_11gR2> select * from manifest
      2  /
    ENVELOPE        DATESENTO DATERETUR
    env1            28-JUN-13 02-JUL-13
    env2            29-JUN-13
    env3            30-JUN-13
    3 rows selected.
    SCOTT@orcl_11gR2> host sqlldr scott/tiger CONTROL=RetFile.ctl LOG=RetFile.log BAD=RetFile.bad
    SQL*Loader: Release 11.2.0.1.0 - Production on Fri Jul 5 13:15:06 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    Commit point reached - logical record count 3
    SCOTT@orcl_11gR2> select * from uploadtemp
      2  /
    ENVELOPE        DATERETUR
    env2            03-JUL-13
    env3            04-JUL-13
    env4            05-JUL-13
    3 rows selected.
    SCOTT@orcl_11gR2> update Manifest m
      2  set m.DateReturned =
      3    (select t.DateReturned
      4     from   UploadTemp t
      5     where  m.Envelope = t.Envelope)
      6  where exists
      7    (select t.DateReturned
      8     from   UploadTemp t
      9     where  m.Envelope = t.Envelope)
    10  /
    2 rows updated.
    SCOTT@orcl_11gR2> select * from manifest
      2  /
    ENVELOPE        DATESENTO DATERETUR
    env1            28-JUN-13 02-JUL-13
    env2            29-JUN-13 03-JUL-13
    env3            30-JUN-13 04-JUL-13
    3 rows selected.

Maybe you are looking for

  • If statement in stored proc

    hi i have stored proc like this ALTER PROCEDURE [dbo].[p_member] @MemberID INT = NULL, @ID INT = NULL, @Type varchar(20) = NULL AS IF NOT EXISTS (SELECT Memberid FROM Member mcd  JOIN Pro p WITH(NOLOCK)                on mcd.ProgramID = p.ProgramID W

  • Content Area Problem

    Hello, Is it possible to have 2 pages with each containing a content area (one for viewing purpose (say page A), another page to insert or edit item type (page B)) that everytime a user inserts or edit an item type page B, page A automatically refres

  • Vector created in Workflow need to use in form

    Hi, I have created Vector in WF and I need to use this vector in Form to display the values. I am able to see the values from vector in my action but in manual action I am unable to see the value. It shows as null. Is there any way to pass object fro

  • How to decode Google map polyline from 64base to decimal number

    I need help decoding Google map polyline ASCII characters to decimal point. Can someone please help, I have tried few example on NI website but they do not produce desired results. I need something that is going to work like Googles decoder utility h

  • Listener configuration for external procedures

    i am running Oracle 10g database release 2 on a windows platform. I have gone thru the online documentation for configuring a separate listener for the extproc agent. But i wonder if this listener.ora setting is the same on all platforms including Wi