Material request download error

Hello Experts,
I am facing typical material download issue, please help me out to overcome this:
- material number in ERP has lot of speical characters say e.g. - : =
- DNL_CUST_PROD0 / PROD1 / PROD 3 / TAX all has bee done
- Materials are already downloaded
- When I tried to download new materials from ERP to CRM(missing) I am getting error: as "Mat. for Initial Download: Function table not supported" ; additionally I am also getting tax sequence for country CA, but in ERP no tax classification maintained for CA for particular material. Also no data available in TSTL, TSKD etc..tables.
Pleas let me throw your thoughts here.
Cheers,
Bobby

Hello Bobby,
Check you tax customization in R/3 and CRM.
In CRM,you can run txn:CRM_TAXCUST_VALIDATE and check for error in tax customizing.
Also,check note:1121999     for error funcation table not supported.
What exactly the error message icon on the BDoc says?
Regards,
Shanthala Kudva.

Similar Messages

  • Material Initial Download Error

    Folks,
    While downloading the Material master from R/3 to CRM I get the following error.
    "A key was used twice for mulitrow set type CRMM_PR_TAX"
    Any ideas how can I get past this?
    Faz

    Hello Fasi,
    We have been troubleshooting this problem and got certain details on the same and followed the following steps:
    First:
    We tried deleting hierarchy and products as per the following comment
    "i had a similar issue and on investigation found these set types were assigned to a hierarchy in CRM (created in CRM). i deleted this hierarchy and the products attached to it. then i again downloaded the object Material, it runs fine. "
    ...but it didnt help.
    Second:
    We removed the tax attached to country and then are able to download products but this is just a workaround and should not be followed in actual scenario.
    Now we have some questions here:
    >>. Should we remove the tax attached to country as we did or do we need to define the tax to region level.
    >> Why is the BDOC generator creating CRMM_PR_TAX with duplicate entries...?
    Rgds
    Priyanka

  • CRM Request Download using Bdoc - material (urgent)

    Hi all,
    bdoc block size is of 100 and
    i need to create one request download for all the materials in the bdoc not 100 request for 100 materials.
    since there are 40 bdocs in error....
    if any one know any function module or any other logic to fullfill the requiremernt please reply soon....its urgent.....
    points will be rewarded.

    Hi Sudipta,
    my email id [email protected]
                      [email protected]
    thanks,
    Aniket

  • I keep getting the same error when connecting to itune for either update or download. error is we could not complete your itunes store request error 0x800B0101

    I keep getting the same error when connecting to itune for either update or download. error is we could not complete your itunes store request error 0x800B0101.
    My OS is Windows Vista and using Internet Explorer

    I keep getting the same error when connecting to itune for either update or download. error is we could not complete your itunes store request error 0x800B0101.
    My OS is Windows Vista and using Internet Explorer

  • "Download Error" - Can't download/install any programs.

    I downloaded CC on my Win 8.1 machine (after a windows crash and upgrade to 8.1).  Previously it was working fine (on Win 8).  Now the CC desktop app connects to my account but the Apps tab has a red exclamation error and when you click the tab it says "Download Error."  and to "Please contact customer support."  (See below:)
    Apparently this seems to be a prevalent issue as I see multiple threads and support requests with this same error.
    I got on Chat and followed all the troubleshooting advice, uninstalled, reinstalled, used the Removal tool, deleted folders from the AppData locations, everything.  Finally was getting ready to do something else and the Adobe server disconnected my chat session. 
    I know it is not MY internet connection because everything else is up and running fine, including streaming radio progams and other chat programs.
    I tried visiting something on Adobe's siteand received the following error:
    So what is going on Adobe?  I need to get my programs back so I can get back to work.
    Edited to add - After another hour of being on chat support I got disconnected again.  Same error:  "Sorry, we're having technical difficulties."

    So after four hours and dozens of troubleshooting issues, I figured out what was wrong.  I am on a fixed-wireless system at home.  I have used this same system and network setup in the past for CC.  My average DL speeds are 2.0 Mbps.  Not super fast but it has worked in the past.  On the 3rd or 4th chat session I was told that you can't use wireless with CC and I need to be on a fixed wired connection.  Finding that as rediculous as possible, I decided to test my network.  I logged off and used my AT&T CELL PHONE as a hotspot (which gets me about 4.0 Mbps download speeds, albeit with a higher ping) and VIOLA the Apps tab is there and I can download programs.

  • After Downloading, Error while opening PDF  : PDF has no pages

    After Downloading, Error while opening PDF  : PDF has no pages
    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          SRC_SPOOLID              = L_SPOOLNO
          NO_DIALOG                = SPACE
          DST_DEVICE               = MSTR_PRINT_PARMS-PDEST
        IMPORTING
          PDF_BYTECOUNT            = MI_BYTECOUNT
        TABLES
          PDF                      = MTAB_PDF
        EXCEPTIONS
          ERR_NO_ABAP_SPOOLJOB     = 1
          ERR_NO_SPOOLJOB          = 2
          ERR_NO_PERMISSION        = 3
          ERR_CONV_NOT_POSSIBLE    = 4
          ERR_BAD_DESTDEVICE       = 5
          USER_CANCELLED           = 6
          ERR_SPOOLERROR           = 7
          ERR_TEMSEERROR           = 8
          ERR_BTCJOB_OPEN_FAILED   = 9
    Thanks in advance
    Monika
          ERR_BTCJOB_SUBMIT_FAILED = 10
          ERR_BTCJOB_CLOSE_FAILED  = 11
          OTHERS                   = 12.
    Transfer the 132-long strings to 255-long strings
    LOOP AT MTAB_PDF.
    TRANSLATE MTAB_PDF USING '~'.
    CONCATENATE WA_BUFFER MTAB_PDF INTO WA_BUFFER.
    ENDLOOP.
    TRANSLATE WA_BUFFER USING '~'.
    DO.
    it_attach = WA_BUFFER.
    APPEND it_attach.
    SHIFT WA_BUFFER LEFT BY 255 PLACES.
    IF WA_BUFFER IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    ****GET THE FILE NAME TO STORE....................
    v_path = 'C:\PD Form\' .
    CONCATENATE v_path p_pernr-low '.pdf' into v_name.
        create object v_guiobj.
        call method v_guiobj->file_save_dialog
          EXPORTING
            default_extension = 'pdf'
            default_file_name = v_name
            file_filter       = v_filter
          CHANGING
            filename          = v_name
            path              = v_path
            fullpath          = v_fullpath
            user_action       = v_uact.
        if v_uact = v_guiobj->action_cancel.
          leave to current transaction.
        endif.
    ..................................DOWNLOAD AS FILE....................
        move v_fullpath to v_filename.
        call function 'GUI_DOWNLOAD'
          EXPORTING
            bin_filesize            = MI_BYTECOUNT
            filename                = v_filename
            filetype                = 'BIN'
          TABLES
            data_tab                = it_ATTACH
          EXCEPTIONS
            file_write_error        = 1
            no_batch                = 2
            gui_refuse_filetransfer = 3
            invalid_type            = 4
            no_authority            = 5
            unknown_error           = 6
            header_not_allowed      = 7
            separator_not_allowed   = 8
            filesize_not_allowed    = 9
            header_too_long         = 10
            dp_error_create         = 11
            dp_error_send           = 12
            dp_error_write          = 13
            unknown_dp_error        = 14
            access_denied           = 15
            dp_out_of_memory        = 16
            disk_full               = 17
            dp_timeout              = 18
            file_not_found          = 19
            dataprovider_exception  = 20
            control_flush_error     = 21
            others                  = 22.
        if sy-subrc <> 0.
          message id sy-msgid type sy-msgty number sy-msgno
              with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        endif.

    My Generated Spool request is PDF Spool. It contains Adobe Forms data. To Download Adobe form
                 Spool (PDF Spool) into PDF format,
    First,
    A)     Read PDF Spool data by using u2018FPCOMP_CREATE_PDF_FROM_SPOOLu2019 Function module.
    B)     Assign the Output Data to XSTRING format
    C)     Convert that XSTRING data to Binary Format using 'SCMS_XSTRING_TO_BINARY' Function module.
    D)     Save File on Application server using OPEN DATASET , TRANSFER , CLOSE DATASET.You can see your
                          downloaded file in Transaction AL11 in specified directory.
    You can save your file on Presentation server also using GUI_DOWNLOAD.
    First three steps are necessary if your spool is PDF Spool.
    Basically we need this when we are downloading Adodbe forms ( which is not a SAPScript or smartforms)
    Example :
    DATA :
      e_pdf1 TYPE  fpcontent,
      e_renderpagecount1  TYPE i.
      CALL FUNCTION 'FPCOMP_CREATE_PDF_FROM_SPOOL'
        EXPORTING
          i_spoolid               = l_spoolno
          i_partnum               = '1'
       IMPORTING
         e_pdf                   = e_pdf1
         e_renderpagecount       = e_renderpagecount1
    *   E_PDF_FILE              = E_PDF_FILE1
    * EXCEPTIONS
    *   ADS_ERROR               = 1
    *   USAGE_ERROR             = 2
    *   SYSTEM_ERROR            = 3
    *   INTERNAL_ERROR          = 4
    *   OTHERS                  = 5
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      DATA : buffer  TYPE  xstring,
      append_to_table  TYPE  c.
      DATA : output_length TYPE  i.
      TYPES : BEGIN OF ty_binary,
                binary_field(1000) TYPE c,
              END OF ty_binary.
      DATA : lt_binary TYPE TABLE OF ty_binary WITH HEADER LINE.
      DATA : lv_xstring TYPE xstring.
      lv_xstring = e_pdf1.
    * Convert xstring to binary.
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          buffer                = lv_xstring
         append_to_table       = ' '
    * IMPORTING
    *   OUTPUT_LENGTH         =
        TABLES
          binary_tab            = lt_binary.
      DATA : wa_binary LIKE lt_binary.
      DATA: BEGIN OF itab OCCURS 0,
      field(256),
      END OF itab.
      DATA: dsn(50000) VALUE '/usr/sap/tmp/',
      length LIKE sy-tabix,
      lengthn LIKE sy-tabix.
      CONCATENATE '/usr/sap/tmp/' lv_pernr '.pdf' INTO dsn.
    ******* Save file on Application server
      OPEN DATASET dsn FOR OUTPUT IN BINARY MODE.
      LOOP AT lt_binary.
        TRANSFER lt_binary-binary_field TO dsn.
      ENDLOOP.
      CLOSE DATASET dsn.
      CLEAR lt_binary.
      REFRESH lt_binary.
    cheers

  • Download error. Please contact customer support. - Adobe Creative Cloud Desktop

    I'm running Windows 8.1 on a home network. This is a fresh install of the operating system, my previous harddrive crashed on this system, so Adobe Creative Cloud is the only program besides Chrome I have installed. I have used Adobe Creative Cloud previously on this network and nothing has changed.
    I have already tried deleting opm.db from the OOBE folder in /AppData/Local and the AAMUpdater folder.
    I have also ran the Adobe Creative Cloud Cleaner Tool, disabled my firewall and Windows Defender, checked my proxy settings and disabled the certificate checks in Internet Explorer.
    ACC.log located in /AppData/Local/Temp
    02/06/14 10:27:11:917 | [INFO] | 74372 | ACC | C3App | CoreManager |  | C3App | 2060 | core library loaded
    02/06/14 10:27:11:932 | [INFO] | 74372 | ACC | Core | AsyncMessageProcessor |  | Core | 2060 | AsyncMsgProcessor started. on thread id = 4104
    02/06/14 10:27:11:932 | [INFO] | 74372 | ACC | Core | AppletManager |  | Core | 2060 | Querying applet database at path: C:\Program Files (x86)\Adobe\Adobe Creative Cloud
    02/06/14 10:27:11:932 | [INFO] | 74372 | ACC | Core | AppletManager |  | Core | 2060 | Loading PIM library from path: C:\Program Files (x86)\Adobe\Adobe Creative Cloud\utils\AdobePIM.dll
    02/06/14 10:27:11:932 | [INFO] | 74372 | ACC | Core | AppletManager |  | Core | 2060 | Getting applet data from Applet database.
    02/06/14 10:27:11:932 | [INFO] | 74372 | ACC | Core | AppletManager |  | Core | 2060 | Registering Applets...
    02/06/14 10:27:11:948 | [INFO] | 74372 | ACC | Core | AppletManager |  | Core | 2060 | Getting applet data from Applet database.
    02/06/14 10:27:11:948 | [INFO] | 74372 | ACC | Core | AppletManager |  | Core | 2060 | All installed packages version string: ACCC:2.4.0.348|ANSClient:2.4.0.348|ANSClientV1:2.4.0.348|AppsPanel:2.4.0.348|BehancePanel :2.4.0.348|Core:2.4.0.348|CoreExt:2.4.0.348|CoreSync:2.4.0.348|CoreSyncV1:2.4.0.348|Exchan gePlugin:2.4.0.348|FilesPanel:2.4.0.348|FontsPanel:2.4.0.348|HEX:2.4.0.348|HomePanel:2.4.0 .348|LiveType:2.4.0.348|LiveTypeV1:2.4.0.348|NEX:2.4.0.348|Runtime:2.4.0.330|Utils:2.4.0.3 48
    02/06/14 10:27:11:948 | [INFO] | 74372 | ACC | Core | AppletManager |  | Core | 2060 | Getting applet relationship info from Applet database.
    02/06/14 10:27:11:948 | [INFO] | 74372 | ACC | Core | AppletManager |  | Core | 2060 | Registering Applets...
    02/06/14 10:27:11:948 | [INFO] | 74372 | ACC | Core | AppletManager |  | Core | 2060 | Identifying applet relationships...
    02/06/14 10:27:11:948 | [INFO] | 74372 | ACC | Core | Applet |  | Core | 2060 | Loading Applet - CmdCntr_CoreExt for InstanceID - CoreInstance
    02/06/14 10:27:13:013 | [INFO] | 74372 | ACC | Core | Applet |  | Core | 2060 | Loading Applet - Analytics_CoreExt for InstanceID - CoreInstance
    02/06/14 10:27:13:013 | [INFO] | 74372 | ACC | ACE | ACE |  | ACE | 2060 | ACE Initialized
    02/06/14 10:27:13:013 | [INFO] | 74372 | ACC | ACE |  |  | ACE | 2060 | ETS environment is: 7
    02/06/14 10:27:13:013 | [INFO] | 74372 | ACC | ACE |  |  | ACE | 2060 | OS Bitness is: 64
    02/06/14 10:27:13:013 | [INFO] | 74372 | ACC | Core | Applet |  | Core | 2060 | Loading Applet - LocManager_CoreExt for InstanceID - CoreInstance
    02/06/14 10:27:13:029 | [INFO] | 74372 | ACC | LocalizationManager |  |  | LocalizationManager | 2060 | LocalizationManager Initialized
    02/06/14 10:27:13:029 | [INFO] | 74372 | ACC | Core | Applet |  | Core | 2060 | Loading Applet - C3Prefs_CoreExt for InstanceID - CoreInstance
    02/06/14 10:27:13:029 | [INFO] | 74372 | ACC | C3PrefsCoreExt |  |  | C3PrefsCoreExt | 2060 | Initialize called: <CommandLineArguments><appletID>C3Prefs_CoreExt</appletID><appletVersion>1.0</appletVersi on><appletInstanceID>CoreInstance</appletInstanceID><appletDIR>C:\Program Files (x86)\Adobe\Adobe Creative Cloud\CoreExt</appletDIR></CommandLineArguments>
    02/06/14 10:27:13:029 | [INFO] | 74372 | ACC | Core | Applet |  | Core | 2060 | Loading Applet - ElevationManager_CoreExt for InstanceID - CoreInstance
    02/06/14 10:27:13:029 | [INFO] | 74372 | ACC | ElevationManager |  |  | ElevationManager | 2060 | Initialize called: <CommandLineArguments><appletID>ElevationManager_CoreExt</appletID><appletVersion>1.0</ap pletVersion><appletInstanceID>CoreInstance</appletInstanceID><appletDIR>C:\Program Files (x86)\Adobe\Adobe Creative Cloud\CoreExt</appletDIR></CommandLineArguments>
    02/06/14 10:27:13:029 | [INFO] | 74372 | ACC | Core | Applet |  | Core | 2060 | Loading Applet - C3Container_BL for InstanceID - 1
    02/06/14 10:27:13:029 | [INFO] | 74372 | ACC | Core | Applet |  | Core | 2060 | Loading Applet - HEX_BL for InstanceID - 1
    02/06/14 10:27:13:045 | [INFO] | 74372 | ACC | HEX |  |  | HEX | 2060 | Initialize called: <CommandLineArguments><appletID>HEX_BL</appletID><appletVersion>1.0</appletVersion><apple tInstanceID>1</appletInstanceID><appletDIR>C:\Program Files (x86)\Adobe\Adobe Creative Cloud\HEX</appletDIR></CommandLineArguments>
    02/06/14 10:27:13:060 | [INFO] | 74372 | ACC | Core | Applet |  | Core | 2060 | Loading Applet - NEX_UIX for InstanceID - CoreInstance
    02/06/14 10:27:13:060 | [INFO] | 74372 | ACC | NEX | NEX |  | NEX | 2060 | NEX Initialized
    02/06/14 10:27:13:060 | [INFO] | 74372 | ACC | NEX | NEX |  | NEX | 2060 | Inside LoadUIApplet
    02/06/14 10:27:13:060 | [INFO] | 74372 | ACC | NEX | NEXAppletManager |  | NEX | 2060 | Loading Applet - C3Container_UI for WindowID - 1
    02/06/14 10:27:13:076 | [INFO] | 74372 | ACC | NEX | NEXAppletManager |  | NEX | 2060 | Registering Applet. Type:  ID:C3Container_UI  Version:1.0
    02/06/14 10:27:13:185 | [INFO] | 74372 | ACC | LocalizationManager | LocalizationManager |  | LocalizationManager | 2060 | Dictionary Path: C:\Program Files (x86)\Adobe\Adobe Creative Cloud\ACC\resource\Dictionary\en_US\stringTable.zdct
    02/06/14 10:27:13:201 | [INFO] | 74372 | ACC | LocalizationManager | LocalizationManager |  | LocalizationManager | 2060 | Dictionary reading successful.
    02/06/14 10:27:13:310 | [INFO] | 74372 | ACC | Core | Applet |  | Core | 2060 | Loading Applet - LWA_Native for InstanceID - 1
    02/06/14 10:27:13:326 | [INFO] | 74372 | ACC | C3PrefsCoreExt | C3PrefsMessageProcessor |  | C3PrefsCoreExt | 2060 | Inside GetLocalConfigXmlPath
    02/06/14 10:27:13:326 | [WARN] | 74372 | ACC | C3PrefsCoreExt |  |  | C3PrefsCoreExt | 2060 | Could not initialize C3Config sig file as XML data
    02/06/14 10:27:13:326 | [INFO] | 74372 | ACC | LocalizationManager |  |  | LocalizationManager | 2060 | Inside GetLocaleForApplet
    02/06/14 10:27:13:326 | [INFO] | 74372 | ACC | Core | Applet |  | Core | 2060 | Loading Applet - HomePanel_BL for InstanceID - 1
    02/06/14 10:27:13:326 | [INFO] | 74372 | ACC | HomePanelBL |  |  | HomePanelBL | 2060 | Initialize called: <CommandLineArguments><appletID>HomePanel_BL</appletID><appletVersion>1.0</appletVersion> <appletInstanceID>1</appletInstanceID><appletDIR>C:\Program Files (x86)\Adobe\Adobe Creative Cloud\HomePanel</appletDIR></CommandLineArguments>
    02/06/14 10:27:13:326 | [INFO] | 74372 | ACC | NEX | NEX |  | NEX | 2060 | Inside LoadUIApplet
    02/06/14 10:27:13:326 | [INFO] | 74372 | ACC | NEX | NEXAppletManager |  | NEX | 2060 | Loading Applet - HomePanel_UI for WindowID - 1
    02/06/14 10:27:13:326 | [INFO] | 74372 | ACC | HomePanelUI |  |  | HomePanelUI | 2060 | Initialize called: <CommandLineArguments><appletID>HomePanel_UI</appletID><appletVersion>1.0</appletVersion> <appletInstanceID>1</appletInstanceID><appletDIR>C:\Program Files (x86)\Adobe\Adobe Creative Cloud\HomePanel</appletDIR><dpi_x>96</dpi_x><dpi_y>96</dpi_y><isHighDPI>0</isHighDPI></Co mmandLineArguments>
    02/06/14 10:27:13:326 | [INFO] | 74372 | ACC | NEX | NEXAppletManager |  | NEX | 2060 | Registering Applet. Type:  ID:HomePanel_UI  Version:1.0
    02/06/14 10:27:13:326 | [INFO] | 74372 | ACC | C3PrefsCoreExt | C3PrefsMessageProcessor |  | C3PrefsCoreExt | 2060 | Inside GetLocalConfigXmlPath
    02/06/14 10:27:13:326 | [WARN] | 74372 | ACC | C3PrefsCoreExt |  |  | C3PrefsCoreExt | 2060 | Could not initialize C3Config sig file as XML data
    02/06/14 10:27:13:341 | [INFO] | 74372 | ACC | LocalizationManager | LocalizationManager |  | LocalizationManager | 2060 | Dictionary Path: C:\Program Files (x86)\Adobe\Adobe Creative Cloud\HomePanel\resource\Dictionary\en_US\stringTable.zdct
    02/06/14 10:27:13:341 | [INFO] | 74372 | ACC | LocalizationManager | LocalizationManager |  | LocalizationManager | 2060 | Dictionary reading successful.
    02/06/14 10:27:13:482 | [INFO] | 74372 | ACC | Core | Applet |  | Core | 2060 | Loading Applet - AppsPanel_BL for InstanceID - 1
    02/06/14 10:27:13:482 | [INFO] | 74372 | ACC | ProductsAppsBL |  |  | ProductsAppsBL | 2060 | Initialize called: <CommandLineArguments><appletID>AppsPanel_BL</appletID><appletVersion>1.0</appletVersion> <appletInstanceID>1</appletInstanceID><appletDIR>C:\Program Files (x86)\Adobe\Adobe Creative Cloud\AppsPanel</appletDIR></CommandLineArguments>
    02/06/14 10:27:13:482 | [INFO] | 74372 | ACC | NEX | NEX |  | NEX | 2060 | Inside LoadUIApplet
    02/06/14 10:27:13:482 | [INFO] | 74372 | ACC | NEX | NEXAppletManager |  | NEX | 2060 | Loading Applet - AppsPanel_UI for WindowID - 1
    02/06/14 10:27:13:482 | [INFO] | 74372 | ACC | ProductsAppUI |  |  | ProductsAppUI | 2060 | Initialize called: <CommandLineArguments><appletID>AppsPanel_UI</appletID><appletVersion>1.0</appletVersion> <appletInstanceID>1</appletInstanceID><appletDIR>C:\Program Files (x86)\Adobe\Adobe Creative Cloud\AppsPanel</appletDIR><dpi_x>96</dpi_x><dpi_y>96</dpi_y><isHighDPI>0</isHighDPI></Co mmandLineArguments>
    02/06/14 10:27:13:498 | [INFO] | 74372 | ACC | NEX | NEX |  | NEX | 2060 | Inside LoadBindings
    02/06/14 10:27:13:498 | [INFO] | 74372 | ACC | NEX | NEX |  | NEX | 2060 | Inside loadEventBindings
    02/06/14 10:27:13:498 | [INFO] | 74372 | ACC | NEX | NEX |  | NEX | 2060 | Return from loadEventBindings: 1
    02/06/14 10:27:13:498 | [INFO] | 74372 | ACC | NEX | NEX |  | NEX | 2060 | Inside loadPropertyBindings
    02/06/14 10:27:13:498 | [INFO] | 74372 | ACC | NEX | NEX |  | NEX | 2060 | Inside registerPropertyBindingsWithCore
    02/06/14 10:27:13:498 | [INFO] | 74372 | ACC | NEX | NEX |  | NEX | 2060 | Return from registerPropertyBindingsWithCore
    02/06/14 10:27:13:498 | [INFO] | 74372 | ACC | NEX | NEX |  | NEX | 2060 | Return from loadPropertyBindings: 1
    02/06/14 10:27:13:498 | [INFO] | 74372 | ACC | NEX | NEXAppletManager |  | NEX | 2060 | Registering Applet. Type:  ID:AppsPanel_UI  Version:1.0
    02/06/14 10:27:13:498 | [INFO] | 74372 | ACC | LocalizationManager | LocalizationManager |  | LocalizationManager | 2060 | Dictionary Path: C:\Program Files (x86)\Adobe\Adobe Creative Cloud\AppsPanel\resource\Dictionary\en_US\stringTable.zdct
    02/06/14 10:27:13:498 | [INFO] | 74372 | ACC | LocalizationManager | LocalizationManager |  | LocalizationManager | 2060 | Dictionary reading successful.
    02/06/14 10:27:13:498 | [INFO] | 74372 | ACC | Core | Applet |  | Core | 2060 | Loading Applet - FilesPanel_BL for InstanceID - 1
    02/06/14 10:27:13:498 | [INFO] | 74372 | ACC | FileAppsBL |  |  | FileAppsBL | 2060 | Initialize called: <CommandLineArguments><appletID>FilesPanel_BL</appletID><appletVersion>1.0</appletVersion ><appletInstanceID>1</appletInstanceID><appletDIR>C:\Program Files (x86)\Adobe\Adobe Creative Cloud\FilesPanel</appletDIR></CommandLineArguments>
    02/06/14 10:27:13:498 | [INFO] | 74372 | ACC | NEX | NEX |  | NEX | 2060 | Inside LoadUIApplet
    02/06/14 10:27:13:498 | [INFO] | 74372 | ACC | NEX | NEXAppletManager |  | NEX | 2060 | Loading Applet - FilesPanel_UI for WindowID - 1
    02/06/14 10:27:13:529 | [INFO] | 74372 | ACC | FileAppsUI |  |  | FileAppsUI | 2060 | Initialize called: <CommandLineArguments><appletID>FilesPanel_UI</appletID><appletVersion>1.0</appletVersion ><appletInstanceID>1</appletInstanceID><appletDIR>C:\Program Files (x86)\Adobe\Adobe Creative Cloud\FilesPanel</appletDIR><dpi_x>96</dpi_x><dpi_y>96</dpi_y><isHighDPI>0</isHighDPI></C ommandLineArguments>
    02/06/14 10:27:13:529 | [INFO] | 74372 | ACC | LocalizationManager | LocalizationManager |  | LocalizationManager | 2060 | Dictionary Path: C:\Program Files (x86)\Adobe\Adobe Creative Cloud\FilesPanel\resource\Dictionary\en_US\stringTable.zdct
    02/06/14 10:27:13:529 | [INFO] | 74372 | ACC | LocalizationManager | LocalizationManager |  | LocalizationManager | 2060 | Dictionary reading successful.
    02/06/14 10:27:13:638 | [INFO] | 74372 | ACC | NEX | NEXAppletManager |  | NEX | 2060 | Registering Applet. Type:  ID:FilesPanel_UI  Version:1.0
    02/06/14 10:27:13:638 | [INFO] | 74372 | ACC | Core | Applet |  | Core | 2060 | Loading Applet - FontsPanel_BL for InstanceID - 1
    02/06/14 10:27:13:638 | [INFO] | 74372 | ACC | FontsAppBL |  |  | FontsAppBL | 2060 | Initialize called: <CommandLineArguments><appletID>FontsPanel_BL</appletID><appletVersion>1.0</appletVersion ><appletInstanceID>1</appletInstanceID><appletDIR>C:\Program Files (x86)\Adobe\Adobe Creative Cloud\FontsPanel</appletDIR></CommandLineArguments>
    02/06/14 10:27:13:638 | [INFO] | 74372 | ACC | NEX | NEX |  | NEX | 2060 | Inside LoadUIApplet
    02/06/14 10:27:13:638 | [INFO] | 74372 | ACC | NEX | NEXAppletManager |  | NEX | 2060 | Loading Applet - FontsPanel_UI for WindowID - 1
    02/06/14 10:27:13:638 | [INFO] | 74372 | ACC | FontsAppUI |  |  | FontsAppUI | 2060 | Initialize called: <CommandLineArguments><appletID>FontsPanel_UI</appletID><appletVersion>1.0</appletVersion ><appletInstanceID>1</appletInstanceID><appletDIR>C:\Program Files (x86)\Adobe\Adobe Creative Cloud\FontsPanel</appletDIR><dpi_x>96</dpi_x><dpi_y>96</dpi_y><isHighDPI>0</isHighDPI></C ommandLineArguments>
    02/06/14 10:27:13:638 | [INFO] | 74372 | ACC | C3PrefsCoreExt | C3PrefsMessageProcessor |  | C3PrefsCoreExt | 2060 | Inside GetLocalConfigXmlPath
    02/06/14 10:27:13:638 | [WARN] | 74372 | ACC | C3PrefsCoreExt |  |  | C3PrefsCoreExt | 2060 | Could not initialize C3Config sig file as XML data
    02/06/14 10:27:13:638 | [INFO] | 74372 | ACC | LocalizationManager |  |  | LocalizationManager | 2060 | Inside GetLocaleForApplet
    02/06/14 10:27:13:638 | [INFO] | 74372 | ACC | FontsAppUI | FONTS_PANEL |  | FontsAppUI | 2060 | Locale Used for applet: en_US
    02/06/14 10:27:13:638 | [INFO] | 74372 | ACC | NEX | NEXAppletManager |  | NEX | 2060 | Registering Applet. Type:  ID:FontsPanel_UI  Version:1.0
    02/06/14 10:27:13:654 | [INFO] | 74372 | ACC | LocalizationManager | LocalizationManager |  | LocalizationManager | 2060 | Dictionary Path: C:\Program Files (x86)\Adobe\Adobe Creative Cloud\FontsPanel\resource\Dictionary\en_US\stringTable.zdct
    02/06/14 10:27:13:654 | [INFO] | 74372 | ACC | LocalizationManager | LocalizationManager |  | LocalizationManager | 2060 | Dictionary reading successful.
    02/06/14 10:27:13:654 | [INFO] | 74372 | ACC | Core | Applet |  | Core | 2060 | Loading Applet - BehancePanel_BL for InstanceID - 1
    02/06/14 10:27:13:654 | [INFO] | 74372 | ACC | BehancePanelBL |  |  | BehancePanelBL | 2060 | Initialize called: <CommandLineArguments><appletID>BehancePanel_BL</appletID><appletVersion>1.0</appletVersi on><appletInstanceID>1</appletInstanceID><appletDIR>C:\Program Files (x86)\Adobe\Adobe Creative Cloud\BehancePanel</appletDIR></CommandLineArguments>
    02/06/14 10:27:13:654 | [INFO] | 74372 | ACC | NEX | NEX |  | NEX | 2060 | Inside LoadUIApplet
    02/06/14 10:27:13:654 | [INFO] | 74372 | ACC | NEX | NEXAppletManager |  | NEX | 2060 | Loading Applet - BehancePanel_UI for WindowID - 1
    02/06/14 10:27:13:654 | [INFO] | 74372 | ACC | BehancePanelUI |  |  | BehancePanelUI | 2060 | Initialize called: <CommandLineArguments><appletID>BehancePanel_UI</appletID><appletVersion>1.0</appletVersi on><appletInstanceID>1</appletInstanceID><appletDIR>C:\Program Files (x86)\Adobe\Adobe Creative Cloud\BehancePanel</appletDIR><dpi_x>96</dpi_x><dpi_y>96</dpi_y><isHighDPI>0</isHighDPI>< /CommandLineArguments>
    02/06/14 10:27:13:654 | [INFO] | 74372 | ACC | C3PrefsCoreExt | C3PrefsMessageProcessor |  | C3PrefsCoreExt | 2060 | Inside GetLocalConfigXmlPath
    02/06/14 10:27:13:654 | [WARN] | 74372 | ACC | C3PrefsCoreExt |  |  | C3PrefsCoreExt | 2060 | Could not initialize C3Config sig file as XML data
    02/06/14 10:27:13:654 | [INFO] | 74372 | ACC | NEX | NEXAppletManager |  | NEX | 2060 | Registering Applet. Type:  ID:BehancePanel_UI  Version:1.0
    02/06/14 10:27:13:654 | [INFO] | 74372 | ACC | LocalizationManager | LocalizationManager |  | LocalizationManager | 2060 | Dictionary Path: C:\Program Files (x86)\Adobe\Adobe Creative Cloud\BehancePanel\resource\Dictionary\en_US\stringTable.zdct
    02/06/14 10:27:13:654 | [INFO] | 74372 | ACC | LocalizationManager | LocalizationManager |  | LocalizationManager | 2060 | Dictionary reading successful.
    02/06/14 10:27:13:670 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 2060 | handleCoreSyncLaunchPrefs >> client-type-prefs => V1
    02/06/14 10:27:13:670 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 2060 | Opening OOBELib session for DeviceID...
    02/06/14 10:27:14:248 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 2060 | Opened PWASession with session key - {E098E310-474F-4E32-B044-171D0CAFDD73}
    02/06/14 10:27:14:248 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 2060 | Performing getDeviceID...
    02/06/14 10:27:14:826 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 2060 | deviceID => 63EBCC41DA2EADD9BF885399170E00BB2A63E64C6D2FF21197B6CDBF765C9075
    02/06/14 10:27:14:826 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 2060 | deviceName => MBPRO-WIN8
    02/06/14 10:27:14:826 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 2060 | Closing OOBELib session : {E098E310-474F-4E32-B044-171D0CAFDD73} commit : 1
    02/06/14 10:27:14:842 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 2060 | Done closing PWASession : {E098E310-474F-4E32-B044-171D0CAFDD73}
    02/06/14 10:27:15:732 | [WARN] | 74372 | ACC | c3containerBL | MessageHandler |  | c3containerBL | 2060 | Failed in getting value for key in OPMGetValueForKey
    02/06/14 10:27:15:732 | [INFO] | 74372 | ACC | c3containerBL | SignInStateMachine |  | c3containerBL | 2060 | changeState ~> 0 - 0 - 4
    02/06/14 10:27:15:732 | [INFO] | 74372 | ACC | c3containerBL | SignInStateMachine |  | c3containerBL | 2060 | changeState ~> 0 - 1 - 4
    02/06/14 10:27:15:732 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 2060 | Opening IMSSession...
    02/06/14 10:27:15:732 | [INFO] | 74372 | ACC | c3containerBL | UserProfileData |  | c3containerBL | 2940 | Get Profile Data...
    02/06/14 10:27:15:732 | [WARN] | 74372 | ACC | c3containerBL | UserProfileData |  | c3containerBL | 2940 | User Profile Data not present!
    02/06/14 10:27:15:732 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 2940 | Event Guid generated is: '2897fa9a-9828-46f7-9147-731db8d43b25'
    02/06/14 10:27:15:748 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | Event with guid '2897fa9a-9828-46f7-9147-731db8d43b25' is being sent
    02/06/14 10:27:15:748 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | GetIEProxyInfo - No default proxy present on the user machine
    02/06/14 10:27:15:748 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | GetIEProxyInfo - Failed to get proxy for the url, error:12006
    02/06/14 10:27:15:748 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | GetIEProxyInfo - proxy Url is
    02/06/14 10:27:16:045 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 3596 | HTTP Request Status code 200.
    02/06/14 10:27:16:045 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | The http request returned HTTP_Status:0 HttpCommunicator error:0
    02/06/14 10:27:16:170 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 2060 | Done opening IMSSession, session key - {9AABC157-228C-4C1B-B7A1-8EE7888D9797}
    02/06/14 10:27:16:170 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 2060 | Invoking Register Client ID for Group
    02/06/14 10:27:16:357 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 2060 | Fetching default user profile for requested ClientID...
    02/06/14 10:27:16:357 | [INFO] | 74372 | ACC | c3containerBL | UserProfileData |  | c3containerBL | 2060 | Set Profile Data...
    02/06/14 10:27:16:357 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 2060 | Retrieved default user profile successfully
    02/06/14 10:27:16:357 | [ERROR] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 2060 | Invalid Person GUID found!
    02/06/14 10:27:16:357 | [INFO] | 74372 | ACC | c3containerBL | SignInStateMachine |  | c3containerBL | 2060 | changeState ~> 1 - 1 - 4
    02/06/14 10:27:22:421 | [INFO] | 74372 | ACC | c3containerBL | SignInStateMachine |  | c3containerBL | 3004 | changeState ~> 2 - 1 - 4
    02/06/14 10:27:22:557 | [INFO] | 74372 | ACC | c3containerBL | SignInStateMachine |  | c3containerBL | 3004 | changeState ~> 3 - 1 - 4
    02/06/14 10:27:32:057 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:27:48:025 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:28:04:104 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:28:20:074 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:28:36:044 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:28:52:014 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:29:08:093 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:29:24:063 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:29:40:031 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:29:56:001 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:30:12:080 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:30:28:042 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:30:44:002 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:30:59:762 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:31:14:831 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:31:29:896 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:31:44:974 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:32:00:047 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:32:15:139 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:32:30:223 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:32:45:299 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:33:00:379 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:33:15:453 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:33:31:098 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:33:47:068 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:34:03:036 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:34:19:006 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:34:35:085 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:34:51:053 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:35:07:023 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:35:23:101 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:35:39:071 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:35:55:041 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:36:11:011 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:36:27:095 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:36:43:065 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:36:59:037 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:37:15:000 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:37:31:083 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:37:46:862 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:38:02:049 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:38:17:534 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:38:33:065 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:38:49:040 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:39:05:012 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:39:21:089 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:39:37:058 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:39:53:018 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:40:09:098 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:40:25:065 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:40:41:037 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:40:57:007 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:41:13:087 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:41:29:052 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:41:45:022 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:42:01:102 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:42:17:057 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:42:33:029 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:42:48:481 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:43:04:031 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:43:19:298 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:43:34:582 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:43:49:725 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:44:04:848 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:44:19:921 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:44:35:095 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:44:50:543 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:45:05:560 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:45:20:812 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:45:36:019 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:45:51:474 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:46:07:013 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:46:22:790 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:46:38:017 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:46:54:091 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:47:10:050 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:47:26:016 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:47:42:094 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:47:58:063 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:48:14:033 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:48:30:003 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:48:46:074 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:49:02:044 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:49:18:015 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:49:34:095 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:49:50:062 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:50:06:032 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:50:22:003 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:50:38:054 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:50:54:018 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:51:10:085 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:51:26:058 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:51:42:028 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:51:58:002 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:52:14:081 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:52:30:051 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:52:46:021 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:53:02:100 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:53:18:016 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:53:34:089 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:53:50:061 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:54:06:030 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:54:22:000 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:54:38:080 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:54:54:014 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:55:10:087 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:55:26:044 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:55:42:017 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:55:58:097 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:56:14:067 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:56:30:028 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:56:46:104 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:57:02:074 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:57:18:041 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:57:34:011 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:57:50:091 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:58:06:061 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:58:22:033 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:58:38:104 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:58:54:075 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:59:10:038 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:59:26:009 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:59:42:094 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 10:59:58:060 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 11:00:14:031 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 11:00:30:104 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 11:00:46:077 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 11:01:02:047 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 11:01:18:013 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 11:01:34:093 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 11:01:50:061 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 11:02:06:029 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 11:02:22:001 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 11:02:38:080 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 11:02:54:032 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 11:03:04:722 | [INFO] | 74372 | ACC | c3containerBL | UserProfileData |  | c3containerBL | 2060 | Get Profile Data...
    02/06/14 11:03:04:722 | [WARN] | 74372 | ACC | c3containerBL | UserProfileData |  | c3containerBL | 2060 | User Profile Data not present!
    02/06/14 11:03:04:722 | [INFO] | 74372 | ACC | c3containerUI | UserProfileData |  | c3containerUI | 2060 | setProfileDataFromUI...
    02/06/14 11:03:04:722 | [ERROR] | 74372 | ACC | c3containerUI | UserProfileData |  | c3containerUI | 2060 | Failed while parsing response received - setProfileDataFromUI
    02/06/14 11:03:04:722 | [INFO] | 74372 | ACC | c3containerBL | UserProfileData |  | c3containerBL | 2060 | Get Profile Data...
    02/06/14 11:03:04:722 | [WARN] | 74372 | ACC | c3containerBL | UserProfileData |  | c3containerBL | 2060 | User Profile Data not present!
    02/06/14 11:03:04:722 | [INFO] | 74372 | ACC | c3containerUI | UserProfileData |  | c3containerUI | 2060 | setProfileDataFromUI...
    02/06/14 11:03:04:722 | [ERROR] | 74372 | ACC | c3containerUI | UserProfileData |  | c3containerUI | 2060 | Failed while parsing response received - setProfileDataFromUI
    02/06/14 11:03:10:004 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 11:03:16:235 | [INFO] | 74372 | ACC | c3containerBL | SignInStateMachine |  | c3containerBL | 3004 | changeState ~> 6 - 1 - 4
    02/06/14 11:03:16:235 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 3004 | Performing storeDeviceToken...
    02/06/14 11:03:16:251 | [INFO] | 74372 | ACC | c3containerBL | UserProfileData |  | c3containerBL | 1380 | Get Profile Data...
    02/06/14 11:03:16:251 | [WARN] | 74372 | ACC | c3containerBL | UserProfileData |  | c3containerBL | 1380 | User Profile Data not present!
    02/06/14 11:03:16:251 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1380 | Event Guid generated is: '56604be1-c91a-460f-be45-4c20ace5e85a'
    02/06/14 11:03:16:267 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | Event with guid '56604be1-c91a-460f-be45-4c20ace5e85a' is being sent
    02/06/14 11:03:16:267 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | GetIEProxyInfo - No default proxy present on the user machine
    02/06/14 11:03:16:267 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | GetIEProxyInfo - Failed to get proxy for the url, error:12006
    02/06/14 11:03:16:267 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | GetIEProxyInfo - proxy Url is
    02/06/14 11:03:16:532 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1336 | HTTP Request Status code 200.
    02/06/14 11:03:16:532 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | The http request returned HTTP_Status:0 HttpCommunicator error:0
    02/06/14 11:03:16:907 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 3600 | Device token saved successfully
    02/06/14 11:03:16:907 | [INFO] | 74372 | ACC | c3containerBL | UserProfileData |  | c3containerBL | 3600 | Set Profile Data...
    02/06/14 11:03:16:907 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 3600 | Retrieved user profile successfully
    02/06/14 11:03:16:907 | [INFO] | 74372 | ACC | c3containerBL | SignInStateMachine |  | c3containerBL | 3600 | Retrieved user profile successfully
    02/06/14 11:03:16:907 | [INFO] | 74372 | ACC | c3containerBL | SignInStateMachine |  | c3containerBL | 3600 | changeState ~> 8 - 1 - 4
    02/06/14 11:03:16:907 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 3600 | Fetching default user profile for requested ClientID...
    02/06/14 11:03:16:907 | [INFO] | 74372 | ACC | c3containerBL | UserProfileData |  | c3containerBL | 3600 | Set Profile Data...
    02/06/14 11:03:16:923 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 3600 | Retrieved default user profile successfully
    02/06/14 11:03:16:923 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 3600 | Performing fetchAccessToken...
    02/06/14 11:03:16:923 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 3600 | FetchAccessToken call successful, waiting for its response...
    02/06/14 11:03:16:923 | [INFO] | 74372 | ACC | c3containerBL | SignInStateMachine |  | c3containerBL | 3600 | changeState ~> 9 - 1 - 4
    02/06/14 11:03:17:611 | [INFO] | 74372 | ACC | c3containerBL | IMSLibHelper |  | c3containerBL | 1888 | fetchAccessToken successful
    02/06/14 11:03:17:611 | [INFO] | 74372 | ACC | c3containerBL | UserProfileData |  | c3containerBL | 1888 | Set Profile Data from JSON...
    02/06/14 11:03:17:611 | [INFO] | 74372 | ACC | C3PrefsCoreExt |  |  | C3PrefsCoreExt | 1888 | Inside SetPersonGuid
    02/06/14 11:03:17:611 | [INFO] | 74372 | ACC | c3containerBL | MessageHandler |  | c3containerBL | 1888 | setPersonGuidInCoreExt responseXML => Success
    02/06/14 11:03:17:611 | [INFO] | 74372 | ACC | c3containerBL | UserProfileData |  | c3containerBL | 1888 | Get Profile Data...
    02/06/14 11:03:17:611 | [INFO] | 74372 | ACC | c3containerBL | MessageHandler |  | c3containerBL | 1888 | setPersonGuidInCoreExt responseXML => TRUE
    02/06/14 11:03:17:626 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 4916 | Event Guid generated is: 'd79e4214-f6da-45fa-b2fa-8fba09650a1d'
    02/06/14 11:03:17:626 | [INFO] | 74372 | ACC | c3containerBL | UserProfileData |  | c3containerBL | 1888 | lastAcceptedEulaVersion => 0
    02/06/14 11:03:17:626 | [INFO] | 74372 | ACC | c3containerBL | UserProfileData |  | c3containerBL | 1888 | lastAcceptedEulaLocale => XXX
    02/06/14 11:03:17:642 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | Event with guid 'd79e4214-f6da-45fa-b2fa-8fba09650a1d' is being sent
    02/06/14 11:03:17:642 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | GetIEProxyInfo - No default proxy present on the user machine
    02/06/14 11:03:17:642 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | GetIEProxyInfo - Failed to get proxy for the url, error:12006
    02/06/14 11:03:17:642 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | GetIEProxyInfo - proxy Url is
    02/06/14 11:03:17:642 | [INFO] | 74372 | ACC | c3containerBL | SignInStateMachine |  | c3containerBL | 1888 | changeState ~> 13 - 0 - 4
    02/06/14 11:03:17:657 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 4780 | Event Guid generated is: '7785ae49-d201-4fcb-8845-fdc41a6d5b44'
    02/06/14 11:03:17:845 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 3732 | HTTP Request Status code 200.
    02/06/14 11:03:17:845 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | The http request returned HTTP_Status:0 HttpCommunicator error:0
    02/06/14 11:03:17:845 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | Event with guid '7785ae49-d201-4fcb-8845-fdc41a6d5b44' is being sent
    02/06/14 11:03:17:845 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | GetIEProxyInfo - No default proxy present on the user machine
    02/06/14 11:03:17:845 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | GetIEProxyInfo - Failed to get proxy for the url, error:12006
    02/06/14 11:03:17:845 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | GetIEProxyInfo - proxy Url is
    02/06/14 11:03:18:908 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1336 | HTTP Request Status code 200.
    02/06/14 11:03:18:908 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | The http request returned HTTP_Status:0 HttpCommunicator error:0
    02/06/14 11:03:26:049 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 11:03:42:015 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 11:03:58:094 | [INFO] | 74372 | ACC | c3containerBL | CoreSyncSwitcher |  | c3containerBL | 1864 | periodicCoreSyncPing >> curr-client-type => 0 ~ pingMissCount => 0
    02/06/14 11:04:12:378 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1296 | Event Guid generated is: '13b3fac8-ddc9-4053-89f3-3c95a7b33505'
    02/06/14 11:04:12:394 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | Event with guid '13b3fac8-ddc9-4053-89f3-3c95a7b33505' is being sent
    02/06/14 11:04:12:394 | [INFO] | 74372 | ACC | C3PrefsCoreExt |  |  | C3PrefsCoreExt | 3004 | Inside SetValue
    02/06/14 11:04:12:394 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | GetIEProxyInfo - No default proxy present on the user machine
    02/06/14 11:04:12:394 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | GetIEProxyInfo - Failed to get proxy for the url, error:12006
    02/06/14 11:04:12:394 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | GetIEProxyInfo - proxy Url is
    02/06/14 11:04:12:456 | [INFO] | 74372 | ACC | c3containerBL | UserProfileData |  | c3containerBL | 3004 | setLastAcceptedEULALocale responseXML => Success
    02/06/14 11:04:12:456 | [INFO] | 74372 | ACC | C3PrefsCoreExt |  |  | C3PrefsCoreExt | 3004 | Inside SetValue
    02/06/14 11:04:12:487 | [INFO] | 74372 | ACC | c3containerBL | UserProfileData |  | c3containerBL | 3004 | setLastAcceptedEULAVersion responseXML => Success
    02/06/14 11:04:12:581 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 3732 | HTTP Request Status code 200.
    02/06/14 11:04:12:581 | [INFO] |  | ACCC | Analytics | ETSFramework |  |  | 1868 | The http request returned HTTP_Status:0 HttpCommunicator error:0
    02/06/14 11:04:12:769 | [WARN] | 74372 | ACC | c3containerBL | MessageHandler |  | c3containerBL | 3004 | Failed in getting value for key in OPMGetValueForKey
    02/06/14 11:04:12:784 | [ERROR] | 74372 | ACC | C3PrefsCoreExt | ProcessMessageManager | MethodNotFound | C3PrefsCoreExt | 3004 | ProcessCommandLine message is not defined
    02/06/14 11:04:12:800 | [ERROR] | 74372 | ACC | HomePanelBL | ProcessMessageManager | MethodNotFound | HomePanelBL | 3004 | ProcessCommandLine message is not defined
    02/06/14 11:04:12:800 | [ERROR] | 74372 | ACC | FileAppsUI | ProcessMessageManager | MethodNotFound | FileAppsUI | 3004 | ProcessCommandLine message is not defined
    02/06/14 11:04:12:800 | [ERROR] | 74372 | ACC | FontsAppBL | ProcessMessageManager | MethodNotFound | FontsAppBL | 3004 | ProcessCommandLine message is not defined
    02/06/14 11:04:12:800 | [ERROR] | 74372 | ACC | BehancePanelUI | ProcessMessageManager | MethodNotFound | BehancePanelUI | 3004 | ProcessCommandLine message is not defined
    02/06/14 11:04:12:800 | [INFO] | 74372 | ACC | c3containerBL | UserContextDataHandler |  | c3containerBL | 3004 | The resolved URL for context service is https://prod-rel-ffc-ccm.oobesaas.adobe.com/adobe-ffc-external/core/v1/features?token=eyJh bGciOiJSUzI1NiIsIng1dSI6Imltc19uYTEta2V5LTEuY2VyIn0.eyJkdGlkIjoiMTM5MTcwMjU5MjkzMy00YmY3ZW Q5Yy0yOTQ3LTQ2YjEtOGI1Zi01OTZjODk5MTJjMmMiLCJzY29wZSI6Im9wZW5pZCxBZG9iZUlELGNyZWF0aXZlX2Ns b3VkIiwiYyI6Im9qNG5MV3phZ2tBbVlNV3NpVWJwL3c9PSIsInN0YXRlIjoiIiwiYXMiOiJpbXMtbmExIiwiZXhwaX Jlc19pbiI6Ijg2NDAwMDAwIiwidHlwZSI6ImFjY2Vzc190b2tlbiIsImlkIjoiMTM5MTcwMjU5NDk5Ni0xODQzYmFi NC1jMDMxLTRmMjUtYWRjMy05ZDU2OWRjMWE4OGIiLCJydGVhIjoiMTM5MTc5MjU5NDM3MyIsImNyZWF0ZWRfYXQiOi IxMzkxNzAyNTk0OTk2IiwidXNlcl9pZCI6IkRFRjA3NTk2NTA0MkQ2ODQwQTQ5MEQ0REBBZG9iZUlEIiwiY2xpZW50 X2lkIjoiQUNDQ19DUzciLCJydGlkIjoiMTM5MTcwMjU5NDM3My01ZjQyNDc2OC05ZmM1LTQ4ZDQtOTEyMC04NjQ3ZD lmZWQ2M2MifQ.pbjJnIX0YDL80lH6BKX7WUCT5A76Ml0E5EeuOjTr_21BmGMS0l0JIx6B1hhsEDpNFjjnc0sKGmlNc acpgqzqMtZU5U69CahTcJcv3yaVffOtjKsPjAgkAx_SIb2AIy2rSe-f01tHQqF77yTZ-BqptLOpvqQjSGak53cqJvj C2qWuqBd9_1eyWCZndgAkGYntjCxBSHd8k38E5q5Yfl33a6F4jTUy4JjlXO2g6DlohSOBkkvGYTd93cJVL0XC0odgb rVRpKFqcKFWya8hqapfdz8QpHwKPMHkoCIggd_BQHB6YMp9BhmSkoIPdE_r8ZWanQDecEJMCvsFeENkHiU6wQ
    02/06/14 11:04:12:909 | [INFO] | 74372 | ACC | Core | Applet |  | Core | 3884 | Loading Applet - AppsPanel_IL for InstanceID - 1
    02/06/14 11:04:12:909 | [INFO] | 74372 | ACC | ProductsAppsIL |  |  | ProductsAppsIL | 3884 | Initialize called: <CommandLineArguments><appletID>AppsPanel_IL</appletID><appletVersion>1.0</appletVersion> <appletInstanceID>1</appletInstanceID><appletDIR>C:\Program Files (x86)\Adobe\Adobe Creative Cloud\AppsPanel</appletDIR></CommandLineArguments>

    MrCFish please see Error downloading Creative Cloud applications - http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html for information on how to resolve download errors.

  • Download Error in Adobe Application Manager

    I'm trying to login and download new software with the Adobe Application Manager. After login, I get spinning squares and then a Download Error dialog box.
    If I click Retry, the squares spin for a few seconds and then the Download Error box appears. If I quit, the spinning squares start again and then the Download Error box appears.

    Hi Chahn,
    Welcome to Adobe Forum,
    I would request you to go through the Forum thread http://forums.adobe.com/message/5450382
    http://forums.adobe.com/message/5112549.
    Incase the issue does not get resolved, please contact Adobe Support http://adobe.ly/yxj0t6.
    Kind Regards,
    Rajshree

  • Adobe App Manager- Download Error

    I signed up for creative cloud a couple of hours ago... and have been trying to download apps ever since, but I can't download a single thing.  I've redownloaded and installed the application manager. I've run the CreativeSuite cleaner tool twice. Diabled firewalls. And still get "Download Error. Press Retry to try again or contact customer support." - I get this message when opening the manager directly or when clicking to download an application through the creative cloud app center.  Getting to be really frustrating.
    Is there any other way to download the programs without using the application manager??? If not and it can't get solved, I guess I have to cancel my account. :/

    Hi tisjewelphotog,
    In case like this where in even the Adobe Application Manager isnt working at all on your machine, you could try downloading a trial from Adobe.com and then activate the subscripton using your Adobe id and password during the installation .
    If the above mentioned steps doesnt work , i would request you to please create a new Admin account on your system and try doing the same in that account .
    Kartikay Sharma

  • Film download error on ipod touch

    I have tried to download a film to my son's ipod touch, but it won't download.  It says "download error.  tap to retry" - when I tap it does the same.
    How can I get it to download?  Or obtain refund from itunes?
    TIA
    Nadine

    - Try on your computer going to iTunes>Store>Check for available downloads.
    - Next try redownloading by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    - Request a refund
    Refunds from the App Store or iTunes - Apple Club

  • Download Error when Renting Movies

    Hi,
    Today I tried to Rent the Movies "Closer" and "Abandon" in HD. After pressing OK it started downloading but it never got past 0%. After a few seconds it displayed the error:
    Download Error (-50).
    The movie rental fees where charged to my account.
    I tried buying the movie and it worked just fine.
    Any help would be appreciated renting.
    Thanx,
    Art.

    Hi,
    It happened with two movies I tried to Rent. Then I puchased one of those movies and it worked fine. (Bad movie by the way... he..he..)
    I have not tried to rent any more movies after that.
    This is what customer service said:
    Dear Arturo,
    I understand you rented the movies "Cleaner" and "Abandon" from the iTunes Store but have been unable to complete the download due to error -50. I realize this may be disappointing and I will be happy to assist you.
    I have reviewed your account and see that the order containing this item is currently processing. Your request is flagged for follow-up and I will contact you once I have more information about your order. Please note that processing can take up to five business days from the date of purchase. Thank you for your patience in this matter.
    ---------------------------------

  • Download error (-3150)???

    How do you go about requesting credit on a downloading error on Apple TV??? This HD move took over 3 hours to download and errored at 90% complete. Since then, it won't resume the download...
    Thoughts??

    i had this same problem just 40 seconds ago.
    check to make sure if you have an ethernet cord running to ur atv that its fully in. mine was out just a little bit and i pushed it in and it worked again.
    hope this helps.

  • Request download monitor - Middleware

    Hi
    When i run request download and monitor it in R3AR3, i could see the increase in block size and it reaches almost the range that i specify in R3AR2. But its in RUNNING state and it doesnt get to DONE state. There are no pending queues in both CRM & ECC for this request.
    This is a new behaviour in the CRM system which was working fine before. Seems some settings has been changed. Any idea of how to set this right?
    Thanks & Regards
    Karthik

    Hi,
       U can check in BDoc messages for that date and time. Queue name would start according to the queue register such as R3AR_<Request_Object>. Almost 80% cases you can find the error here which is related to the BDoc generation and QueueScheduler related error.
    Reward points.
    Thanks,
    Sam

  • Material Request

    Dear all, Hi
    This scenario is with respect to chemical industries, where in during processing there can be RM spillage or loss during batch processing, in such case the shop floor / production will rise an additinal material request to stores for an additional qty of the material giving the reference of that particular production order and in material consumption data this qty will get added up.
    How to address this scenario, the requirement is creation of material request from production to stores.
    Thanks in advance.

    Dear Prasobh, thanks for your reply. I'm getting this error messsage when try with MB21which is very meets the requirement
    Manual reservation for order category 10 not allowed
    Message no. M7126
    Diagnosis
    You entered an order whose category only permits automatic reservations. The following order categories do not allow manual reservations:
    10 PP production order
    20 network
    30 maintenance order
    40 batch order (process manufacturing)
    50 inspection lot
    System Response
    The system does not accept your specification.
    Procedure
    Enter a different account assignment, or cancel the processing.
    If required, check whether any reservations for the specified account assignment already exist.
    I have checked for other reservations, no such reservation exists, plese suggest, thanks in advance.

  • Download error in (osx) adobe desktop app (corrupted download link).

    Here is a discription of the problem. Please consider that some of the wording might not be correct, as I do have to translate the error message from German into English.
    Using OSX 10.9.2, when clicking inside the adobe desktop app (top of the screen bar) on the tap "apps", the following screen (screenshot) appears, which states, translated from top to bottom:
    download error
    download error. Please contact support.
    (link) contact support
    (link/button) download creative cloud -> This button unfortunatly leads to the following error page "http://www.adobe.com/special/errorpages/404.html"
    All apps, like Bridge, Photoshop, Lightroom, etc. are installed and work just fine. So no problem here. I seem however unable to redownload the desktop app (in order to reinstall). As stated above the provided link inside the desktop app itself is coruppted and within the (online) web-based download centre (user logged in) I am only adviced to use the desktop app. This is a dead end and I do not know what to make of this error, let alone solving it. Please help!

    I am sorry Romsinha but this doesn't really help.
    I already restarted the desktop app and while I am obviously online and connected the problem (error message) remains the same. Information within the "home" tap is recieved/loaded  (little blue spinning wheel) stating that various apps recently have been updated. Yet the same loading wheel within the "apps" tap results in an error. My best guess is that some internal link within the app is corrupted, leading to a source on a server that can not be reached.
    UPDATE
    I clean uninstalled adobe creative cloud as discribed in the article you provided (using the cleaner tool) and even uninstalled the browser plugin. After downloading and reinstalling creative cloud the problem however remains the same. "Apps" tap still shows the same problem. "Home" tap now displays the following:

