Clear and update JTable.

Hi. this is a follow up from [Original Tread in "New To Java"|http://forums.sun.com/thread.jspa?messageID=10886612�]
Hope you can help me here. For you who dont read the link. This application is build only to lay up here. So the Layout aint pretty. It compiles and run tho. What i want and cant get to work is to reload table when i push my JTabbedPane.
Main Class
package test;
import javax.swing.*;
import javax.swing.event.*;
public class Main {
    public Main() {
        run();
    public void run(){
     frame();
    // clear and update JTable in class three
    public void clearThree() {
        Three t = new Three();
         t.clearVector();
    public JFrame frame() {
        JFrame frame = new JFrame();
        JTabbedPane tab = new JTabbedPane();
        tab.addTab("two",new Two());
        tab.addTab("three", new Three());
        tab.addChangeListener(new ChangeListener() {
            public void stateChanged(ChangeEvent e) {
                clearThree();// this dont work
        frame.add(tab);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(800,400);
         frame.setVisible(true);
         frame.pack();
        return frame;
    public static void main(String[] args) {
         java.awt.EventQueue.invokeLater(new Runnable() {
                     public void run(){
       new Main();
}// class two
package test;
import java.awt.event.*;
import java.util.Vector;
import javax.swing.*;
// class twoś only purpose is to  call clear() in class Three
public class Two extends JPanel{
public Two(){
toolBar();
  public void clearThree () {
   Three t = new Three();
   t.clearVector();
  public void toolBar(){
  JToolBar bar = new JToolBar();
  JButton button = new JButton("clear");
  button.addActionListener(new ActionListener (){
      public void actionPerformed(ActionEvent e){
      clearThree(); // this dont work
bar.add(button);
add(bar);
}// class three hold the table.
package test;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Vector;
import javax.swing.*;
import javax.swing.table.DefaultTableModel;
public class Three extends JPanel{ 
        DefaultTableModel model;
        JTable table;
        Vector v = new Vector();
        Vector a = new Vector();
        Vector<Vector> r = new Vector<Vector>();
    public Three() {
        jBar();
        jTable();
    public void clearVector(){
        v.removeAllElements();
        a.removeAllElements();
        r.removeAllElements();
        model.fireTableDataChanged();
    public void jBar() {
        JToolBar bar = new JToolBar();
        JButton button =  new JButton("clear");
        button.addActionListener(new ActionListener(){
            public void actionPerformed(ActionEvent e){
                clearVector();// this does work
        bar.add(button);
        add(bar);
    public JScrollPane jTable(){
        v.addElement("ID");
        v.addElement("Name");
        a.addElement("01");
        a.addElement("Magnus");
        r.add(a);
        model = new DefaultTableModel(r,v);
        table = new JTable(model);
         JScrollPane pane = new JScrollPane(table);
         add(pane);
         return pane;
}

Thank you for your replay, I have taken all of your tips and modifed my original application. but the problem is still there. This has been a very messy thread. and it is becouse i thougth it were a table/model problem. But it&#347; not. In the code below I have a JTextField. When i push the JTabbedPanes i want the setText(); to kick in. this compile and run.
// class One
package test;
import javax.swing.*;
import javax.swing.event.*;
public class Main {
    public Main() {
        run();
    public void run(){
     frame();
    public JFrame frame() {
        JTabbedPane tab = new JTabbedPane();
        final  Three t = new Three();
        JFrame frame = new JFrame();
        JPanel panel = new JPanel();
        tab.addTab("two",new Two());
        tab.addTab("three", new Three());
        tab.addChangeListener(new ChangeListener() {
            public void stateChanged(ChangeEvent e) {
                  t.setText(); // should call setText() in class Three.
        frame.add(panel);
        frame.add(tab);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(800,400);
         frame.setVisible(true);
         frame.pack();
        return frame;
    public static void main(String[] args) {
         java.awt.EventQueue.invokeLater(new Runnable() {
                     public void run(){
       new Main();
}class Two. Does nothing more then holding an empty tab
package test;
import javax.swing.*;
public class Two extends JPanel{
public Two(){
emptyPane();
  public void emptyPane () {
  JLabel  label = new JLabel("Just an empty JTabbedPane");
  add(label);
  }class Three
package test;
import javax.swing.*;
public class Three extends JPanel{ 
         JTextField text;
    public Three() {
        text();
    public void setText() {
        text.setText("Hello"); // this piece of code i want to insert in my JTextField
        validate();                // when i push the JTabbedPanes.
        repaint();
        updateUI();
    public JTextField text(){
         JToolBar bar = new JToolBar();
        text = new JTextField("",20);
        bar.add(text);
        add(bar);
        return text;
}

Similar Messages

  • JTable woes (JDK 1.5): Sorting and updating data

    So I've been working on this project for a while here that is essentially the front-end to a database system. The data itself is displayed in a JTable derivative. Column 1 is a JComboBox containing a list of companies, Column 2 is a JComboBox containing a list of employees, and the rest of the columns contain information specific to that employee.
    The data for each row is actually contained within a custom TableRowData object, which is used to assign listeners and such:
        private void initComponents() {
            this.organizations.setSelectedEnum(this.data.getOrganizationNumber());
            organizations.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    if("comboBoxChanged".equals(e.getActionCommand())) {
                        clearData();
                        try {                 
                            updateEmployees();
                            fireRowDataChanged();
                        } catch (SQLException ex) {
                            Logger.getLogger(VenosTeammateRow.class.getName()).log(Level.SEVERE, null, ex);
            pocs.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {               
                    if("comboBoxChanged".equals(e.getActionCommand())) {
                        try {
                            data = getEmployeeInformation();
                            fireRowDataChanged();
                        } catch (SQLException ex) {
                            Logger.getLogger(VenosTeammateRow.class.getName()).log(Level.SEVERE, null, ex);
        }Ideally, I would like a change in Column 1 to load the employees for the selected company into Column 2. This is working as expected.
    I would also like a change in Column 2 to load the information specific to the selected employee into the rest of the columns. This is also working as expected.
    The problem I am having arises when the data is sorted and THEN a change is made to either column.
    To sort, I am using a custom comparator that keeps track of the sort direction and current sort column.
    In the JTable derivative class, I have a method, sortByColumn(int col):
    public void sortByColumn(int col) {
            this.getColumnModel().getColumn(col).getCellEditor().cancelCellEditing();
            if(this.getSelectedRow() > 0 && this.getSelectedRow() < this.getRowCount())
                this.removeRowSelectionInterval(this.getSelectedRow(), this.getSelectedRow());
            DefaultTableModel mdl = (DefaultTableModel)this.getModel();
            comp.setSortColumn(col);
            Collections.sort(mdl.getDataVector(), comp);
            // Declare and initialize the header
            JTableHeader header = this.getTableHeader();
            // Reset all headers to their identifier values
            for(int i = 0; i < mdl.getColumnCount(); i++) {
                String identifier = header.getColumnModel().getColumn(i).getIdentifier().toString();
                header.getColumnModel().getColumn(i).setHeaderValue(identifier);
            // Find the sort order (for the sorting indicator)
            int sortOrder = comp.getSortOrder(col);
            // Store the identifier text temporarily
            String headerText = header.getColumnModel().getColumn(col).getIdentifier().toString();
            // Declare and initialize the sort indicator based on the sort order
            String sortIndicator;
            switch(sortOrder) {
                case TableRowComparator.ASCENDING:
                    sortIndicator = "  \u2191";
                    break;
                case TableRowComparator.DECENDING:
                    sortIndicator = "  \u2193";
                    break;
                case TableRowComparator.UNSORTED:
                    sortIndicator = "";
                    break;
                default:
                    sortIndicator = "  \u2193";
                    break;
            /* Set the Header to display the text with the indicator. Since
             * this will automatically set the Identifier to the same value,
             * reset it to the value we stored previously.
            header.getColumnModel().getColumn(col).setHeaderValue(headerText+sortIndicator);
            header.getColumnModel().getColumn(col).setIdentifier(headerText);
            // Make sure all the changes are painted
            header.repaint();
            this.repaint();
        }After the sort, the rows are updated and displayed correctly. However, for example with three rows, if by sorting row 1 and row 3 swap, changing the JComboBox in row 3 also updates the data in row 1.
    I'll be converting my code into a short self-contained program momentarily to post on here for a better understanding of what's going on. However, I decided I would post this just in case there were something painfully obvious I missed.
    Thanks.

    Thanks, you've been really helpful :) However, I realized while trying to copy my code to a smaller, self-contained form to illustrate my problems... I never changed the row number in my TableDataRow! So of course the update information, which was relying on the row number stored in the TableDataRow object (and not the actual row number in the model's data vector) updated according to the old row numbers.
    Basically, I coded myself into a corner :P
    Fixed it by making a new comparator to compare TableDataRow objects, and I stored an array of those objects in my custom table model. So the hard work is done on the TableDataRow objects, the data vector is cleared, and then each TableDataRow is added back as a vector.
    Not sure if this is the most elegant solution, but... it works.
    Edited by: GranoblasticMan on Oct 21, 2008 1:11 PM

  • I have LR from 2 through 4.4,  I am simply trying to adjust CR2s, and convert the them JPEG.  LR says my Perfectly Clear is expired but my update is up to date and all paid for.  What is Perfectly Clear and how do i get this puppy to be part of the team?

    i have LR from 2 through 4.4,  I am simply trying to adjust CR2s, and convert the them JPEG.  LR says my Perfectly Clear is expired but my update is up to date and all paid for.  What is Perfectly Clear and how do i get this puppy to be part of the team?

    Perfectly Clear is a 3rd party commercial plugin for Lightroom.
    http://www.athentech.com/products/plugins/
    Have you ever installed it as a trial in the past?

  • Ap Store shows update for DropCopy and lists it as installed yet it will no clear my updates page in my account.

    Ap Store shows update for DropCopy and lists it as installed yet it will not clear the updates page in my account. How do I clear this?

    I tried the debug mode in mac app store too >> Fail.
    The first time I feel disapointing from apple software.

  • I can't update iMovie, just to clear the red spot on the menu bar since I don't use it, update says I need to purchase but I have iMovie 9.0.4 and update is 9.0.6, do I need to purchase?

    I can't update iMovie, just to clear the red spot on the menu bar since I don't use it, update says I need to purchase but I have iMovie 9.0.4 and update is 9.0.6, do I need to purchase?

    Disclaimer - For me the Apple Support Communities are an international user to user technical support forum. As a man from Mexico my first language is Spanish. I do not speak English, however I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture very different from that found in most 1st world nations, such as that in the two dominant North American countries. Written language has no tone. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    You are confusing two different versions of the iMovie app. You have downloaded an update to the boxed version that Apple sold in the past. Yoi cannot update the version that Apple now sells in the Mac App Store with that update.

  • JTable: how to "synchronize" (and update) with an array ?

    Hello.
    I am new to the Swing and I have been googling to find a solution for my problem, but I've spent too much time and found nothing. Please give me some advice.
    So: I have an array of data and a JTable. The array is constantly being changed and I would like to update the JTable with every change in the array.
    Thank you so much for yr help.

    So here I am with an as-simple-as-possible example of my problem.
    Just run it, everything is in this class.
    And you'll have a table with 10 rows with 0 in every row. Every 2 seconds one line should change, but it doesn't, only if you resize the frame, or click in a cell the numbers in the cells will change.
    Q: how to change it without resizing or clicking into the table ?
    package MainFrame;
    import java.awt.BorderLayout;
    import javax.swing.JTable;
    import javax.swing.WindowConstants;
    import javax.swing.SwingUtilities;
    import javax.swing.table.AbstractTableModel;
    class NewJFrame extends javax.swing.JFrame {
         private static JTable jTable;
         public static void main(String[] args) throws Exception {
              SwingUtilities.invokeAndWait(new Runnable() {
                   public void run() {
                        NewJFrame inst = new NewJFrame();
                        inst.setLocationRelativeTo(null);
                        inst.setVisible(true);
              Generator gen = new Generator(jTable);
         public NewJFrame() {
              super();
              initGUI();
         private void initGUI() {
              try {
                   setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
                   jTable = new JTable(new MyTableModel());
                   getContentPane().add(jTable, BorderLayout.CENTER);
                   pack();
                   this.setSize(399, 263);
              } catch (Exception e) {
                   e.printStackTrace();
    class Generator extends Thread {
         private int[] array = new int[10];
         JTable table;
         public Generator(JTable table) {
              array = new int[10];
              this.table = table;
              this.start();
         public void run() {
              super.run();
              for (int i = 0; i < 10; i++) {
                   array[i] = i + 200;
                   table.getModel().setValueAt(i, i, 0);
                   try {
                        Thread.sleep(2000);
                   } catch (InterruptedException e) {
    class MyTableModel extends AbstractTableModel {
         private int[] array = new int[10];
         public int getColumnCount() {
              return 1;
         public int getRowCount() {
              return array.length;
         public Object getValueAt(int arg0, int arg1) {
              return array[arg0];
         public void setValueAt(Object value, int rowIndex, int columnIndex) {
              array[rowIndex] = ((Integer) value).intValue();
    }Thank you so so much my man.

  • Thanks for yr reply sofar that is clear and indeed, after I  changed the details at my apple ID account from the old Dutch credit card to the new Suisse credit card when I wanted to update my existing apps on the iPhone, I got the message that I can only

    thanks for yr reply
    sofar that is clear
    and indeed, after I
    changed the details at my apple ID account
    from the old Dutch credit card to the new Suisse credit card
    when I wanted to update my existing apps on the iPhone, I
    got the message that I can only use the Suisse Apps store.
    But how does that work?? Can I still update my existing Apps ?? How can I make my iPhone connects to the Suisse App Store ??
    thanks
    Best regards 
    [email protected]

    HI..
    I responded to you here >  https://discussions.apple.com/message/18112516#18112516

  • Clear contents in jtable swing

    How to clear contents from jtable in java swing?

    Remove them from your data model and update the view...

  • Add fields to maintenance view and update then using events

    Hi experts:
      I've created a table with 4 fields, one of them is userid. Also, there is a maintenance view to add new entries.
      I want to display user name when typing userid using events (1 or 21). I know how to do it if username is one of the fields of the table, but there is a requirement to not store username in the table, just userid.
    My question is: is possible to add a field into the maintenance view and update it using events but not store the value in DB?.
    Thanks in advance for your help.
    Regards,
    Carlos.

    In the save event just clear the entries of the field(user name) in the internal table.

  • Lookout OPC Client – Asynchronous I/O and Update Rate serious problems (Sequence of data)

    I am using the Lookout OPCClient driver to connect to AB PLCs (EtherNet/IP protocol) and power measurement equipment (Modbus TCP protocol). The OPC server is the NI OPC Servers. The data that are read out from PLCs and PMs are energy meter readings, energy counters, power, voltage, current, frequency, power factor and el. energy quality measurements (THD). That energy meter readings are being stored in SQL database.
    I am experiencing a serious problem regarding the accuracy of the meter readings. Several times per day, randomly, meter readings are losing the time sequence. For example, sequence is: 167, after few seconds 165, 166.  In other words, present value followed by two previous old values. That generates a serious problem in our application that is expecting a naturally rising sequence of counter values.
    Analyzing further, I isolated the problem to the connection between Lookout OPCClient and OPC Server. I made a simple application in Lookout 6.7 (opcproc.lkp, attached) with OPCClient parameters: NIOPCServers, OPC2, Asynchronus I/O, Update rate: 10000, Deadband: 0.0, that is reading just one tag from NI OPC Servers demo application (simdemo.opf).
    By using OPC diagnostic tool from NI OPC Servers I record the sequence of OPC requests and responses.  I found out that OPCClient sends every 2.5 sec “IOPCAsyncIO2::Refresh2()” call that is request for refreshing of all items in one OPC group. Few milliseconds later OPC Sever responds with callback function “IOPCDataCallback:: OnDataChange()(Device Refresh)” that actually refresh the data.
    This periodic sequence is intrinsic to the OPCClient and cannot be disabled or changed (by my knowledge).  This sequence is periodically interrupted by “IOPCDataCallback:: OnDataChange()” caused by update rate parameter of OPCClient (client is subscribed to server for periodic update of changed items).
    In the case of demo application on every 4 refresh callbacks caused by refresh requests (2.5 sec) there is one update subscription callback determined by Update rate (10 sec).
    QUESTION 1:
    What is the purpose of update sequence and update rate when we have every 2.5 sec fresh values?
    PROBLEM
    The problem arises when we have a large number of items in OPC group. In that case the OPC Server starts to queue refresh requests because they cannot be fulfilled in 2.5 sec time because of large number of I/O points that must be scanned. At the same time update subscription callbacks are running at the period determined by Update rate. I observed in my production system that regular update callbacks has higher priority than refresh callbacks from the queue. That causes the loosing of timed sequence of data. After the update callback with fresh data, sometimes follow one or two refresh callbacks from queue with old (invalid) data. By adjusting Update rate parameter (1 hour, 2hours …) I can postpone the collision of data refreshes but I cannot eliminate it. Furthermore, the 2.5 sec automatic refresh are large burden for systems with many I/O points.
    QUESTION 2:
    Is there a way to disable automatic refresh request every 2.5 sec and just use update requests determined by Update rate?
    QUESTION 3:
    Is there a way (or parameter) to change the period of automatic refresh (2.5 sec)?
    This problem is discovered for Lookout 6.5, 6.6 and 6.7 so I could say it is intrinsic to OPCClient. If I use synchronous I/O requests there is not an automatic refresh, but that is not an option for large systems.
    Thanks!
    Alan Vrana
    System engineer
    SCADA Projekt d.o.o.
    Picmanova 2
    10000 ZAGREB
    CROATIA
    T +385 1 6622230
    F +385 1 6683463
    e-mail [email protected]
    Alan Vrana
    SCADA Projekt d.o.o.
    ZAGREB, Croatia
    Attachments:
    opcproc.zip ‏4 KB

    The physical connection from LV to the switch is (I believe) copper crossover to fiber converter into a switch.  Then, fiber from the switch to the end device (relay).  The relay has all of the typical modbus registries and has been verified by inducing signals in to the system and measured/polled in LabVIEW and observed Variable Monitor.  I am working with LV 8.2 and 8.5. 
    An OPC server would only add an additional translation of addressing within the configuration.  The only real draw back would be the network overhead required to do this processing and not being representative of the end design configuration.
    I will reiterated my question in another way:
    I must answer the question to management that relates to data collection, test results and analysis; how often are you polling the client in relation to the outcomes measured?  At this time I can not point at any configuration in the set up and execution that directs the data framing rate.  I only measure the traffic and work with results.  This needs to be clearly identified based on the relay modbus/tcp design capability of supporting an fixed number of client requests per second. 
    For testing purposes, I would like to be able to stress the system to failure and have prove capabilities with measured data.  The present problem is that I have no basis to establish varying polling rates that effect the measured data transmission. 
    This raises another question.  What handles the Variable Monitor data requests and how is this rate determined?
    Thanks for your interest in my efforts.
    Steve

  • Error in saving template and updating files

    I'm using Dw CS3 on Windows XP. I have created a template I created from another page and then created my new pages from the template. I am still working on the site so it's all on my computer - not yet uploaded to the remote site. It was working fine for quite some time but suddenly now when I make a change to the template I am getting the following error message:
    The code on line 6 is:
    <!-- TemplateBeginEditable name="doctitle" -->
    The code immediately above and below, in case that is relevant, is:
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <meta name="keywords" content="Creighton Bookkeeping, Creighton Book Keeping, bookkeeping, book keeping, Creighton, Creighton services" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Your Page Title Goes Here</title>
    <!-- TemplateEndEditable -->
    <style type="text/css">
    <!--
    #wrapper {
    position:relative;
    etc ...
    As you can see, I had a problem with Dw CS3 giving my pages a tiltle so I had to adopt the workaround I found in the Dreamweaver forum.
    I can't see what the problem is on line 6; and I clearly have to give my pages a title. I have no idea how to find column 47.
    This is my first site, and yes I have used AP Divs. I have since seen all the warnings about dangers using them (after the event) and won't in future except where absolutely required. For this initial site I am using fonts in points which does not seem to be a problem in the browser when I enlarge the fonts - because they won't enlarge so the AP divs don't cause a problem that I can see. When I re-design the site in the future I'll move away from the AP divs to allow for the fonts to be enlarged in the browser.
    So, any clues as to how to clean up this code so the .dwt will save and update pages properly. Hopefully I have provided sufficient information (I haven't yet worked out how to upload the page so you can see all the code).
    Look forward to hearing of possible solutions.
    Many thanks.

    Hi Medel,
    We fully support Windows 8.1 Enterprise, therefore it is alright to use that SKU. As long as you have Windows 8.1, all that Siena needs, will be provided by the Operating System.
    As a follow up for you, on the other laptop, if you do the following what happens?
    1) Reboot
    2) Start Siena, once the machine comes back up
    3) Start a new document and save as something other than "test.siena", on your desktop
    Does it save? If it does not, you may have to post on the Windows Forum and see what suggestions are available.
    Thanks.

  • 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. 

  • Insert,  Delete and Update options in Table control

    Experts,
    I have writen code for Insert,  Delete and Update options in Table control. They are not working properly...
    can any one send the code for the above please...
    Thanks in advance..

    Hi,
    Following steps will help you.
    1.TOP-INCLUDE
    DATA: ITAB1 LIKE KNA1 OCCURS 0 WITH HEADER LINE.
    DATA: ITAB2 LIKE KNA1 OCCURS 0 WITH HEADER LINE.
    DATA: WA LIKE KNA1.
    DATA: ANT TYPE I,CUR TYPE I.
    DATA: OK_CODE TYPE SY-UCOMM.
    CONTROLS: TABCTRL TYPE TABLEVIEW USING SCREEN 100.
    IN FLOWLOGIC
    PROCESS BEFORE OUTPUT.
    LOOP AT ITAB1 CURSOR CUR WITH CONTROL TABCTRL.
    ENDLOOP.
    PROCESS AFTER INPUT.
    MODULE CLEAR_DATA.
    LOOP AT ITAB1.
    MODULE MOVE_DATA.
    ENDLOOP.
    ADD “OK_CODE” IN ELEMENT LIST. CLICK ON LAYOUT AND  ADD TABLE CONTROL(name it as TABCTRL) AND PUSHBUTTONS AS FOLLOWS.
    SELECT THE FIELDS FROM PROGRAM. SAVE CHECK AND ACTIVATE.
    CLICK ON FLOWLOGIC EDITOR FROM APPLICATION TOOL BAR.
    DOUBLE CLICK ON MODULE “CLEAR_DATA”.
    write the in this module as below.
    CLEAR ITAB2. REFRESH ITAB2.
    DOUBLE CLICK ON MODULE “MOVE_DATA”.
    write the code in this module as below.
    APPEND ITAB1 TO ITAB2.
    ACTIVATE PAI AND WRITE THE CODE AS BELOW.
    CASE OK_CODE.
    WHEN 'FETCH'.
    SELECT * FROM KNA1 INTO TABLE ITAB1 UP TO 20 ROWS.
    TABCTRL-LINES = SY-DBCNT.
    WHEN 'ADD'.
    GET CURSOR LINE CNT.
    CNT = TABCTRL-TOP_LINE + CNT - 1.
    CLEAR WA.
    INSERT WA INTO ITAB1 INDEX CNT.
    WHEN 'MODIFY'.
    GET CURSOR LINE CNT.
    READ TABLE ITAB2 INDEX CNT.
    LOOP AT ITAB2.
    MODIFY KNA1 FROM ITAB2.
    ENDLOOP.
    SELECT * FROM KNA1 INTO TABLE ITAB1.
    WHEN 'EXIT'.
    LEAVE PROGRAM.
    ENDCASE.
    SAVE,CHECK AND ACTIVATE ALL.
    CREATE TCODE AND EXECUTE.
    contact if u hv any issues regarding this code.
    reward points,if it is useful.
    Thanks,
    Chandu.

  • After updating to ios 8.2 i can't download and update the apps in AppStore on my ipad

    after updating to ios 8.2 i can't download and update the apps in AppStore on my ipad! What happens?

    It may just be a glitch. Try going into the app store signing out, then sign back in and see if it clears up.

  • It tried to update my phone I followed everything it told me to do. My phone then switched off and indicated that I needed to connect to iTunes I did that it said restore and update pressed that and now it says iPhone in recovery can not restore

    Hi I tried to update my iPhone 5 to ios7 I followed everything it told me to do it started to verify switched its self off came up with a symbol that indicated to plug into iTunes I did that it then said restore so I pressed to restore and update a message then came up on iTunes that my iPhone is in recovery and couldn't restore I need help I don't no what to do 

    Just some possible solutions, try and see:
    - Make sure you have the latest version of iTunes.
    - Reboot your laptop.
    - Clear hosts (windows/system32/drivers/etc/hosts)
    - Remove the iOS 7 ipsw and let iTunes download a new one (press WINDOWS KEY + R and type %appdata%, then navigate to Apple Computer/iTunes/Software Updates and remove the ipsw).
    - Don't forget to close iTunes before doing these actions.
    - Try a different USB port.
    - Completely remove iTunes (also from registry and stuff) and re-install.
    - Try on a different computer.

Maybe you are looking for