Changes to ESS not deployed

Hi everybody,
we have setup a track for modifying the ESS aplication deliverd by SAP (as described in the coockbook). But when building and deploying the central deploy log says:
deployment of E:\usr\sap\DI1\SYS\global\TCS\DEPLOYARCHIVES/200807011529260503_sap.com_SAP_ESS_1_sap.com_essdeaddr.sda and its corresponding DC is skipped, because it belongs to the software component (sap.com / SAP_ESS)
Any Idea to solve this issue ?
Thanks...Points will be rewarded.
Andru00E9

Well, that isn't what I do. I guess we all have to develop a workflow that works for us. I treat the downloaded JPEG files as "master" files. I do the adjustments in ACR because, as you say, it's always possible to go back to the original image. So my workflow involves saving copies of the images (not overwriting the original images) in a separate subfolder. Yes, that involves more disk space, but that is how I prefer to work.
If you are not familiar with Dr. Brown, then you have a real treat in store for you. He is kind of crazy, in a good sort of way. And he has a lot of excellent tutorials and some free Photoshop add-ons. Here is the link to his website:
Russell Brown Show
Just click on "Photo Tips and Techniques".

Similar Messages

  • Modified changes to ESS DC are not visible

    Hello Experts,
    I have imported the DC and checked out. I have modified essusfam~sap.com by adding a text field and input label. Saved all my changes and tried to deploy the code from the context menu in webdynpro explorer. NWDS prompts for SDM pasword and later I see the deployment sucessfull. But, the changes are not visible. Just want to know if I am missing any steps before deployment. or do I need to follow any more steps.
    I am trying not to use NWDI deployment process
    Thanks,
    Sharath.

    Hi Sharath,
    When building, choose project then right click and select build... from Development Component section.
    Regards,
    Raj

  • Jenkins not deploying on Tomcat; SSH Service not starting

    So I've had a couple of problems happening. My first problem is that even though sshd.service and sshd.socket are enabled with systemctl, it does not automatically start. There are no errors reported in journalctl, it just does not start. When issuing systemctl status sshd.service and systemctl status sshd.socket, there is nothing to report. Once I manually start them, there are no errors reported, and everything works as expected.
    sshd.socket
    [Unit]
    Conflicts=sshd.service
    Wants=sshdgenkeys.service
    [Socket]
    ListenStream=22
    Accept=yes
    [Install]
    WantedBy=sockets.target
    sshd.service
    [Unit]
    Description=OpenSSH Daemon
    Wants=sshdgenkeys.service
    After=sshdgenkeys.service
    After=network.target
    [Service]
    ExecStart=/usr/bin/sshd -D
    ExecReload=/bin/kill -HUP $MAINPID
    KillMode=process
    Restart=always
    [Install]
    WantedBy=multi-user.target
    # This service file runs an SSH daemon that forks for each incoming connection.
    # If you prefer to spawn on-demand daemons, use sshd.socket and [email protected].
    The second problem is my tomcat service. It won't start the Jenkins. I've linked the jenkins.war file to the webapps folder. When I start tomcat using systemctl start tomcat8, this is the output of journalctl -xn
    -- Logs begin at Sat 2014-08-30 06:46:59 PDT, end at Sun 2014-09-14 15:45:38 PDT. --
    Sep 14 15:45:15 localhost jsvc.exec[1344]: Sep 14, 2014 3:45:15 PM org.apache.coyote.AbstractProtocol stop
    INFO: Stopping ProtocolHandler ["http-nio-8080"]
    Sep 14 15:45:16 localhost jsvc.exec[1344]: Sep 14, 2014 3:45:16 PM org.apache.coyote.AbstractProtocol stop
    INFO: Stopping ProtocolHandler ["ajp-nio-8009"]
    Sep 14 15:45:16 localhost jsvc.exec[1344]: Sep 14, 2014 3:45:16 PM org.apache.coyote.AbstractProtocol destroy
    INFO: Destroying ProtocolHandler ["http-nio-8080"]
    Sep 14 15:45:16 localhost jsvc.exec[1344]: Sep 14, 2014 3:45:16 PM org.apache.coyote.AbstractProtocol destroy
    INFO: Destroying ProtocolHandler ["ajp-nio-8009"]
    Sep 14 15:45:27 localhost systemd[1]: [/usr/lib/systemd/system/systemd-journal-upload.service:20] Unknown lvalue 'After' in section 'Install'
    Sep 14 15:45:38 localhost systemd[1]: Failed to reset devices.list on /system.slice: Invalid argument
    Sep 14 15:45:38 localhost jsvc[28476]: Cannot locate Java Home
    Sep 14 15:45:38 localhost systemd[1]: tomcat8.service: control process exited, code=exited status=1
    Sep 14 15:45:38 localhost systemd[1]: Failed to start Tomcat 8 servlet container.
    -- Subject: Unit tomcat8.service has failed
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit tomcat8.service has failed.
    -- The result is failed.
    Sep 14 15:45:38 localhost systemd[1]: Unit tomcat8.service entered failed state.
    Here is the tomcat8.service file before my changes, as suggested here
    [Unit]
    Description=Tomcat 8 servlet container
    After=network.target
    [Service]
    Type=forking
    PIDFile=/var/run/tomcat8.pid
    Environment=CATALINA_PID=/var/run/tomcat8.pid
    Environment=TOMCAT_JAVA_HOME=/usr/lib/jvm/java-7-openjdk
    Environment=CATALINA_HOME=/usr/share/tomcat8
    Environment=CATALINA_BASE=/usr/share/tomcat8
    Environment=CATALINA_OPTS=
    ExecStart=/usr/bin/jsvc \
    -Dcatalina.home=${CATALINA_HOME} \
    -Dcatalina.base=${CATALINA_BASE} \
    -Djava.io.tmpdir=/var/tmp/tomcat8/temp \
    -cp /usr/share/java/commons-daemon.jar:/usr/share/java/eclipse-ecj.jar:${CATALINA_HOME}/bin/bootstrap.jar:${CATALINA_HOME}/bin/tomcat-juli.jar \
    -user tomcat8 \
    -java-home ${TOMCAT_JAVA_HOME} \
    -pidfile /var/run/tomcat8.pid \
    -errfile SYSLOG \
    -outfile SYSLOG \
    $CATALINA_OPTS \
    org.apache.catalina.startup.Bootstrap
    ExecStop=/usr/bin/jsvc \
    -pidfile /var/run/tomcat8.pid \
    -stop \
    org.apache.catalina.startup.Bootstrap
    [Install]
    WantedBy=multi-user.target
    And after
    [Unit]
    Description=Tomcat 8 servlet container
    After=network.target
    [Service]
    Type=forking
    PIDFile=/var/run/tomcat8.pid
    Environment=CATALINA_PID=/var/run/tomcat8.pid
    Environment=TOMCAT_JAVA_HOME=/usr/lib/jvm/java-7-openjdk
    Environment=CATALINA_HOME=/usr/share/tomcat8
    Environment=CATALINA_BASE=/usr/share/tomcat8
    Environment=CATALINA_OPTS=-DJENKINS_HOME=/usr/share/java/jenkins
    ExecStart=/usr/bin/jsvc \
    -Dcatalina.home=${CATALINA_HOME} \
    -Dcatalina.base=${CATALINA_BASE} \
    -Djava.io.tmpdir=/var/tmp/tomcat8/temp \
    -cp /usr/share/java/commons-daemon.jar:/usr/share/java/eclipse-ecj.jar:${CATALINA_HOME}/bin/bootstrap.jar:${CATALINA_HOME}/bin/tomcat-juli.jar \
    -user tomcat8 \
    -java-home ${TOMCAT_JAVA_HOME} \
    -pidfile /var/run/tomcat8.pid \
    -errfile SYSLOG \
    -outfile SYSLOG \
    $CATALINA_OPTS \
    org.apache.catalina.startup.Bootstrap
    ExecStop=/usr/bin/jsvc \
    -pidfile /var/run/tomcat8.pid \
    -stop \
    org.apache.catalina.startup.Bootstrap
    [Install]
    WantedBy=multi-user.target
    EDIT:
    The SSHD problem is fixed. I read more closely at the sshd.socket config, and it clearly states it conflicts with sshd.service. I disabled service and everything works fine. But I am still having trouble getting Jenkins to work with Tomcat.
    Last edited by ZMoore (2014-09-15 00:33:18)

    Thank you, but the problem is a little different from that. These are
    exploded web apps outside the applications dir. I deployed them
    through the console initially; on the other servers, when WL restarts,
    the apps are deployed back to their targets just fine. It's only this
    box that loses sense of the targets on WL restart.
    We're on 6.1, so a few people have suggested upgrading to 6.1 sp4 --
    they've said they've seen this problem, and the sp corrects it.
    That said, this is a production box and upgrading it is a hassle. I'll
    get started on scheduling that, but if anyone has any ideas in the
    meantime, I'd greatly appreciate it. If not, thanks anyway. :)
    Rob
    "Deepak Vohra" <[email protected]> wrote in message news:<3eebae8e$[email protected]>...
    WLServer should start in development mode for a application
    in the applications dir to deploy.
    STARTMODE=false
    [email protected] (Rob Young) wrote:
    On one of our production servers (just one), when I restart weblogic,
    my web applications are not deploying; I have to deploy them manually.
    This is bad, obviously, because the server won't restore properly
    after a restart.
    After a while, I get target="box,box,box,box" that represents the
    multiple times I've deployed that application to the target "box".
    From config.xml:
    <Application Deployed="true" Name="revx" Path="F:\revx">
    <WebAppComponent Name="revx"
    Targets="giocm,giocm,giocm,giocm,giocm,giocm,giocm"
    URI="revx"/>
    </Application>
    The operating system is Windows 2000 5.00.2195 ... everything was
    working fine until I re-installed the Windows service this weekend.
    I've checked permissions on the folder, on the file, and who the
    service is running as. I've manually edited config.xml to remove the
    duplicate target entries.
    I've seen some other posts from people who have also experienced
    applications not deploying on WL restart, but I don't see any
    resolutions.
    Rob

  • DC not deploying in QA but working fine in DEV

    Hi All,
    I have created one activity in DEV  for one  view from one DC then I made some changes and checked in (NWDI), activated and released.
    Later trying to deploy it into QA server it is not deploying, giving error like :
    (Activity name)staging deployment partially completed due to some DC deployment is finished with error.
    but we haven't touched this DC.
    earlier we havn't faced this problem, we have upgraded QA SP 9 to SP11.
    If we run the application from QA getting error like NoClassDefFound error.
    Even we are trying to deploy another DC which we are getting error at deploy time it self also not deploying.
    what might be the problem? Any ideas from experts?
    Regards,
    Srikanth

    Hi Parama,
    Thank you.
    I tried so many times to  recheck in DEV server even though it is giving same error?
    Regards,
    srikanth

  • Changes in EJB when deployed in JBoss

    Hi,
    We Created the Enterprise Application (EJB Project and WebProject) in the JDeveloper11g preview 1. It is Sucessfully working when it deployed in OC4J application server. I want to deploy the same application in the JBoss. what are the changes i should to deploy the the same application in JBoss. Can any one help me.
    Thanking you,
    NIRANJAN REDDY.

    hi NIRANJAN REDDY (Prapan Sol)
    see also the JDeveloper 11g Release Notes about deployment
    http://www.oracle.com/technology/products/jdev/htdocs/11/knownissues.html#gi2
    "+ADF 11g applications require a Java EE 5 container. To date, only Oracle WebLogic Server 10g (10.3) is certified, and *we plan to support JBoss* and Tomcat as well. Note, OC4J 10.1.3 and/or OAS 10.1.3 is not fully Java EE 5 compliant, and ADF 11g applications will not work in that environment.+"
    success
    Jan Vervecken

  • Com.sap.portal.admin.acleditor.par not deployed properly during ep install

    Hi,
    We are installing ep on top of a java add-in.
    The version of ep is sp3. After the installation when i check the pcd folder coom.portal.admin.acleditor.par is not deployed.
    Log has Fatal applciation upload failed. and there is some error which says xml declaration is not allowd here.
    When i try to access the portal page its loading for a long time and giveing page cannot be displayed.
    Portal analyzer gives clean results except for this par file.
    Please help.
    Regards
    Bharathwaj

    Hi Bharathwaj,
    > Do you think the upgradation of the this
    > to SP13 will solve the issue. ??
    No, I wouldn't advise to upgrade a really broken installation. You may give it a try, but the success probability I wouldn't expect as too high...
    > Does a EP upgrade create a clean install again..
    > or just add a few more files ???
    It deploys new portal applications and/or redeploys existing ones which have changes (bug fixed). So theoratically if a PAR is broken, a new one may be fixed; on the other hand, the installation seems to be buggy in it's kernel, in such a case, the root cause seems to be something else than "only" one failed PAR upload.
    > Is there any log file which says what are the steps
    > it had skipped..
    Beneath the default.trc to check for the portal runtime, SAPInst has it's own logs under the temporary inst dir.
    Hope it helps
    Detlev

  • Error: Static content was not deployed. Please ask your system admin

    One of my users is getting the following error Static content was not deployed. Please ask your system administrator for assistance.
    Has anyone had this before or does anyone know what this is referencing. This happens each time she runs a report and the report does not format correctly.
    At the moment it only looks to be her but i dont think this is system settings as she is running Citrix and all other existing users on Citrix are not complaining.

    JE,
    I've seen it, it happens randomly to some users and no others, we saw it last year for a few weeks then it stop and restarted again in Jan then stopped again. Log a call with CC and give them this CR# 12-1QK0RRZ, the last update I have on this is "Understand that this will require some code changes before its fixed .However, I am unable to provide you an estimated time of implementation at this time. I will update you as soon as I hear more on this one." but that was in March.
    2 things it doesn't happen in Firefox if that is an option for the user AND we found if you signed into staging then back into prod it made it go away, dont' ask me how or why but it seemed to work for us.
    good luck ;-D
    Alex

  • BPEL plugin for Eclipse does not deploy ?

    As far as I heard there is a BPEL plugin for Eclipse.
    Is this correct ? Where do I get this plugin?
    Is this true that I can develop but not deploy code
    with this plugin?

    So what is correct here. All of the tutorials and quick guides are all using Eclipse. I am trying to test 10.1.3 SOA version as I am currently on 10.1.2.0 w/ JDev being my designer.
    J-Dev BPEL plugin changed quite a bit, so I wanted to RTFM but they are all in Eclipse.
    Like these for instance
    http://www.oracle.com/technology/products/ias/bpel/pdf/orabpel-QuickStart.pdf
    http://www.oracle.com/technology/products/ias/bpel/pdf/orabpel-Tutorial1-HelloWorldTutorial.pdf
    So whats the dill pickles?

  • Can not deploy: NoClassDefFoundError

    Hi,
    i want to create a new folder in KM-Content of my Portal. Therefor i have write the following piece of code and import the libraries below. My problem is that i can not deploy my Application.
    I get the error message: Caused by: java.lang.NoClassDefFoundError: com/sapportals/wcm/repository/IResourceContext
    I have read that i have to add a Sharing reference to "knowledgemanagement" in the portaapp.xml file.
    But i use a Java Bean/Web Service (EJB) with a Application (EAR), so i have nothing with <b>dist/PORTAL-INF</b>.
    What can i do? How can i deploy my application and solve the problem?
    import bc.rf.framework_api.jar
    import bc.util.public_api.jar
    import com.sap.portal.usermanagement.admin_api.jar
    import com.sap.portal.usermanagementapi.jar
    import com.sap.security.api.ep5.jar
                 try {
                      com.sapportals.portal.security.usermanagement.IUser user = WPUMFactory.getServiceUserFactory().getServiceUser("cmadmin_service");
                   ResourceContext ctxt = new ResourceContext(user);
                   IResourceContext rContext = new ResourceContext(user);
                   IResourceFactory resourceFactory = ResourceFactory.getInstance();
                   RID aRid = RID.getRID("/documents/Test");
                   ICollection aCollection =
                        (ICollection) resourceFactory.getResource(aRid, rContext);
                   if (aCollection != null) {
                        IResource resource =
                             aCollection.createResource("myFolder", null, null);
              } catch (Exception ex) {
                   ex.printStackTrace();
    regards,
    Sharam

    Hi Sharam,
    Make sure that you have your sharing reference set properly in the portalapp.xml file. Open portalapp.xml and click on the Application tab. This is what I like to have mine set to:
    SharingReference=usermanagement,knowledgemanagement,landscape,htmlb,exportalJCOclient,exportal
    Save your changes and the recompile/deploy.
    Hope this helps!
    -StephenS

  • Clients finds updates that is not deployed and fails to install them! Code: 80242006

    Hello!
    I have SCCM 2007 SP2 R2 and trying to setup the Software Update Point!.
    The weird thing is that the computers finds updates that is not deployed or not even downloaded and tries to install them but the fail with the error code: 80242006.
    See Pic:
    http://img51.imageshack.us/img51/3180/errorjo.jpg
    Some of those updates in the picture actually are downloaded and deployed but many of them are not.
    "Computer Configuration --> Administrative Templates --> Windows Update --> Specify Intranet Microsoft Update Service Location" is pointing to our SCCM.
    "Install Software Uppdates" in Task Sequance are disable.
    The Update package is distrubuted to all DPs
    Why does my computer find updates that is not is deployed or downloaded and why does it fail to install those that are?
    Where do i start the troubleshoot?
    // Clint eastwood!

    First check the windowsupdate.log and see which WSUS server that is being used. A Configmgr controlled client will not install non-deployed updates.
    Kent Agerlund | My blogs: blog.coretech.dk/keaand
    SCUG.dk/| Twitter:
    @Agerlund| Linkedin: Kent Agerlund
    Hi!
    I Reinstalled the computer through our Task Sequence and when i logged in the first time all the failed updates where there!
    http://www.2shared.com/file/eZ_CYzDC/WindowsUpdate.html
    I Have uploaded the WindowsUpdate.log
    Some interesting things from the log:
    2012-03-27 17:12:43:808 1008 848 PT +++++++++++ PT: Synchronizing server updates +++++++++++
    2012-03-27 17:12:43:808 1008 848 PT + ServiceId = {9482F4B4-E343-43B6-B170-9A65BC822C77}, Server URL = https://www.update.microsoft.com/v6/ClientWebService/client.asmx
    2012-03-27 17:12:44:931 1008 848 PT WARNING: Cached cookie has expired or new PID is available
    2012-03-27 17:12:44:931 1008 848 PT WARNING: PTWarn: Anonymous plug-in skipped for WU
    2012-03-27 17:12:46:478 2584 a1c Misc =========== Logging initialized (build: 7.1.6001.65, tz: +0200) ===========
    2012-03-27 17:12:46:478 2584 a1c Misc = Process: c:\bc396c964f9a1206ade01b43a1\wusetup.exe
    2012-03-27 17:12:46:478 2584 a1c Setup Evaluating CBS package "c:\bc396c964f9a1206ade01b43a1\WUClient-SelfUpdate-Core-TopLevel.cab"
    2012-03-27 17:12:47:823 2584 a1c Handler FATAL: UH: 0x8007047f: CreatePackage failed in CCbs::CreatePackage
    2012-03-27 17:12:47:823 2584 a1c Setup WARNING: Failed to evaluate applicability, will try to install anyway, error = 0x8007047F
    2012-03-27 17:12:47:823 2584 a1c Setup Evaluating CBS package "c:\bc396c964f9a1206ade01b43a1\WUClient-SelfUpdate-ActiveX.cab"
    2012-03-27 17:12:47:823 2584 a1c Handler FATAL: UH: 0x8007047f: CreatePackage failed in CCbs::CreatePackage
    2012-03-27 17:12:47:823 2584 a1c Setup WARNING: Failed to evaluate applicability, will try to install anyway, error = 0x8007047F
    2012-03-27 17:12:47:823 2584 a1c Setup Evaluating CBS package "c:\bc396c964f9a1206ade01b43a1\WUClient-SelfUpdate-Aux-TopLevel.cab"
    2012-03-27 17:12:47:854 2584 a1c Handler FATAL: UH: 0x8007047f: CreatePackage failed in CCbs::CreatePackage
    2012-03-27 17:12:47:854 2584 a1c Setup WARNING: Failed to evaluate applicability, will try to install anyway, error = 0x8007047F
    2012-03-27 17:12:47:854 2584 a1c Setup wusetup has finished. Exit code is 47f. Reboot is NOT needed
    2012-03-27 17:13:11:539 1008 848 Agent WARNING: Failed to evaluate Installed rule, updateId = {818701AF-1182-45C2-BD1E-17068AD171D6}.101, hr = 80242013
    2012-03-27 17:13:12:337 1008 848 Misc Validating signature for C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2012-03-27 17:13:12:337 1008 848 Misc Microsoft signed: Yes
    2012-03-27 17:13:12:384 1008 848 Misc Validating signature for C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2012-03-27 17:13:12:384 1008 848 Misc Microsoft signed: Yes
    2012-03-27 17:13:12:384 1008 848 PT +++++++++++ PT: Synchronizing extended update info +++++++++++
    2012-03-27 17:13:12:384 1008 848 PT + ServiceId = {9482F4B4-E343-43B6-B170-9A65BC822C77}, Server URL = https://www.update.microsoft.com/v6/ClientWebService/client.asmx
    2012-03-27 17:13:13:948 1008 848 DtaStor WARNING: Attempted to add URL http://download.windowsupdate.com/msdownload/update/software/secu/2011/01/windows6.1-kb2475792-x64_2e8f675625883458482042e128f54167f0193f9b.msu for file Lo9nViWINFhIIELhKPVBZ/AZP5s= when file has not been previously added to the datastore
    2012-03-27 17:13:13:948 1008 848 DtaStor WARNING: Attempted to add URL http://download.windowsupdate.com/msdownload/update/software/secu/2011/01/windows6.1-kb2425227-x64_0749e0e8531479e1de9347fe584e61d43c209c0f.msu for file B0ng6FMUeeHek0f+WE5h1DwgnA8= when file has not been previously added to the datastore
    2012-03-27 17:13:13:948 1008 848 DtaStor WARNING: Attempted to add URL http://download.windowsupdate.com/msdownload/update/software/secu/2011/01/windows6.1-kb2485376-x64_7082a10a94b6cfffdd28f5f57f02e15a5345f5a7.msu for file cIKhCpS2z//dKPX1fwLhWlNF9ac= when file has not been previously added to the datastore
    2012-03-27 17:13:13:948 1008 848 DtaStor WARNING: Attempted to add URL http://download.windowsupdate.com/msdownload/update/software/dflt/2011/02/4114643_f51f1bdeb794bd3966e7fc1745b9f697584b6912.cab for file 9R8b3reUvTlm5/wXRbn2l1hLaRI= when file has not been previously added to the datastore
    2012-03-27 17:13:13:948 1008 848 DtaStor WARNING: Attempted to add URL http://download.windowsupdate.com/msdownload/update/software/dflt/2011/02/4114639_25270be196f84651a08b6578559a014e067b04b9.cab for file JScL4Zb4RlGgi2V4VZoBTgZ7BLk= when file has not been previously added to the datastore
    2012-03-27 17:13:13:948 1008 848 DtaStor WARNING: Attempted to add URL http://download.windowsupdate.com/msdownload/update/software/dflt/2011/02/4114417_7f54b04997e2e7a214de150fed8cbec149c31011.cab for file f1SwSZfi56IU3hUP7Yy+wUnDEBE= when file has not been previously added to the datastore
    2012-03-27 17:13:13:948 1008 848 DtaStor WARNING: Attempted to add URL http://download.windowsupdate.com/msdownload/update/software/dflt/2011/02/4114242_dc45445930326e31180748cd5a2afa8f575c61f5.cab for file 3EVEWTAybjEYB0jNWir6j1dcYfU= when file has not been previously added to the datastore
    2012-03-27 17:13:13:948 1008 848 DtaStor WARNING: Attempted to add URL http://download.windowsupdate.com/msdownload/update/software/secu/2011/01/windows6.1-kb2479628-x64_a774713ef62d45373a08d4a7c0acfa18e8ec87c8.msu for file p3RxPvYtRTc6CNSnwKz6GOjsh8g= when file has not been previously added to the datastore
    2012-03-27 17:13:16:624 1008 848 Agent * Found 103 updates and 17 categories in search; evaluated appl. rules of 489 out of 647 deployed entities
    I guess the computer is still in the OS installation during this time.
    Then 13 Minutes after it finds our sccm:
    2012-03-27 17:26:07:641 980 c70 Agent *********** Agent: Refreshing global settings cache ***********
    2012-03-27 17:26:07:641 980 c70 Agent * WSUS server: http://<SCCM-SERVER>:8530 (Changed)
    2012-03-27 17:26:07:641 980 c70 Agent * WSUS status server: http://<SCCM-SERVER>:8530 (Changed)
    2012-03-27 17:26:07:641 980 c70 Agent * Target group: (Unassigned Computers) (Unchanged)
    2012-03-27 17:26:07:641 980 c70 Agent * Windows Update access disabled: No (Unchanged)
    2012-03-27 17:26:07:641 980 c70 AU AU received policy change subscription event
    2012-03-27 17:26:07:641 980 c70 AU Sus server changed through policy.
    2012-03-27 17:26:07:641 980 c70 AU AU Refresh required....
    2012-03-27 17:26:07:641 980 c70 AU AU setting next detection timeout to 2012-03-27 15:26:07
    2012-03-27 17:26:07:656 980 c70 AU Need to reset accelerated install required state
    2012-03-27 17:26:07:656 980 c70 AU Accelerate Install required state reset
    2012-03-27 17:26:07:656 980 c70 AU Auto-approving update for download, updateId = {4AE85C00-0EAA-4BE0-B81B-DBD7053D5FAE}.104, ForUx=0, IsOwnerUx=0, HasDeadline=0, IsMinor=0
    2012-03-27 17:26:07:656 980 c70 AU Auto-approving update for download, updateId = {C5306702-92EC-4E99-9C77-2B70FB60078B}.101, ForUx=0, IsOwnerUx=0, HasDeadline=0, IsMinor=0
    2012-03-27 17:26:07:656 980 c70 AU Auto-approving update for download, updateId = {C5171A07-B024-44B4-B74A-A2EC2EEC177C}.102, ForUx=0, IsOwnerUx=0, HasDeadline=0, IsMinor=0
    2012-03-27 17:26:07:656 980 c70 AU Auto-approving update for download, updateId = {1FE1AC0A-7B22-470B-A317-5DA507385409}.101, ForUx=0, IsOwnerUx=0, HasDeadline=0, IsMinor=0
    2012-03-27 17:26:07:656 980 c70 AU Auto-approving update for download, updateId = {609AEF10-0A3C-4484-BD38-86BB38E3EFA3}.104, ForUx=0, IsOwnerUx=0, HasDeadline=0, IsMinor=0
    2012-03-27 17:26:07:656 980 c70 AU Auto-approved 65 update(s) for download (NOT for Ux)
    This is the Updates that i see when i log on for the first time nad all of them is Failed! Still, Many of those updates does not exist on the SCCM server.
    And here comes the error:
    2012-03-27 17:26:07:937 980 914 Agent WARNING: fail to get update deployments with error 0x80248007
    2012-03-27 17:26:07:937 980 a10 Agent WARNING: Failed to get deployment data from data store, error 80248007
    2012-03-27 17:26:07:937 980 914 DnldMgr *************
    2012-03-27 17:26:07:937 980 914 DnldMgr ** START ** DnldMgr: Downloading updates [CallerId = AutomaticUpdates]
    2012-03-27 17:26:07:937 980 a10 AU WARNING: GetUpdateDeployment3 failed, error = 0x80248007
    2012-03-27 17:26:07:937 980 914 DnldMgr *********
    2012-03-27 17:26:07:937 980 914 DnldMgr * Call ID = {B6C9F0ED-9900-42BC-9BBE-61ADE865CADC}
    2012-03-27 17:26:07:937 980 914 DnldMgr * Priority = 2, Interactive = 0, Owner is system = 1, Explicit proxy = 0, Proxy session id = -1, ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}
    2012-03-27 17:26:07:937 980 914 DnldMgr * Updates to download = 1
    2012-03-27 17:26:07:937 980 914 Agent * Title = Security Update for Windows 7 for x64-based Systems (KB2584146)
    2012-03-27 17:26:07:937 980 914 Agent * UpdateId = {4AE85C00-0EAA-4BE0-B81B-DBD7053D5FAE}.104
    2012-03-27 17:26:07:937 980 914 Agent * Bundles 1 updates:
    2012-03-27 17:26:07:937 980 914 Agent * {112FA241-E8C9-4EE7-A8B4-D3A4C65F7FEB}.102
    2012-03-27 17:26:07:953 980 c70 AU AU received handle event
    2012-03-27 17:26:07:984 980 914 PT +++++++++++ PT: Synchronizing file locations +++++++++++
    2012-03-27 17:26:07:984 980 914 PT + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://<SCCM-SERVER>:8530/ClientWebService/client.asmx
    2012-03-27 17:26:10:652 980 914 PT WARNING: GetFileLocations failure, error = 0x8024400D, soap client error = 7, soap error code = 300, HTTP status code = 200
    2012-03-27 17:26:10:652 980 914 PT WARNING: SOAP Fault: 0x00012c
    2012-03-27 17:26:10:652 980 914 PT WARNING: faultstring:Server was unable to read request. ---> There is an error in XML document (1, 369). ---> The string '' is not a valid AllXsd value.
    2012-03-27 17:26:10:652 980 914 PT WARNING: ErrorCode:(null)(0)
    2012-03-27 17:26:10:652 980 914 PT WARNING: Message:(null)
    2012-03-27 17:26:10:652 980 914 PT WARNING: Method:(null)
    2012-03-27 17:26:10:652 980 914 PT WARNING: ID:(null)
    2012-03-27 17:26:10:652 980 914 PT WARNING: PTError: 0x8024400d
    2012-03-27 17:26:10:652 980 914 PT WARNING: GetFileLocations_WithRecovery failed: 0x8024400d
    2012-03-27 17:26:10:652 980 914 PT WARNING: PTError: 0x8024400d
    2012-03-27 17:26:10:652 980 914 DnldMgr WARNING: SyncFileLocations failed with 0x8024400d.
    2012-03-27 17:26:10:652 980 914 DnldMgr WARNING: PopulateFileUrlsForCall failed with 0x8024400d, but continuing with call {B6C9F0ED-9900-42BC-9BBE-61ADE865CADC}.
    2012-03-27 17:26:10:652 980 914 DnldMgr *********** DnldMgr: New download job [UpdateId = {112FA241-E8C9-4EE7-A8B4-D3A4C65F7FEB}.102] ***********
    2012-03-27 17:26:10:652 980 914 DnldMgr * Queueing update for download handler request generation.
    2012-03-27 17:26:10:652 980 914 DnldMgr Generating download request for update {112FA241-E8C9-4EE7-A8B4-D3A4C65F7FEB}.102
    2012-03-27 17:26:10:652 980 914 Handler Generating request for CBS update 112FA241-E8C9-4EE7-A8B4-D3A4C65F7FEB in sandbox C:\Windows\SoftwareDistribution\Download\9214be182ea0ec97ce8a55beaa608a67
    2012-03-27 17:26:10:652 980 914 Handler FATAL: Self-contained package file does not exist or is not on server.
    2012-03-27 17:26:10:652 980 914 Handler FATAL: Request generation for CBS update complete with hr=0x80242006 and pfResetSandbox=0
    2012-03-27 17:26:10:652 980 914 Handler FATAL: Error source is 105.
    2012-03-27 17:26:10:652 980 914 DnldMgr FATAL: DM:CAgentDownloadManager::GenerateAllDownloadRequests: GenerateDownloadRequest failed with 0x80242006.
    2012-03-27 17:26:10:652 980 914 DnldMgr Error 0x80242006 occurred while downloading update; notifying dependent calls.
    2012-03-27 17:26:10:668 980 914 Agent *********
    2012-03-27 17:26:10:668 980 14b8 AU >>## RESUMED ## AU: Download update [UpdateId = {4AE85C00-0EAA-4BE0-B81B-DBD7053D5FAE}]
    2012-03-27 17:26:10:668 980 914 Agent ** END ** Agent: Downloading updates [CallerId = AutomaticUpdates]
    2012-03-27 17:26:10:668 980 14b8 AU # WARNING: Download failed, error = 0x80242006
    Any ideas? :)

  • EWS not deployed anymore to Lync 2013 Desktop Clients, Mobile Clients still working fine

    Hello dear community,
    the subject of EWS in conjunction with Lync 2013 has been discussed a lot here .
    However, I could not find here any solution for my problem and I'm (almost) at my end.
    Following scenario - 1 x Lync 2013 BE server, 1 x Lync 2013 Edge server, 1 x reverse proxy (IIS ARR). This Lync 2013 deployment
    was installed about two months ago and integrated into existing IT landscape. Everything worked wonderfully - desktop and mobile clients were able to connect from inside and outside our organization, EMS was deployed to both desktop and mobile clients.
    After that there are no any configuration changes made on Lync server, and yesterday, shortly before an important presentation
    I've found, that EWS is not deployed anymore on all desktop clients. Mobile clients, however, continue to function smoothly.
    I have tried the following: restart Lync and reverse proxy servers - without success, Lync Connectivity Analyzer shows all
    green (internal and external), all relevant tests with Microsoft Remote Connectivity Analyzer were passed, also analysis using Wireshark brought nothing.
    I must to say that a week ago I installed SP3 for Exchange 2010 - can it may be because? Also appears more
    times a day the following error message in Event Viewer on the back-end server (language of operation system is German):
    Protokollname: Lync Server
    Quelle:        LS Storage Service
    Datum:         05.12.2013 19:23:14
    Ereignis-ID:   32054
    Aufgabenkategorie:(4006)
    Ebene:         Fehler
    Schlüsselwörter:Klassisch
    Benutzer:      Nicht zutreffend
    Computer:      SERVER-11.Speedpoint.local
    Beschreibung:
    EWS-AutoErmittlungsfehler im Speicherdienst.
    ExchangeAutodiscoverException: code=ErrorEwsAutodiscover, reason=GetUserSettings
    failed, smtpAddress = xxx, Autodiscover Uri=https://autodiscover.xxx.de/autodiscover/autodiscover.svc, Autodiscover WebProxy=<NULL> ---> Microsoft.Exchange.WebServices.Data.ServiceRequestException: The request failed.
    Das Stammelement ist nicht vorhanden. ---> System.Xml.XmlException: Das Stammelement ist nicht vorhanden.
       bei System.Xml.XmlTextReaderImpl.ThrowWithoutLineInfo(String res)
       bei System.Xml.XmlTextReaderImpl.ParseDocumentContent()
       bei System.Xml.XmlCharCheckingReader.Read()
       bei Microsoft.Exchange.WebServices.Data.EwsXmlReader.Read()
       bei Microsoft.Exchange.WebServices.Autodiscover.AutodiscoverRequest.InternalExecute()
       --- Ende der internen Ausnahmestapelüberwachung ---
       bei Microsoft.Exchange.WebServices.Autodiscover.AutodiscoverRequest.InternalExecute()
       bei Microsoft.Exchange.WebServices.Autodiscover.AutodiscoverService.InternalGetUserSettings(List`1 smtpAddresses, List`1 settings, Nullable`1 requestedVersion, Uri& autodiscoverUrl)
       bei Microsoft.Exchange.WebServices.Autodiscover.AutodiscoverService.GetSettings[TGetSettingsResponseCollection,TSettingName](List`1 identities, List`1 settings, Nullable`1 requestedVersion, GetSettingsMethod`2 getSettingsMethod, Func`1 getDomainMethod)
       bei Microsoft.Exchange.WebServices.Autodiscover.AutodiscoverService.GetUserSettings(List`1 smtpAddresses, List`1 settings)
       bei Microsoft.Exchange.WebServices.Autodiscover.AutodiscoverService.InternalGetSoapUserSettings(String smtpAddress, List`1 requestedSettings)
       bei Microsoft.Exchange.WebServices.Autodiscover.AutodiscoverService.GetUserSettings(String userSmtpAddress, UserSettingName[] userSettingNames)
       bei Microsoft.Rtc.Internal.Storage.Exchange.ExchangeContext.SendGetUserSettingsRequest(StoreContext ctx, String smtpAddress)
       --- End of inner exception stack trace ---
       bei Microsoft.Rtc.Internal.Storage.Exchange.ExchangeContext.SendGetUserSettingsRequest(StoreContext ctx, String smtpAddress)
       bei Microsoft.Rtc.Internal.Storage.Exchange.ExchangeContext.GetUserEwsSettings(StoreContext ctx, String smtpAddress, CacheMode cacheMode)
    Ursache: Der AutoErmittlungs-URI war nicht richtig konfiguriert oder nicht erreichbar. Eventuell besteht ein Problem mit dem Proxy, oder andere Fehler liegen
    vor.
    Lösung:
    Überprüfen Sie die Ereignisdetails. Überprüfen Sie, ob der URI des AutoErmittlungsdiensts ordnungsgemäß konfiguriert und erreichbar ist. Prüfen Sie, ob die Proxyeinstellungen ordnungsgemäß konfiguriert sind und der Proxy erreichbar ist. Prüfen Sie die Konfiguration
    der AutoErmittlung zwischen Lync und Exchange Autodiscovery anhand des Handbuchs zur Problembehandlung. Wenn das Problem weiterhin besteht, wenden Sie sich mit den Ereignisdetails an das Supportteam Ihrer Organisation.
    Ereignis-XML:
    < Event xmlns="">
      <System>
        <Provider Name="LS Storage Service" />
        <EventID Qualifiers="53158">32054</EventID>
        <Level>2</Level>
        <Task>4006</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-12-05T18:23:14.000000000Z" />
        <EventRecordID>19949</EventRecordID>
        <Channel>Lync Server</Channel>
        <Computer>SERVER-11.Speedpoint.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>ExchangeAutodiscoverException: code=ErrorEwsAutodiscover, reason=GetUserSettings failed, smtpAddress=xxx, Autodiscover Uri=https://autodiscover.xxx.de/autodiscover/autodiscover.svc, Autodiscover WebProxy=&lt;NULL&gt; ---&gt;
    Microsoft.Exchange.WebServices.Data.ServiceRequestException: The request failed.
    Das Stammelement ist nicht vorhanden. ---&gt; System.Xml.XmlException: Das Stammelement ist nicht vorhanden.
       bei System.Xml.XmlTextReaderImpl.ThrowWithoutLineInfo(String res)
       bei System.Xml.XmlTextReaderImpl.ParseDocumentContent()
       bei System.Xml.XmlCharCheckingReader.Read()
       bei Microsoft.Exchange.WebServices.Data.EwsXmlReader.Read()
       bei Microsoft.Exchange.WebServices.Autodiscover.AutodiscoverRequest.InternalExecute()
       --- Ende der internen Ausnahmestapelüberwachung ---
       bei Microsoft.Exchange.WebServices.Autodiscover.AutodiscoverRequest.InternalExecute()
       bei Microsoft.Exchange.WebServices.Autodiscover.AutodiscoverService.InternalGetUserSettings(List`1 smtpAddresses, List`1 settings, Nullable`1 requestedVersion, Uri&amp; autodiscoverUrl)
       bei Microsoft.Exchange.WebServices.Autodiscover.AutodiscoverService.GetSettings[TGetSettingsResponseCollection,TSettingName](List`1 identities, List`1 settings, Nullable`1 requestedVersion, GetSettingsMethod`2 getSettingsMethod, Func`1 getDomainMethod)
       bei Microsoft.Exchange.WebServices.Autodiscover.AutodiscoverService.GetUserSettings(List`1 smtpAddresses, List`1 settings)
       bei Microsoft.Exchange.WebServices.Autodiscover.AutodiscoverService.InternalGetSoapUserSettings(String smtpAddress, List`1 requestedSettings)
       bei Microsoft.Exchange.WebServices.Autodiscover.AutodiscoverService.GetUserSettings(String userSmtpAddress, UserSettingName[] userSettingNames)
       bei Microsoft.Rtc.Internal.Storage.Exchange.ExchangeContext.SendGetUserSettingsRequest(StoreContext ctx, String smtpAddress)
       --- End of inner exception stack trace ---
       bei Microsoft.Rtc.Internal.Storage.Exchange.ExchangeContext.SendGetUserSettingsRequest(StoreContext ctx, String smtpAddress)
       bei Microsoft.Rtc.Internal.Storage.Exchange.ExchangeContext.GetUserEwsSettings(StoreContext ctx, String smtpAddress, CacheMode cacheMode)
    < /Data>
      </EventData>
    < /Event>
    However Event ID
    32054
    was actually
    always there
    – even
    when everything
    worked fine -
    but with
    some another content.
    That's why I
    don't know
    if I
    should take it seriously.
    Thanks a lot in advance for your help!

    Hi MiF,
    The issue may cause by the Network Service account that the Lync Storage Service uses does not have access to the private key in used by the oAuth certificate. Please do with the following steps:
    Open MMC and add the “Certificates” Snap-in (Local Computer)
    Open Personal | Certificates and find the the Certificate being used for OAuth (use the Lync “Get-CsCertificate -Type OAuthTokenIssuer” cmdlet to find the serial number of the OAuth certificate).
    Right-click | “All Tasks” | “Manage Private Keys”
    Add Permissions for “Network Service” account (the defaults Full control and Read).
    Please also check registry key on client computer.
    If the HKCU\Software\Microsoft\ Office\15.0\Lync \[User SMTP Address]\Autodiscovery registry key does not exist on the user’s workstation, then it likely means that one of the following failures
    have occurred:
    Lync was unable to locate a valid DNS A record or SRV record for the Autodiscover site
    Certificate assigned to Autodiscover site is not trusted by the Lync workstation
    More details:
    http://www.microsoft.com/en-in/download/confirmation.aspx?id=15668
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Not deploying project successfully from bcc atg .

    Hi All,
    I am trying to create project from bcc atg merchandising and adding one asset(product) in that .
    but it stuck in second last step .
    I removed cache as well from prod server.
    So please atg bcc expert help me.
    --Kakasaheb.

    Hi kakasaheb,
    A full deployment copies all assets from the asset management server to a target site. A full deployment comprises two steps:
    All assets are deleted from the target site.
    All assets from projects that are currently and previously deployed to the target site are written to that site.
    An incremental deployment only updates the site with asset changes from the deployed projects; these changes include add, update, and/or remove operations. This type of deployment is more efficient than a full deployment, especially when few site assets changed since the previous deployment.
    Each agent stores the snapshot ID (current installed agent snapshot) that was received during deployment.  The Content Administration records the snapshot ID (current effective snapshot) of what it last deployed.  The error occurs when the CA server's snapshot ID does not match the agent's snapshot ID.
    Hope the information helps you.
    Thanks & Regards
    Suman Vasireddy
    Please mark any update as "Correct Answer" or "Helpful Answer" if that update helps/answers your question, so that others can identify the Correct/helpful update between many updates.

  • InDesign will not deploy from CCP Team Package

    Hello - I am getting nowhere trying to get packages to deploy using the CCP.
    A package containing all of the apps we need to deploy will not deploy.  A package containing just Illustrator deployed just fine.  A package containing just InDesign will not deploy.
    Each one of these packages was created on the same computer with Windows 7 SP1 64-bit installed just prior to creating the packages.
    Each one of these packages was deployed on the same computer with Windows 7 SP1 64-bit installed just prior to attempting deployment.
    So, the packages are created on a machine with a fresh install of Win7x64sp1 - nothing but the operating system installed - no apps of any kind installed, Adobe or otherwise.
    The packages are then deployed to the same machine just after another fresh install of Win7x64sp1 - nothing but the operating system installed - no apps of any kind installed, Adobe or otherwise.
    The progress bar gets to about half, it stalls then rolls back and NOTHING gets installed.
    The software environments used to create and deploy these packages don't get any cleaner than this!  Yet, the packages do not deploy.
    Okay, so where I come from it looks to me as if [a] the packager is broken, [b] the deployment process is broken, [c] some software needs to be installed before creating and/or deploying the package, [d] some of the above, or [e] all of the above!
    I have tried just about everything mentioned in the forum with no success.
    Is there anyone out there, especially an Adobe support specialist, I can work with to get this deployment problem resolved?
    Do I need to purchase a support plan just to get the software deployed?
    Do I need to find and hire somebody outside of Adobe to get this software deployed?
    Any suggestions, answers, pointers or comments would be greatly appreciated.  I am about out of steam on this... 
    Thank you in advance.
    Keith

    Romit - also, here is the PDApp.log from the Build:
    08/22/13 18:46:47:486 | [INFO] |  | ASU | OPM | OPM |  |  | 2284 | Build Version - 7.0.0.271
    08/22/13 18:46:47:486 | [INFO] |  | ASU | OPM | OPM |  |  | 2284 | Logging Level verbosity Set  to 4
    08/22/13 18:46:47:486 | [INFO] |  | ASU | OPM | Utilities |  |  | 2284 | File 'C:\Users\Builder\AppData\Local\Adobe\OOBE\opm.db' does not exist
    08/22/13 18:46:47:486 | [INFO] |  | ASU | OPM | Utilities |  |  | 2284 | File 'C:\Users\Builder\AppData\Local\Adobe\OOBE\opm.db' does not exist
    08/22/13 18:46:47:595 | [INFO] |  | ASU | OPM | OPM |  |  | 2284 | Successfully opened opm session, db location:C:\Users\Builder\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    08/22/13 18:46:47:595 | [INFO] |  | ASU | OPM | OPM |  |  | 2284 | No Record found for the input fields in opm_getValueForKey
    08/22/13 18:46:47:595 | [INFO] |  | ASU | OPM | OPM |  |  | 2284 | Released OPM refrence successfully in opm_freeLibRef
    08/22/13 18:46:48:172 | [INFO] |  | ASU | OPM | Utilities |  |  | 2284 | Folder does not exist
    08/22/13 18:48:53:392 | [INFO] |  | ASU | CloudPackagerReDirection | CloudPackagerReDirection |  |  | 2508 | Build Version - 1.2.0.4
    08/22/13 18:48:53:392 | [INFO] |  | ASU | CloudPackagerReDirection | CloudPackagerReDirection |  |  | 2508 | Logging Level verbosity Set  to 4
    08/22/13 18:48:53:392 | [INFO] |  | ASU | CloudPackagerReDirection | CloudPackagerReDirection |  |  | 2508 | Launching the Bootstrapper in elevated mode
    08/22/13 18:48:53:439 | [INFO] |  | ASU | Setup | Setup |  |  | 2596 | Build Version - 7.0.0.414
    08/22/13 18:48:53:439 | [INFO] |  | ASU | Setup | Setup |  |  | 2596 | Logging Level verbosity Set  to 4
    08/22/13 18:48:53:439 | [INFO] |  | ASU | Setup | Utilities |  |  | 2596 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\core\AAMConfig.xml' does not exist
    08/22/13 18:48:53:439 | [INFO] |  | ASU | Setup |  |  |  | 2596 | Event Guid generated is: '8004fc50-5877-45c6-af11-18b894075563'
    08/22/13 18:48:53:439 | [INFO] |  | ASU | Setup | Setup |  |  | 2596 | Start Adobe Setup
    08/22/13 18:48:53:439 | [INFO] |  | ASU | Setup | Setup |  |  | 2596 | TimeLog: Bootstrapper Start
    08/22/13 18:48:53:439 | [INFO] |  | ASU | Setup | Setup |  |  | 2596 | TimeLog: Start initial checks
    08/22/13 18:48:53:439 | [INFO] |  | ASU | Setup | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:53:439 | [WARN] |  | ASU | Setup | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:53:454 | [INFO] |  | ASU | Setup |  |  |  | 2620 | Event with guid '8004fc50-5877-45c6-af11-18b894075563' is being sent
    08/22/13 18:48:53:454 | [INFO] |  | ASU | Setup |  |  |  | 2620 | GetIEProxyInfo - No default proxy present on the user machine
    08/22/13 18:48:53:454 | [INFO] |  | ASU | Setup |  |  |  | 2620 | GetIEProxyInfo - proxy Url is
    08/22/13 18:48:53:485 | [INFO] |  | ASU | Setup | Utilities |  |  | 2596 | Semaphore is not locked
    08/22/13 18:48:53:485 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Build Version - 7.0.0.414
    08/22/13 18:48:53:485 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Logging Level verbosity Set  to 4
    08/22/13 18:48:53:485 | [INFO] |  | ASU | PIM | Utilities |  |  | 2596 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\pim.db-journal' does not exist
    08/22/13 18:48:53:485 | [INFO] |  | ASU | PIM | Utilities |  |  | 2596 | File 'C:\Users\Builder\AppData\Local\Temp\\asuap.txt' does not exist
    08/22/13 18:48:53:485 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Build Version - 7.0.0.414
    08/22/13 18:48:53:485 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Logging Level verbosity Set  to 4
    08/22/13 18:48:53:485 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | CREATE PIM Instance ...
    08/22/13 18:48:53:485 | [INFO] |  | ASU | PIM | Utilities |  |  | 2596 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\pim.db-journal' does not exist
    08/22/13 18:48:53:485 | [INFO] |  | ASU | PIM | Utilities |  |  | 2596 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\pim.db' does not exist
    08/22/13 18:48:53:485 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | trying to createOrUpdatePIMDbSchema.
    08/22/13 18:48:53:485 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS Created Tables.
    08/22/13 18:48:53:485 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | PIM Database is Up To Date.
    08/22/13 18:48:53:485 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Updater Inventory location:C:\Users\Builder\AppData\Local\CreativeCloudPackager\resources\updaterinventory. dll
    08/22/13 18:48:53:501 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Acquired System level ACF lock ...
    08/22/13 18:48:53:501 | [INFO] |  | ASU | Setup | Setup |  |  | 2596 | TimeLog: End initial checks
    08/22/13 18:48:53:501 | [INFO] |  | ASU | Setup | Setup |  |  | 2596 | TimeLog: Begin Installing
    08/22/13 18:48:53:501 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Current OS version is: Major:6, Minor:1, ServicePack:1
    08/22/13 18:48:53:501 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:53:501 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:53:688 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:53:688 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:53:782 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:53:782 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:53:813 | [INFO] |  | ASU | Setup |  |  |  | 1608 | HTTP Request Status code 200.
    08/22/13 18:48:53:813 | [INFO] |  | ASU | Setup |  |  |  | 2620 | The http request returned HTTP_Status:0 HttpCommunicator error:0
    08/22/13 18:48:53:844 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:53:844 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:53:891 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:53:891 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:53:953 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:53:953 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:53:985 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:53:985 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:54:078 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:54:078 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:54:094 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:54:094 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:54:094 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | pim_haveEnoughDiskSpaceToInstallPackages reqSize ... 286579157
    08/22/13 18:48:54:094 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Executing Adobe Genuine Validation for all the AAM packages
    08/22/13 18:48:54:094 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Validating package file: 'C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\core\PDApp.pimx'
    08/22/13 18:48:54:094 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Validating package file: 'C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\core\PDApp.pima'
    08/22/13 18:48:54:094 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Validating package file: 'C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\D6\D6.pimx'
    08/22/13 18:48:54:094 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Validating package file: 'C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\D6\D6.pima'
    08/22/13 18:48:54:094 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Validating package file: 'C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\DECore\DECore.pimx'
    08/22/13 18:48:54:109 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Validating package file: 'C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\DECore\DECore.pima'
    08/22/13 18:48:54:109 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Validating package file: 'C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\DWA\DWA.pimx'
    08/22/13 18:48:54:109 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Validating package file: 'C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\DWA\DWA.pima'
    08/22/13 18:48:54:109 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Validating package file: 'C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\P6\P6.pimx'
    08/22/13 18:48:54:109 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Validating package file: 'C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\P6\P6.pima'
    08/22/13 18:48:54:109 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Validating package file: 'C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\LWA\LWA.pimx'
    08/22/13 18:48:54:109 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Validating package file: 'C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\LWA\LWA.pima'
    08/22/13 18:48:54:109 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Validating package file: 'C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\UWA\UWA.pimx'
    08/22/13 18:48:54:125 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Validating package file: 'C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\UWA\UWA.pima'
    08/22/13 18:48:54:125 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Validating package file: 'C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\P7\P7.pimx'
    08/22/13 18:48:54:125 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Validating package file: 'C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\P7\P7.pima'
    08/22/13 18:48:54:125 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Validating package file: 'C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\CCP\CCP.pimx'
    08/22/13 18:48:54:125 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Validating package file: 'C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\CCP\CCP.pima'
    08/22/13 18:48:54:125 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Adobe Genuine Validation PASSED for all the AAM packages
    08/22/13 18:48:54:125 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | START installPackage at file C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\core\PDApp.pimx
    08/22/13 18:48:54:141 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:54:141 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:54:453 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS insertPackageUpdateList.
    08/22/13 18:48:54:453 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:54:453 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS insertAppletRegInfoList.
    08/22/13 18:48:54:936 | [INFO] |  | ASU | PIM | Utilities |  |  | 2596 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\core\PDApp.pimx' does not exist
    08/22/13 18:48:54:967 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS installPackage at file C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\core\PDApp.pimx.
    08/22/13 18:48:54:967 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | START installPackage at file C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\D6\D6.pimx
    08/22/13 18:48:54:967 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:54:967 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:55:123 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS insertPackageUpdateList.
    08/22/13 18:48:55:123 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS insertAppletRegInfoList.
    08/22/13 18:48:55:201 | [INFO] |  | ASU | PIM | Utilities |  |  | 2596 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\D6\D6.pimx' does not exist
    08/22/13 18:48:55:217 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS installPackage at file C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\D6\D6.pimx.
    08/22/13 18:48:55:233 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | START installPackage at file C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\DECore\DECore.pimx
    08/22/13 18:48:55:233 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:55:233 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:55:373 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS insertPackageUpdateList.
    08/22/13 18:48:55:373 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:55:373 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS insertAppletRegInfoList.
    08/22/13 18:48:55:763 | [INFO] |  | ASU | PIM | Utilities |  |  | 2596 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\DECore\DECore.pimx' does not exist
    08/22/13 18:48:55:794 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS installPackage at file C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\DECore\DECore.pimx.
    08/22/13 18:48:55:794 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | START installPackage at file C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\DWA\DWA.pimx
    08/22/13 18:48:55:794 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:55:794 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:55:888 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS insertPackageUpdateList.
    08/22/13 18:48:55:888 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS insertAppletRegInfoList.
    08/22/13 18:48:55:888 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:55:981 | [INFO] |  | ASU | PIM | Utilities |  |  | 2596 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\DWA\DWA.pimx' does not exist
    08/22/13 18:48:56:013 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS installPackage at file C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\DWA\DWA.pimx.
    08/22/13 18:48:56:013 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | START installPackage at file C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\P6\P6.pimx
    08/22/13 18:48:56:013 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:56:013 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:56:137 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS insertPackageUpdateList.
    08/22/13 18:48:56:137 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS insertAppletRegInfoList.
    08/22/13 18:48:56:512 | [INFO] |  | ASU | PIM | Utilities |  |  | 2596 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\P6\P6.pimx' does not exist
    08/22/13 18:48:56:559 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS installPackage at file C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\P6\P6.pimx.
    08/22/13 18:48:56:559 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | START installPackage at file C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\LWA\LWA.pimx
    08/22/13 18:48:56:559 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:56:559 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:56:637 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS insertPackageUpdateList.
    08/22/13 18:48:56:637 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS insertAppletRegInfoList.
    08/22/13 18:48:56:652 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:56:964 | [INFO] |  | ASU | PIM | Utilities |  |  | 2596 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\LWA\LWA.pimx' does not exist
    08/22/13 18:48:56:995 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS installPackage at file C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\LWA\LWA.pimx.
    08/22/13 18:48:57:011 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | START installPackage at file C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\UWA\UWA.pimx
    08/22/13 18:48:57:011 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:57:011 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:57:261 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS insertPackageUpdateList.
    08/22/13 18:48:57:261 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS insertAppletRegInfoList.
    08/22/13 18:48:57:495 | [INFO] |  | ASU | PIM | Utilities |  |  | 2596 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\UWA\UWA.pimx' does not exist
    08/22/13 18:48:57:541 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS installPackage at file C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\UWA\UWA.pimx.
    08/22/13 18:48:57:541 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | START installPackage at file C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\P7\P7.pimx
    08/22/13 18:48:57:541 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:57:541 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:57:573 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS insertPackageUpdateList.
    08/22/13 18:48:57:573 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS insertAppletRegInfoList.
    08/22/13 18:48:58:009 | [INFO] |  | ASU | PIM | Utilities |  |  | 2596 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\P7\P7.pimx' does not exist
    08/22/13 18:48:58:041 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS installPackage at file C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\P7\P7.pimx.
    08/22/13 18:48:58:041 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | START installPackage at file C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\CCP\CCP.pimx
    08/22/13 18:48:58:056 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | XML is valid
    08/22/13 18:48:58:056 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:58:072 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS insertPackageUpdateList.
    08/22/13 18:48:58:072 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS insertAppletRegInfoList.
    08/22/13 18:48:58:072 | [WARN] |  | ASU | PIM | PIM |  |  | 2596 | Failed to find Node
    08/22/13 18:48:59:507 | [INFO] |  | ASU | PIM | Utilities |  |  | 2596 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCP\CCP.pimx' does not exist
    08/22/13 18:48:59:523 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | SUCCESS installPackage at file C:\Users\Builder\AppData\Local\CreativeCloudPackager\packages\CCP\CCP.pimx.
    08/22/13 18:48:59:538 | [INFO] |  | ASU | PIM | Utilities |  |  | 2596 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\PDAppFlex.swf' does not exist
    08/22/13 18:48:59:538 | [INFO] |  | ASU | PIM | Utilities |  |  | 2596 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\PDAppFlex-app.xml' does not exist
    08/22/13 18:48:59:538 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Processing ... _pimCreateOrUpdateAAMInventory
    08/22/13 18:48:59:554 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | Return ... SUCCESS _pimCreateOrUpdateAAMInventory
    08/22/13 18:48:59:554 | [INFO] |  | ASU | Setup | Setup |  |  | 2596 | TimeLog: End Installing. Now launching PDApp
    08/22/13 18:49:00:069 | [INFO] |  | ASU | Setup |  |  |  | 2596 | Event Guid generated is: '0b8d1043-ef4e-467f-a09c-dbbe8879319d'
    08/22/13 18:49:00:069 | [INFO] |  | ASU | Setup | Setup |  |  | 2596 | =================  End Adobe Setup. Exit code: 0  =================
    08/22/13 18:49:00:069 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | PIMSqlite closeDB status 0
    08/22/13 18:49:00:069 | [INFO] |  | ASU | PIM | PIM |  |  | 2596 | FREE PIM Instance ...
    08/22/13 18:49:00:069 | [INFO] |  | ASU | Setup |  |  |  | 2596 | Waiting for the async thread to get the task completed
    08/22/13 18:49:00:084 | [INFO] |  | ASU | Setup |  |  |  | 2620 | Event with guid '0b8d1043-ef4e-467f-a09c-dbbe8879319d' is being sent
    08/22/13 18:49:00:084 | [INFO] |  | ASU | Setup |  |  |  | 2620 | GetIEProxyInfo - No default proxy present on the user machine
    08/22/13 18:49:00:084 | [INFO] |  | ASU | Setup |  |  |  | 2620 | GetIEProxyInfo - proxy Url is
    08/22/13 18:49:00:147 | [INFO] |  | ASU | Setup |  |  |  | 1608 | HTTP Request Status code 200.
    08/22/13 18:49:00:147 | [INFO] |  | ASU | Setup |  |  |  | 2620 | The http request returned HTTP_Status:0 HttpCommunicator error:0
    08/22/13 18:49:00:147 | [INFO] |  | ASU | Setup |  |  |  | 2620 | Async thread is completed. Now exiting from function.
    08/22/13 18:49:00:147 | [INFO] |  | ASU | CloudPackagerReDirection | AAMEEUtilities |  |  | 2508 | Process creation completed.
    08/22/13 18:49:00:147 | [INFO] |  | ASU | CloudPackagerReDirection | CloudPackagerReDirection |  |  | 2508 | Creating common Shortcuts entries in Program menu.
    08/22/13 18:49:00:162 | [INFO] |  | ASU | CloudPackagerReDirection | Utilities |  |  | 2508 | Folder does not exist
    08/22/13 18:49:00:193 | [INFO] |  | ASU | CloudPackagerReDirection | CloudPackagerReDirection |  |  | 2508 | Launching AAMEE in De-elevated mode from location : C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\CCP\CreativeCloudPackager.exe
    08/22/13 18:49:00:193 | [INFO] |  | ASU | SetupHelperBin | SetupHelperBin |  |  | 1068 | Build Version - 1.2.0.4
    08/22/13 18:49:00:193 | [INFO] |  | ASU | SetupHelperBin | SetupHelperBin |  |  | 1068 | Logging Level verbosity Set  to 4
    08/22/13 18:49:00:193 | [INFO] |  | ASU | SetupHelperBin | SetupHelperBin |  |  | 1068 | Starting the SetupHelperBin.
    08/22/13 18:49:00:193 | [INFO] |  | ASU | AdobeRedirectionHelper | AdobeRedirectionHelper |  |  | 1068 | Build Version - 1.2.0.4
    08/22/13 18:49:00:193 | [INFO] |  | ASU | AdobeRedirectionHelper | AdobeRedirectionHelper |  |  | 1068 | Logging Level verbosity Set  to 4
    08/22/13 18:49:00:209 | [INFO] |  | ASU | AdobeRedirectionHelper | AdobeRedirectionHelper |  |  | 252 | Build Version - 1.2.0.4
    08/22/13 18:49:00:209 | [INFO] |  | ASU | AdobeRedirectionHelper | AdobeRedirectionHelper |  |  | 252 | Logging Level verbosity Set  to 4
    08/22/13 18:49:00:240 | [INFO] |  | ASU | CloudPackagerReDirection | AAMEEUtilities |  |  | 2508 | Process creation completed.
    08/22/13 18:49:00:240 | [INFO] |  | ASU | CloudPackagerReDirection | AAMEEUtilities |  |  | 2508 | utilLaunchApplicationDeelevated : The return Code from Create Process (0).
    08/22/13 18:49:00:240 | [INFO] |  | ASU | EnterpriseLauncher | EnterpriseLauncher |  |  | 2656 | Build Version - 1.2.0.4
    08/22/13 18:49:00:240 | [INFO] |  | ASU | EnterpriseLauncher | EnterpriseLauncher |  |  | 2656 | Logging Level verbosity Set  to 4
    08/22/13 18:49:00:240 | [INFO] |  | ASU | EnterpriseLauncher | EnterpriseLauncher |  |  | 2656 | Launching the PDApp in Enterprise mode.
    08/22/13 18:49:00:240 | [INFO] |  | ASU | EnterpriseLauncher | Utilities |  |  | 2656 | Path to Process :C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\PDApp.exe Process Directory :C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core arguments being passed :"C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\PDApp.exe" --appletID=CCP_UI --appletVersion=1.0 --workflow=CCP
    08/22/13 18:49:00:271 | [INFO] |  | ASU | EnterpriseLauncher | Utilities |  |  | 2656 | Success in CreateProcess
    08/22/13 18:49:00:287 | [INFO] |  | ASU | PDApp | PDApp |  |  | 2096 | Build Version - 7.0.0.414
    08/22/13 18:49:00:287 | [INFO] |  | ASU | PDApp | PDApp |  |  | 2096 | Logging Level verbosity Set  to 4
    08/22/13 18:49:00:287 | [INFO] |  | ASU | PDApp | PDApp.CommandLineParser |  |  | 2096 | Parsing the command line provided. Number of command line arguments is 4
    08/22/13 18:49:00:287 | [INFO] |  | ASU | PDApp | PDApp |  |  | 2096 | Detecting Applet Database Library file...
    08/22/13 18:49:00:287 | [INFO] |  | ASU | PDApp | PDApp |  |  | 2096 | Fetching Applet registeration information...
    08/22/13 18:49:00:287 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 2096 | AppletManager initialize...
    08/22/13 18:49:00:287 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 2096 | Applet database path - C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\..
    08/22/13 18:49:00:287 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 2096 | PIM library path - C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\AdobePIM.dll
    08/22/13 18:49:00:287 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 2096 | Loading PIM library...
    08/22/13 18:49:00:303 | [INFO] |  | ASU | PIM | PIM |  |  | 2096 | Build Version - 7.0.0.414
    08/22/13 18:49:00:303 | [INFO] |  | ASU | PIM | PIM |  |  | 2096 | Logging Level verbosity Set  to 4
    08/22/13 18:49:00:303 | [INFO] |  | ASU | PIM | PIM |  |  | 2096 | CREATE PIM Instance ...
    08/22/13 18:49:00:303 | [INFO] |  | ASU | PIM | Utilities |  |  | 2096 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\..\pim.db-journal' does not exist
    08/22/13 18:49:00:303 | [INFO] |  | ASU | PIM | PIM |  |  | 2096 | trying to createOrUpdatePIMDbSchema.
    08/22/13 18:49:00:303 | [INFO] |  | ASU | PIM | PIM |  |  | 2096 | Current db schema version on machine 1.
    08/22/13 18:49:00:303 | [INFO] |  | ASU | PIM | PIM |  |  | 2096 | Current db schema version to install 1.
    08/22/13 18:49:00:303 | [INFO] |  | ASU | PIM | PIM |  |  | 2096 | PIM DB Schema is up to date. Current schema version is 1.
    08/22/13 18:49:00:303 | [INFO] |  | ASU | PIM | PIM |  |  | 2096 | PIM Database is Up To Date.
    08/22/13 18:49:00:303 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 2096 | Getting applet data from Applet database
    08/22/13 18:49:00:303 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 2096 | All installed pakages version string (pim_getCurrentPackagesVersion) is CCP:1.2.0.4|D6:7.0.0.414|DECore:7.0.0.414|DWA:3.0.97.0|LWA:3.0.97.0|P6:7.0.0.406|P7:7.0.0 .410|PDApp:7.0.0.414|UWA:7.0.0.414
    08/22/13 18:49:00:303 | [INFO] |  | ASU | PIM | PIM |  |  | 2096 | PIMSqlite closeDB status 0
    08/22/13 18:49:00:303 | [INFO] |  | ASU | PIM | PIM |  |  | 2096 | FREE PIM Instance ...
    08/22/13 18:49:00:303 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 2096 | Registering Applets...
    08/22/13 18:49:00:303 | [INFO] |  | ASU | PDApp | PDApp |  |  | 2096 | DWA AppletID argument not specified on command line. Trying to find the existing instance
    08/22/13 18:49:00:303 | [INFO] |  | ASU | PDApp | PDApp |  |  | 2096 | This is the first instance so creating a thread for listening to the created pipe
    08/22/13 18:49:00:303 | [INFO] |  | ASU | PDApp | PDApp |  |  | 2096 | Starting AsyncMessageProcessor
    08/22/13 18:49:00:303 | [INFO] |  | ASU | PDApp | PDApp.AsyncMsgProcessor |  |  | 2096 | AsyncMsgProcessor initialized...
    08/22/13 18:49:00:318 | [INFO] |  | ASU | PDApp | PDApp.AsyncMsgProcessor |  |  | 2096 | AsyncMsgProcessor started. on thread id = 1168
    08/22/13 18:49:00:318 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 2096 | Initializing native WindowManager
    08/22/13 18:49:00:318 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 2096 | Creating window instance
    08/22/13 18:49:00:318 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 2096 | Checking for appletID and appletVersion given in CommandLineOptions
    08/22/13 18:49:00:318 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 2096 | Creating APE stage instance
    08/22/13 18:49:00:349 | [INFO] |  | ASU | PDApp | PipeThread |  |  | 304 | Pipe thread started
    08/22/13 18:49:00:973 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 2096 | MessageHandler initialized...
    08/22/13 18:49:00:973 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 2096 | ExternalGateway initialized...
    08/22/13 18:49:00:973 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 2096 | NativeCommandHandler initialized...
    08/22/13 18:49:00:989 | [INFO] |  | ASU | PDApp | PDApp.StartupCommand |  |  | 2096 | Logging Level verbosity Set to  INFO
    08/22/13 18:49:00:989 | [INFO] |  | ASU | PDApp | PDApp.StartupCommand |  |  | 2096 | Processing the startup Command
    08/22/13 18:49:00:989 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Starting Applet registeration...
    08/22/13 18:49:01:005 | [INFO] |  | ASU | PDApp | PDAPP.MainDisplayMediator |  |  | 2096 | Looking up for the Exact versioned applet for ID :CCP_UI
    08/22/13 18:49:01:005 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading Applet: CCP_UI Version = 1.0
    08/22/13 18:49:01:020 | [INFO] |  | ASU | PDApp | PDApp.ZStringLoader |  |  | 2096 | PDAPP SWF - locale set to - en_US
    08/22/13 18:49:01:051 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 0 out of 2124868
    08/22/13 18:49:01:051 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 65536 out of 2124868
    08/22/13 18:49:01:067 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 131072 out of 2124868
    08/22/13 18:49:01:067 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 196608 out of 2124868
    08/22/13 18:49:01:067 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 262144 out of 2124868
    08/22/13 18:49:01:067 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 327680 out of 2124868
    08/22/13 18:49:01:067 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 393216 out of 2124868
    08/22/13 18:49:01:067 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 458752 out of 2124868
    08/22/13 18:49:01:083 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 524288 out of 2124868
    08/22/13 18:49:01:098 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 589824 out of 2124868
    08/22/13 18:49:01:098 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 655360 out of 2124868
    08/22/13 18:49:01:098 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 720896 out of 2124868
    08/22/13 18:49:01:098 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 786432 out of 2124868
    08/22/13 18:49:01:098 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 851968 out of 2124868
    08/22/13 18:49:01:098 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 917504 out of 2124868
    08/22/13 18:49:01:098 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 983040 out of 2124868
    08/22/13 18:49:01:098 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 1048576 out of 2124868
    08/22/13 18:49:01:114 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 1114112 out of 2124868
    08/22/13 18:49:01:114 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 1179648 out of 2124868
    08/22/13 18:49:01:114 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 1245184 out of 2124868
    08/22/13 18:49:01:114 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 1310720 out of 2124868
    08/22/13 18:49:01:114 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 1376256 out of 2124868
    08/22/13 18:49:01:114 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 1441792 out of 2124868
    08/22/13 18:49:01:114 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 1507328 out of 2124868
    08/22/13 18:49:01:129 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 1572864 out of 2124868
    08/22/13 18:49:01:129 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 1638400 out of 2124868
    08/22/13 18:49:01:129 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 1703936 out of 2124868
    08/22/13 18:49:01:129 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 1769472 out of 2124868
    08/22/13 18:49:01:129 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 1835008 out of 2124868
    08/22/13 18:49:01:129 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 1900544 out of 2124868
    08/22/13 18:49:01:129 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 1966080 out of 2124868
    08/22/13 18:49:01:145 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 2031616 out of 2124868
    08/22/13 18:49:01:145 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 2097152 out of 2124868
    08/22/13 18:49:01:145 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 2096 | Loading progress 2124868 out of 2124868
    08/22/13 18:49:01:816 | [INFO] |  | ASU | PDApp | CloudPackagerFlex.AppStartup |  |  | 2096 | Processing the application startup command
    08/22/13 18:49:01:816 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 2096 | Recieved Applet Loading Completion
    08/22/13 18:49:01:816 | [INFO] |  | ASU | PDApp | CloudPackagerFlex.AppStartup |  |  | 2096 | commManagerResultCallback
    08/22/13 18:49:01:831 | [INFO] |  | ASU | PDApp | ZStringLoader |  |  | 2096 | Trying to load ZString for preferred locale - en_US
    08/22/13 18:49:01:831 | [INFO] |  | ASU | PDApp | ZStringLoader |  |  | 2096 | Locale set to - en_US
    08/22/13 18:49:01:847 | [INFO] |  | ASU | PDApp | CloudPackagerFlex.AppStartup |  |  | 2096 | Font fallback applied is applicationFonts 'Lucida Grande, Segoe UI, Tahoma, _sans' inputControlFonts: 'Lucida Grande, Segoe UI, Tahoma, _sans'
    08/22/13 18:49:01:863 | [INFO] |  | ASU | PDApp | CloudPackagerFlex.LoadWorkflowCommand |  |  | 2096 | Processing the LoadWorkflowCommand
    08/22/13 18:49:01:863 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 2096 | Loading Applet - CCP_Native for WindowID - 1
    08/22/13 18:49:01:878 | [INFO] |  | ASU | EnterpriseNative | EnterpriseNative |  |  | 2096 | Build Version - 7.0.0.394
    08/22/13 18:49:01:878 | [INFO] |  | ASU | EnterpriseNative | EnterpriseNative |  |  | 2096 | Logging Level verbosity Set  to 4
    08/22/13 18:49:02:050 | [INFO] |  | ASU | PDApp | CloudPackager.LoadEulaCommand |  |  | 2096 | Processing the LoadEulaCommand
    08/22/13 18:49:02:065 | [INFO] |  | ASU | PDApp | EWA.FetchEulaCommand |  |  | 2096 | Processing the FetchEulaCommand
    08/22/13 18:49:02:065 | [INFO] |  | ASU | PDApp | EWA.FetchEulaCommand |  |  | 2096 | Fetching eula for language : en_US
    08/22/13 18:49:02:689 | [INFO] |  | ASU | PDApp | AAMShared.DynamicViewMediator |  |  | 2096 | Showing screen with screenID : SCREEN_AAMEE_EULA
    08/22/13 18:49:02:939 | [WARN] |  | ASU | EnterpriseNative | EnterpriseNative |  |  | 2096 | _getAAMEEPreferenceXMLDataObj: Preference XML file does not exist.
    08/22/13 18:49:02:939 | [WARN] |  | ASU | EnterpriseNative | EnterpriseNative |  |  | 2096 | ewa_getAAMEEPreferences: Invalid AAMEE Preference XML or Preference node does not exist.
    08/22/13 18:49:03:235 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Label#lblTitle)
    08/22/13 18:49:03:235 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:03:235 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnPrimaryAction)
    08/22/13 18:49:03:235 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:03:235 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnSecondaryAction)
    08/22/13 18:49:03:235 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:03:235 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnTertiaryAction)
    08/22/13 18:49:03:235 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:03:235 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnQuaternaryAction)
    08/22/13 18:49:03:235 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:03:235 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Label#loadingAccessibilityAnnouncer)
    08/22/13 18:49:03:235 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value from resource bundle (ScreenEulaAccessibility): Please wait
    08/22/13 18:49:03:235 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.component.ContentEula |  |  | 2096 | #setUpAccessibilityProperties
    08/22/13 18:49:03:251 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(LanguageSelectionDropDownList#ddlLanguageSelection)
    08/22/13 18:49:03:251 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:03:251 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(TextArea#taEulaTextArea)
    08/22/13 18:49:03:251 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:03:251 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.compositeComponent.ScreenEula |  |  | 2096 | #setUpAccessibilityProperties
    08/22/13 18:49:03:251 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.compositeComponent.ScreenEulaMediator |  |  | 2096 | onRegister
    08/22/13 18:49:03:251 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.compositeComponent.ScreenBaseMediator |  |  | 2096 | onRegister
    08/22/13 18:49:03:251 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.ContentFooterMediatorBCA38637-3C23-9B28-F936 -A8377C135AD4 |  |  | 2096 | onRegister
    08/22/13 18:49:03:251 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Label#lblTitle)
    08/22/13 18:49:03:251 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:03:251 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnPrimaryAction)
    08/22/13 18:49:03:251 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:03:251 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnSecondaryAction)
    08/22/13 18:49:03:251 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:03:267 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnTertiaryAction)
    08/22/13 18:49:03:267 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:03:267 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnQuaternaryAction)
    08/22/13 18:49:03:267 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:03:267 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Label#loadingAccessibilityAnnouncer)
    08/22/13 18:49:03:267 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value from resource bundle (ScreenEulaAccessibility): Please wait
    08/22/13 18:49:03:267 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.component.ContentEula |  |  | 2096 | #setUpAccessibilityProperties
    08/22/13 18:49:03:267 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(LanguageSelectionDropDownList#ddlLanguageSelection)
    08/22/13 18:49:03:267 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:03:267 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(TextArea#taEulaTextArea)
    08/22/13 18:49:03:267 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:03:267 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.compositeComponent.ScreenEula |  |  | 2096 | #setUpAccessibilityProperties
    08/22/13 18:49:03:407 | [WARN] |  | ASU | PDApp | CloudPackager.LoadEulaCommand |  |  | 2096 | Failed to find the AAMEE version string
    08/22/13 18:49:05:591 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.compositeComponent.ScreenEulaMediator |  |  | 2096 | handleNotification : ComponentNotification.SHAREDFOOTERPRIMARYCLICK
    08/22/13 18:49:05:591 | [WARN] |  | ASU | EnterpriseNative | EnterpriseNative |  |  | 2096 | ewa_setEulaAcceptance: Success in creating marker file
    08/22/13 18:49:05:607 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.compositeComponent.ScreenBasePopupWindowMediator |  |  | 2096 | onRegister
    08/22/13 18:49:05:638 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.compositeComponent.ScreenEulaMediator |  |  | 2096 | onRemove
    08/22/13 18:49:05:638 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.compositeComponent.ScreenBaseMediator |  |  | 2096 | onRemove
    08/22/13 18:49:05:653 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.ContentFooterMediatorBCA38637-3C23-9B28-F936 -A8377C135AD4 |  |  | 2096 | onRemove
    08/22/13 18:49:05:653 | [INFO] |  | ASU | PDApp | AAMShared.DynamicViewMediator |  |  | 2096 | Showing screen with screenID : SCREEN_SHOW_AAMEE_EEPIMS
    08/22/13 18:49:05:653 | [ERROR] |  | ASU | PDApp | AAMShared.DynamicViewMediator |  |  | 2096 | Unable to find ScreenInitializationVO for screenID: SCREEN_SHOW_AAMEE_EEPIMS
    08/22/13 18:49:05:653 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.compositeComponent.ScreenBaseMediator |  |  | 2096 | handleNotification : ComponentNotification.SHAREDFOOTERPRIMARYCLICK
    08/22/13 18:49:05:919 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.ScrimAlertFooterMediator |  |  | 2096 | onRegister
    08/22/13 18:49:05:957 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.component.ContentScrimAlertLoading |  |  | 2096 | #setUpAccessibilityProperties
    08/22/13 18:49:05:957 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(ComponentProgressSpinner#activityIndicator)
    08/22/13 18:49:05:957 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Label#messageDisplay)
    08/22/13 18:49:05:957 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:05:959 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Label#titleDisplay)
    08/22/13 18:49:05:959 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:Loading Creative Cloud Packager. This may take a few seconds.
    08/22/13 18:49:05:959 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnPrimaryAction)
    08/22/13 18:49:05:959 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:05:959 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnSecondaryAction)
    08/22/13 18:49:05:959 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:05:962 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnTertiaryAction)
    08/22/13 18:49:05:962 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:05:962 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnQuaternaryAction)
    08/22/13 18:49:05:962 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:05:962 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Label#loadingAccessibilityAnnouncer)
    08/22/13 18:49:05:964 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value from resource bundle (ScrimAlertLoadingAccessibility): null
    08/22/13 18:49:05:964 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.component.ContentScrimAlertLoading |  |  | 2096 | #setUpAccessibilityProperties
    08/22/13 18:49:05:964 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(ComponentProgressSpinner#activityIndicator)
    08/22/13 18:49:05:967 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Label#messageDisplay)
    08/22/13 18:49:05:967 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:05:967 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Label#titleDisplay)
    08/22/13 18:49:05:967 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:Loading Creative Cloud Packager. This may take a few seconds.
    08/22/13 18:49:05:967 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnPrimaryAction)
    08/22/13 18:49:05:969 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:05:969 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnSecondaryAction)
    08/22/13 18:49:05:969 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:05:969 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnTertiaryAction)
    08/22/13 18:49:05:969 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:05:972 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnQuaternaryAction)
    08/22/13 18:49:05:972 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:05:972 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Label#loadingAccessibilityAnnouncer)
    08/22/13 18:49:05:972 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value from resource bundle (ScrimAlertLoadingAccessibility): null
    08/22/13 18:49:07:689 | [INFO] |  | ASU | OPM | OPM |  |  | 2096 | Build Version - 7.0.0.271
    08/22/13 18:49:07:689 | [INFO] |  | ASU | OPM | OPM |  |  | 2096 | Logging Level verbosity Set  to 4
    08/22/13 18:49:07:692 | [INFO] |  | ASU | OPM | OPM |  |  | 2096 | Schema version and schema compatibility version are same or greater than current
    08/22/13 18:49:07:807 | [INFO] |  | ASU | OPM | OPM |  |  | 2096 | Successfully opened opm session, db location:C:\Users\Builder\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    08/22/13 18:49:07:807 | [INFO] |  | ASU | OPM | OPM |  |  | 2096 | No Record found for the input fields in opm_getValueForKey
    08/22/13 18:49:07:807 | [WARN] |  | ASU | EnterpriseNative | EnterpriseNative |  |  | 2096 | Got error or NULL from UCGetProxyInfo function.
    08/22/13 18:49:07:809 | [ERROR] |  | ASU | PDApp | EnterpriseNativeAppletForCCM |  |  | 2096 | getProxyInfo did not return success string. It returned : <error>Error occured in Updater Core</error>
    08/22/13 18:49:07:812 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 2096 | Loading Applet - LWA_Native for WindowID - 1
    08/22/13 18:49:07:814 | [INFO] |  | ASU | LWANative | LWANative |  |  | Build Version - 7.0.0.125
    08/22/13 18:49:07:814 | [INFO] |  | ASU | LWANative | LWANative |  |  | Logging Level verbosity Set  to 4
    08/22/13 18:49:07:822 | [INFO] |  | ASU | PDApp | ProvCommon.ZStringLoader |  |  | 2096 | Applet locale set to - en_US
    08/22/13 18:49:07:829 | [INFO] |  | ASU | LWANative | LWANative |  |  | Performing openIMSLibSession...
    08/22/13 18:49:07:832 | [INFO] |  | ASU | LWANative | LWANative |  |  | pwa_openIMSLibSession Session key : {A972F166-353B-4051-978B-00BEEB4803DC}
    08/22/13 18:49:07:834 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | 2096 | Build Version - 7.0.0.116
    08/22/13 18:49:07:834 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | 2096 | Logging Level verbosity Set  to 4
    08/22/13 18:49:07:834 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | 2096 | Creating IMSLib instance ...
    08/22/13 18:49:07:834 | [INFO] |  | ASU | OPM | OPM |  |  | 2096 | Build Version - 7.0.0.116
    08/22/13 18:49:07:834 | [INFO] |  | ASU | OPM | OPM |  |  | 2096 | Logging Level verbosity Set  to 4
    08/22/13 18:49:07:837 | [INFO] |  | ASU | OPM | OPM |  |  | 2096 | Schema version and schema compatibility version are same or greater than current
    08/22/13 18:49:07:887 | [INFO] |  | ASU | OPM | OPM |  |  | 2096 | Successfully opened opm session, db location:C:\Users\Builder\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    08/22/13 18:49:07:887 | [INFO] |  | ASU | OPM | OPM |  |  | 2096 | No Record found for the input fields in opm_getValueForKey
    08/22/13 18:49:07:887 | [INFO] |  | ASU | OPM | IMSLib_OPMWrapper |  |  | 2096 | Failed in getting value for key in OPMGetValueForKey domain:OOBE subDomain:ProxyCredentials key:ProxyUsername
    08/22/13 18:49:07:887 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | 2096 | Failed to get proxy user name from local db in getProxyCredentialsFromLocalStore
    08/22/13 18:49:07:887 | [INFO] |  | ASU | OPM | IMSLib |  |  | 2096 | Failed get proxy credentials from local store while creating IMSLib instance ...
    08/22/13 18:49:07:887 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 2096 | Done opening IMSSession, session key - {A972F166-353B-4051-978B-00BEEB4803DC}
    08/22/13 18:49:07:892 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 2096 | Fetching default user profile for requested ClientID...
    08/22/13 18:49:07:892 | [INFO] |  | ASU | LWANative | LWANative |  |  | Performing fetch default user for clientID...
    08/22/13 18:49:07:894 | [INFO] |  | ASU | OPM | IMSLib |  |  | 2096 | Performing fetchDefaultUserInfoForClientId...
    08/22/13 18:49:07:894 | [INFO] |  | ASU | OPM | OPM |  |  | 2096 | No Record found for the input fields in opm_getValueForKey
    08/22/13 18:49:07:894 | [INFO] |  | ASU | OPM | IMSLib_OPMWrapper |  |  | 2096 | Failed in getting value for key in OPMGetValueForKey domain:IMSLib subDomain:CSServiceMap key:426eb9f9-9989-45dd-8b7c-1bcdc957c8e5
    08/22/13 18:49:07:894 | [WARN] |  | ASU | OPM | IMSLibHelper |  |  | 2096 | Failed in fetching default user id for the service, while processing fetchDefaultUserGUIDForClientID
    08/22/13 18:49:07:894 | [INFO] |  | ASU | OPM | IMSLib |  |  | 2096 | Failed to get default user for clientId in fetchDefaultUserInfoForClientId...
    08/22/13 18:49:07:894 | [WARN] |  | ASU | LWANative | LWANative |  |  | failed in IMSLib's fetchDefaultUserInfoForClientId function, in getDefaultUserForClientId
    08/22/13 18:49:07:894 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 2096 | No default user present on the machine for the requested clientID
    08/22/13 18:49:07:894 | [INFO] |  | ASU | PDApp | EnterpriseApplet.CCMEnterprise.StartEEPWorkflowCommand |  |  | 2096 | No default user profile detected
    08/22/13 18:49:07:897 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 2096 | Closing IMSSession: {A972F166-353B-4051-978B-00BEEB4803DC}
    08/22/13 18:49:07:899 | [INFO] |  | ASU | LWANative | LWANative |  |  | Performing closeIMSLibSession...
    08/22/13 18:49:07:899 | [INFO] |  | ASU | OPM | IMSLib |  |  | 2096 | Releasing IMSLib instance ...
    08/22/13 18:49:07:899 | [INFO] |  | ASU | OPM | OPM |  |  | 2096 | Released OPM refrence successfully in opm_freeLibRef
    08/22/13 18:49:07:899 | [INFO] |  | ASU | OPM | IMSLib_OPMWrapper |  |  | 2096 | Released OPMWrapper reference
    08/22/13 18:49:07:899 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 2096 | Done closing IMSSession: {A972F166-353B-4051-978B-00BEEB4803DC}
    08/22/13 18:49:07:904 | [INFO] |  | ASU | PDApp | ProvCommon.StartIMSWFCommand |  |  | 2096 | Starting Adobe ID authorization workflow...
    08/22/13 18:49:07:904 | [INFO] |  | ASU | PDApp | ProvCommon.StartIMSWFCommand |  |  | 2096 | Considering LEID:  Server URL: ims-na1.adobelogin.com/ims/authorize/v1 Locale: en_US
    08/22/13 18:49:07:907 | [INFO] |  | ASU | LWANative | LWANative |  |  | Performing openIMSLibSession...
    08/22/13 18:49:07:907 | [INFO] |  | ASU | LWANative | LWANative |  |  | pwa_openIMSLibSession Session key : {E43A4299-070E-4D1F-989F-9588F446B0CD}
    08/22/13 18:49:07:907 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | 2096 | Build Version - 7.0.0.116
    08/22/13 18:49:07:907 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | 2096 | Logging Level verbosity Set  to 4
    08/22/13 18:49:07:907 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | 2096 | Creating IMSLib instance ...
    08/22/13 18:49:07:909 | [INFO] |  | ASU | OPM | OPM |  |  | 2096 | Build Version - 7.0.0.116
    08/22/13 18:49:07:909 | [INFO] |  | ASU | OPM | OPM |  |  | 2096 | Logging Level verbosity Set  to 4
    08/22/13 18:49:07:909 | [INFO] |  | ASU | OPM | OPM |  |  | 2096 | Schema version and schema compatibility version are same or greater than current
    08/22/13 18:49:07:957 | [INFO] |  | ASU | OPM | OPM |  |  | 2096 | Successfully opened opm session, db location:C:\Users\Builder\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    08/22/13 18:49:07:957 | [INFO] |  | ASU | OPM | OPM |  |  | 2096 | No Record found for the input fields in opm_getValueForKey
    08/22/13 18:49:07:957 | [INFO] |  | ASU | OPM | IMSLib_OPMWrapper |  |  | 2096 | Failed in getting value for key in OPMGetValueForKey domain:OOBE subDomain:ProxyCredentials key:ProxyUsername
    08/22/13 18:49:07:957 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | 2096 | Failed to get proxy user name from local db in getProxyCredentialsFromLocalStore
    08/22/13 18:49:07:957 | [INFO] |  | ASU | OPM | IMSLib |  |  | 2096 | Failed get proxy credentials from local store while creating IMSLib instance ...
    08/22/13 18:49:07:957 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 2096 | Done opening IMSSession, session key - {E43A4299-070E-4D1F-989F-9588F446B0CD}
    08/22/13 18:49:07:962 | [INFO] |  | ASU | LWANative | LWANative |  |  | pwa_openSession Session key : {AD988F7C-BA2C-4645-84C9-9D903F4A9D6C}
    8/22/2013 18:49:07 [INFO] OPM - Build Version - 6.0.281.0
    8/22/2013 18:49:07 [INFO] OPM - Logging Level verbosity Set  to 4
    8/22/2013 18:49:07 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    8/22/2013 18:49:07 [INFO] OPM - No Record found for the input fields
    8/22/2013 18:49:07 [INFO] OPM - Released OPM refrence successfully
    08/22/13 18:49:07:977 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 2096 | Done opening PWASession, session key - {AD988F7C-BA2C-4645-84C9-9D903F4A9D6C}
    08/22/13 18:49:07:979 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 2096 | Performing getDeviceID...
    08/22/13 18:49:07:982 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.125
    08/22/13 18:49:07:982 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    08/22/13 18:49:07:984 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    08/22/13 18:49:07:989 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\Builder\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    08/22/13 18:49:07:989 | [INFO] |  | ASU | OPM | OPM |  |  | No Record found for the input fields in opm_getValueForKey
    08/22/13 18:49:07:989 | [WARN] |  | ASU | OPM | OPMWrapper |  |  | Failed in getting value for key in OPMGetValueForKey
    08/22/13 18:49:07:989 | [INFO] |  | ASU | OPM | LWANative |  |  |  : DeviceId not present in local db generating it from scratch in pwa_getDeviceID
    08/22/13 18:49:07:989 | [INFO] |  | ASU | OPM | LWANative |  |  | OS INFOLIST ::
    MajorVerison :6
    MinorVersion :1
    productType:1
    platformId:2
    08/22/13 18:49:07:989 | [INFO] |  | ASU | OPM | LWANative |  |  | OS detected is :Win7 while fetching group list for signed in user
    08/22/13 18:49:08:012 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    08/22/13 18:49:08:017 | [INFO] |  | ASU | PDApp | AAMShared.DynamicViewMediator |  |  | 2096 | Showing screen with screenID : SCREEN_SHOW_AAMEE_EEPIMS
    08/22/13 18:49:08:117 | [INFO] |  | ASU | PDApp | IMSLibFlex.ShowEEPAAMEESignInCommand |  |  | 2096 | Done with open EEP SignIn command
    08/22/13 18:49:08:202 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Label#lblTitle)
    08/22/13 18:49:08:202 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:08:202 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnPrimaryAction)
    08/22/13 18:49:08:204 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:08:204 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnSecondaryAction)
    08/22/13 18:49:08:204 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:08:204 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnTertiaryAction)
    08/22/13 18:49:08:204 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:08:207 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnQuaternaryAction)
    08/22/13 18:49:08:207 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:08:207 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Label#loadingAccessibilityAnnouncer)
    08/22/13 18:49:08:207 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value from resource bundle (ScreenCCPSignInEEPAccessibility): null
    08/22/13 18:49:08:207 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.component.CCP.ContentCCPSignInEEP |  |  | 2096 | #setUpAccessibilityProperties
    08/22/13 18:49:08:209 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.compositeComponent.CCP.ScreenCCPSignInEEP |  |  | 2096 | #setUpAccessibilityProperties
    08/22/13 18:49:08:209 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.compositeComponent.CCP.ScreenCCPSignInEEPMediator |  |  | 2096 | onRegister
    08/22/13 18:49:08:209 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.compositeComponent.ScreenBaseMediator |  |  | 2096 | onRegister
    08/22/13 18:49:08:212 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.ContentFooterMediatorBCA38637-3C23-9B28-F936 -A8377C135AD4 |  |  | 2096 | onRegister
    08/22/13 18:49:08:214 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Label#lblTitle)
    08/22/13 18:49:08:217 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:08:217 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnPrimaryAction)
    08/22/13 18:49:08:217 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:08:217 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnSecondaryAction)
    08/22/13 18:49:08:217 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:08:219 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityNameValue(Button#btnTertiaryAction)
    08/22/13 18:49:08:219 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | - value:
    08/22/13 18:49:08:219 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.accessibility.ScreenAccessibilityDelegate |  |  | 2096 | #getAccessibilityName

  • ON CHANGE OF is not working for the below case

    Hi,
      I had a problem with ON CHANGE OF as below
    select * from vbap into gt_vbap where vbeln in s_vbeln.
    loop at gt_vbap into ls_vbap where posnr ne '00010'.
       on change of posnr.
       endon.
    endloop.
    in gt_vbap i have only items 10 & 20 for a Sales Order No so in loop on change of is not triggering because remain line item 
    is only 20.
    can anyone explain me how to solve it

    You need not use ON CHANGE OF....
    Try using this code:
    SORT gt_vbap by posnr.
    Get the index of record
    READ TABLE gt_vbap into ls_vbap with key posnr = '00010'
                 transporting no fields binary search.
    if sy-subrc eq 0.
      l_index = sy-index.
    Read from next line
    add 1 to l_index.
    Loop at internal table from next line after posnr = '00010'....
    loop at gt_vbap into ls_vbap from l_index.
    Write your logic in this loop
    endloop.
    endif.
    Regards,
    Santosh

  • SAP CRM 7.0 WebUI: change history is not working

    Hi specialists
    Our change history is working - but only in SAPGUI.
    I found no way to activate / customize it for the WebUI. The corresponding Assignment Block is simply blank.
    On the other hand - in the SAPGUI its working like it is mentioned to do.
    But it is getting better:
    On our test system its working even in the  WebUI.
    On our prod. system not.
    Does somebody of you have any advices/hints for me?
    With best regards
    Thomas
    System:   SAP CRM 7.0
    2-Tier (test and productive system)
    Problem occurs only on productive system in WebUI

    Hi,
    We are facing same problem for change history on webIC except that all changes to
    business partner are visible only changes to contract account are not coming in change history.
    for e.g if we changed incoming payment method using tcode CAA2 on ISU change is replicating
    on CRM but change history is not showing changes made to incoming payment method.
    i have already posted question but got no reply's
    [change history is not updating on CRM webIC 7.0]
    Following are the components & views which are being called for change history functionality on WebIC.
    Component :
    BP_HEAD
    BP_DATA
    View :
    BP_HEAD/BPHEADOverview
    BP_DATA/AccountChangeHistoryOV
    Above view's are as per SAP standard and not modified or enhanced by us.
    Thank You,
    Sidh

Maybe you are looking for

  • USB 1.1 but no USB 2.0 on MS-7125 [solved]

    I have Gentoo AMD64 2005.0 with kernel 2.6.11-gentoo-r11 running on an MSI K8N Neo4 nForce 4 Ultra Platinum motherboard (MS-7125). I tried two different USB memory sticks. The first is recognized by the kernel with no problems. dmesg reports the foll

  • Number too small to enter passcode

    Earlier today i was able to unlock the screen but the passcode screen was shrunk to the bottom left corner and i was left unable to enter the numbers for the passcode.

  • Vendor number ranges - skip

    Hi, In our organization, we have defined the number range for vendors from 1000 to 2000 but the number of vendor codes created are 1999 but in XKN1, the current status is 1500 onlly. But when we try to create a vendor, it is stopping saying that the

  • ADF: Exception at running page

    Hi Everyone, im using Jdev 11G release 1. i have developed a simple ADF Page with some VOs. while running page the output is not displaying instead im getting one Exception: <LifecycleImpl> <_handleException> ADF_FACES-60098:Faces lifecycle receives

  • CiscoWorks LMS 3.2 Won't Start on Windows Server 2008 Enterprise

    All, I installed CiscoWorks LMS 3.2 RME on Windows Server 2008 Enterprise and the daemon manager won't start.  The server is a VMware ESX server 4.0. I've uninstalled and reinstalled and still nothing. I get message "The service is not responding to