Maybe you are looking for

  • Error while deploying process in BPEL PM 10.1.3.1 "ORABPEL-04077"

    Hi, I've installed BPEL PM 10.1.3.1 and am trying to deploy a process that has been developed (and successfully deployed) with BPEL PM 10.1.2. The project can be compiled but when I deploy it to my BPEL server I get the following error (sorry for ger

  • Error in saving template and updating files

    I'm using Dw CS3 on Windows XP. I have created a template I created from another page and then created my new pages from the template. I am still working on the site so it's all on my computer - not yet uploaded to the remote site. It was working fin

  • Report on payments

    frnds i need to generate a report on payments with following details. Vendor no and name, Invoice no and amount, check#, and clerk name and PO # I tried to use table PAYR but i didnt get the information about invoice no and Clerk with PO#... is there

  • Any diffrent access for the null value between oracle 9i and 11g?

    I'v got a tmp result set by a SQL that with a group by rollup (code) clause, and the last row is the totle number and column 'code' is null. when i left out join (use (+)) the result set with the code table , in 9i,i can not get the last totle number

  • Error 1722 on Windows XP Install

    I have Windows XP Home and tried to install the Java 2 Runtime Environment (JRE) automatic and JRE manual offline. Every time the program installs it fails with a Error 1722 before it finishes. I viewed the help file and tried using the Custom option