Container hanging in mesyhead/mesybody tables - synchronous synchronization

Hi everyone,
Can someone help me with our SAP netweaver 2004s.
After synchronous synchronization with mobile application the synchronization container hangs in the mesyhead and mesybody tables.
If the device have to be reinstalled it will gain new device ID and the old devices container will hang in the tables forewer.
Why are the containers remaining in the mesy* tables after synchronous synchronization? arent they supposed to be used during asynchronous sync?
Can i delete this containers manualy? and how?
I have tried to delete old and unused device ids from the NWA using Device removal funftion, but it deletes on merep* tables not the mesy* tables.
Thanks a lot.

Thank you for the quick answer.
I have found this notes when searching on the support portal, but they are allready implemented as we are on SP15 - SAPKB70015
Also there are no dumps in the system.
Any other thoughts?
Regards,
Lukas Loskot

Similar Messages

  • Creating file containing a RecCount of the table

    I have a SP which dynamically Creates a <Table1> populate it with data.  This SP is called from the SSIS package and at the end of package I'll drop the table <Table1> created in the SP.
    But Before dropping it, I have to generate 2 files using the table created in the SP
    1. One which gives the count of that table <table1> in file ( just count and nothing in that file)
    2. A .txt file containing entire dump of that table <table1>
    I have developed a CM for txt file, which dynamically constructs the file name and path( this one I have tested working) figure 2
    figure1 :- ESQL1 Get the file and folder path details  and execute the SP -- this working
    ESQL2 Get the Name & count from the <Table1> in a package variable --This is also working
    ScriptTask to construct the full path where the files to be placed --This is also working
    Now what is failing is, I am not able to pass the name of the table from OLEDB using the variable to the flat file destination transformation.

    Hi Neil,
    If I understand correctly, you have already generate a text file that store the count of the table. Then you want to generate another file that contains all the table data in another Data Flow Task before dropping the table.
    If in this scenario, I suggest we can insert another Data Flow Task connect to the current Data Flow Task. Then directly load the table data from OLE DB Source to Flat File Destination. After the Data Flow Task, we can insert Execute SQL Task to drop the
    table.
    If you still couldn’t execute the package successfully, please post the error message from Output windows.  If there are any misunderstanding, please elaborate the issue for further investigation.
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • CMP Beans from Tables: Why does the Container try to create new tables?

    I'm trying to develop an EJB application using JDeveloper on 9iAS. I have several CMPs and have my tables that I want my CMPs to be based on already defined in my DB schema. I want to use CMP but I don't want the Container to create the tables, rather I want the Container to map my CMP EJBs to the already existing tables.
    The issue is:
    While creating these CMP EJBs in JDeveloper I chose the "New Enterprise Java Bean" EJB creation wizard using the option labeled "Container-managed Entity Beans from Tables". My assumption is that this does what I want, because the wizard prompts for a schema and table you want to map to. Then it creates the attributes & getter/setter methods, PK class, etc. all based on the table defintion automatically. Great. So why when I try to run my application do I get error messages for each EJB such as:
    Auto-creating table: create table STREET_TYPE (PK_STYP_ID NUMBER(8), STREET_TYPE VARCHAR2(20), primary key (PK_STYP_ID, STREET_TYPE))
    Warning: Error creating table: ORA-00955: name is already used by an existing object
    Huh?? I thought the idea is that the CMP EJB is mapped to the existing table in my schema. Why is the Container trying to create new tables?? Is this possible? Or am I missing something fundamental about how Containers create and manage CMPs? Or is this just a JDevelop container issue? TIA

    I presume you are getting the problem on application
    deploy? This happens when upon initialization of the application using the built-in OC4J container/app server that is part of JDeveloper. Here is the full messaging:
    [Starting OC4J using the following ports: HTTP=8989, RMI=23892, JMS=9228.]
    C:\OraHome1\jdk\bin\javaw.exe -ojvm -classpath C:\OraHome1\j2ee\home\oc4j.jar com.evermind.server.OC4JServer -config C:\OraHome1\jdev\system\oc4j-config\server.xml
    [waiting for the server to complete its initialization...]
    Copying default deployment descriptor from archive at Q:\CBTCOF\COF_APPLICATION\COF_Project\classes/META-INF/orion-ejb-jar.xml to deployment directory C:\OraHome1\jdev\system\oc4j-config\application-deployments\current-workspace-app\classes...
    Auto-deploying file:/Q:/CBTCOF/COF_APPLICATION/COF_Project/classes/ (No previous deployment found)...
    Auto-creating table: create table STREET_TYPE (PK_STYP_ID NUMBER(8), STREET_TYPE VARCHAR2(20), primary key (PK_STYP_ID, STREET_TYPE))
    Warning: Error creating table: ORA-00955: name is already used by an existing object
    [...OTHER SIMILAR ERROR MESSAGES]
    done.
    Oracle9iAS (9.0.2.0.0) Containers for J2EE initialized
    If so, in the application.xml file of you
    OC4J instance the is a setting autocreate-tables,
    which by default is true!
    Set it to false as below and that should clear up
    your problem.
    <orion-application autocreate-tables="false"
    default-data-Hmm. I found at least a dozen or so files with that name and set everyone that had this attriute to "false", restarted the OC4J server and still got these errors.

  • View Container UI element in a table popin dynamically

    Hello people,
    I create a WD Table dynamically using the runtime class. I also create the table popin and then I set it in the table using the method SET_POPIN from the runtime class.
    Now my requirement is that I should be able to add the 'View Container UI Element' into this popin so that I can embed any other views into this VC UI E. I cannot find a way in which I can achieve this. I am able to do it statically but not dynamically.
    Even though it is suggested that such a design would lead to performance issues, but I have to achieve this.
    Regards
    Rohan

    Hi Anita,
    you cannot set metadata at element level of a node. When you set the metadata ( example mime type or file name ) for a particular element in the node , it changes for all the element. So you are always getting the file for the last row. ( most recent set metadata ).
    Try using the inteface IWDCachedWebResource for file download.
    For each row add a button, and associate an action "DownloadFile" for it. Use the following "onAction" for the said action. 
    public void onActionDownloadFile(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionDownloadFile(ServerEvent)
        int selectedIndex = wdContext.nodeFileTab().getLeadSelection();
        IPrivateView_pdfView.IFileTabElement file = wdContext.nodeFileTab().getFileTabElementAt(selectedIndex);
        try {
         IWDCachedWebResource webResource = WDWebResource.getWebResource(
              this.
              getByteArrayFromResourcePath("/sapmnt/PCD/global/config/cm/etc/pdf/"+
              wdContext.nodeFileTab().getFileTabElementAt().getFilename(selectedIndex),
              WDWebResourceType.PDF);
         wdComponentAPI.getWindowManager().createExternalWindow(webResource.getURL(),"Download File",true).open();
       catch(Exception e) {
         // take some action
         wdComponentAPI.getMessageManager().reportException(e.toString(),true);
        //@@end
    Hope you get a solution.
    Regards
    KK.

  • Errors in the high-level relational engine. The data source view does not contain a definition for the table or view. The Source property may not have been set.

    Hi All,
    I have a cube in which i'm using the TIME DIM that i created in the warehouse. But now i wanted a new measure in the cube which is Average over time and when i wanted to created the new measure i got a message that no time dim was defined, so i created a
    new time dimension in the SSAS using wizard. But when i tried to process the new time dimension i'm getting the follwoing error message
    "Errors in the high-level relational engine. The data source view does not contain a definition for "SSASTIMEDIM" the table or view. The Source property may not have been set."
    Can anyone please tell me why i cannot create a new measure average over the time using my time dimension? Also what am i doing wrong with the SSASTIMEDIM, that i'm getting the error.
    Thanks

    Hi PMunshi,
    According to your description, you get the above error when processing the time dimension. Right?
    In this scenario, since you have updated the DSV, it should have no problem on the table existence. One possibility is that table has been specified for tracking in the notifications for proactive caching, but isn't available any more for some
    reason. Please change the setting in Proactive Caching into "MOLAP".
    Reference:
    How To Implement Proactive Caching in SQL Server Analysis Services SSAS
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou
    TechNet Community Support

  • Create infopath form contain all records of particular table

    Hi,
    It has resolved my above issue.
    I want to create one sharepoint list connected with database and when i click on add new item, it should display infopath form. 
    I am able to show infopath form on click of 'Add new item' but sharepoint list not containing all records of that particular table.So how can i get all the records of my table.It is possible using external list. But in that case, can i show infopath form?
    Please suggest.
    Please help to solve the issue.
    Thanks & Regards
    Rajni

    Hi Stark,
    Thanks for your response.
    Actually here i am talking about rows in the particular table.
    I want to show all rows in sharepoint list.
    So,is it possible in sharepoint?
    Please guide.
    Thanks in advance!
    Regards
    Rajni

  • API (interface tables) to synchronize Oracle EBS and outsourced functions?

    Hi,
    Our company is outsourcing the inventory and shipping functions. Now we'll need to synchronize the Oracle EBS with actual shipment data. We have've to use the APIs and keep Oracle tables in sync with the legacy system.
    Which API we can use for Pick Confirm, when we have to do WMS and LPN handling? Or is there some other way (like interface tables) to take care of this issue?
    APIs should be supported with our EBS version 11.5.9. EBS version upgrade is not possible for us now. We'll need info how to implement above issue asap.
    BR Mervi Malmi

    Hi;
    All APIs are listed in Oracle Integration Repository
    http://irep.oracle.com/index.html
    API User Notes - HTML Format [ID 236937.1]
    R12.0.[3-4] : Oracle Install Base Api / Open Interface Setup Test [ID 427566.1]
    Oracle Trading Community Architecture API User Notes, June 2003 [ID 241320.1]
    Technical Uses of Customer Interface and TCA-API [ID 269121.1]
    Pelase also check below:
    Api's in EBS
    Re: Api's in EBS
    http://sairamgoudmalla.blogspot.com/2009/05/script-to-find-oracle-apis-for-any.html
    API
    Fixed Asset API
    List of API
    Re: List of APIs
    Oracle Common Application Components API Reference Guide
    download.oracle.com/docs/cd/B25284_01/current/acrobat/jta115api.pdf
    List of APIs and open interface R12
    Re: List of APIs and open interface R12
    Regard
    Helios

  • Can a block in Oracle contain rows/data from multiple tables?

    Hi during my discussion with one of the DBAs, a point came up i.e. A block shouldn't have rows from multiple tables...
    Is that true? I read in one of the OTN thread (i don't exactly remember the thread name) that a block can have data from multiple tables. If it doesn't have, what's the table directory in block signifies?
    Please share your views.
    Thanks,
    CSM

    CSM.DBA wrote:
    Hi,
    As per the above link,
    Table directory
    For a heap-organized table, this directory contains metadata about tables whose rows are stored in this block. Multiple tables can store rows in the same block. (Logical Storage Structures)
    And by default Oracle creates heap organized tables only.(heap-organized table: A table in which the data rows are stored in no particular order on disk. By default, CREATE TABLE creates a heap-organized table.) (Glossary)
    So I can say a block can contain rows from multiple tables. Isn't it?
    CSM
    See Logical Storage Structures
    Given:  A segment is a set of extents allocated for a specific database object, such as a table.
    Given:  An extent is a set of logically contiguous data blocks

  • Condition customizing  - exclusion tables synchronizing

    Hello ,
    I want to initialy download condition exclusion tables from ERP to CRM , I added exclusion tables :T684 ,T684G,T684S , T684T
    to my condition customizing object, all monitors are green but CRM tables are still empty,
    How can I download those tables?
    Thank you

    Hi Rika,
    I think there is a standard adapter object avaialble for this. In CRM go to transaction SE16, put table name SMOFTABLES, here you will find a field R3TABNAME.
    Put the R/3 tables names in this selection criteria and execute. You will come to know the standard Adapter object name.
    Wish this helps.
    Regards,
    Shalini Chauhan

  • Identical tables - synchronous capture

    i have an enterprise edition DB (11.2.0.3) that needs to be kept in sync with a standard edition DB (11.2.0.3). About twenty tables need replicating - they are not volatile, so the general daily traffic will not be high.
    I need the tables on both DBs to be IDENTICAL - rows will be updated and not just inserted/deleted.
    This raises a question about how the DESTINATION table is to be populated. Do replicated tables have to have primary keys ? And if they don't, how do updates work - what is the procedure that maps the ROWIDs from the source DB to the destination DB ?
    johnnie

    Hi Johnnie,
    To keep the replicated tables in sync, there should be primary key define on source and target DB.
    In the absence of the PKs , a substitute key needs to be defined using SET_KEY_COLUMNS procedure of DBMS_APPLY_ADM. A substitute key is a column or set of columns that Oracle can use to identify uniquely rows in the table. This will enable APPLY to identify the row and apply the changes When using SET_KEY_COLUMNS be sure to list ALL of the key columns, in order, in the column list. Do not specify each column in a separate call to SET_KEY_COLUMNS
    EXECUTE DBMS_APPLY_ADM.SET_KEY_COLUMNS('<owner>.<table_name>','<col1>,<col2>,....');
    EXEC DBMS_APPLY_ADM.START_APPLY('<applyname>');
    Thanks,
    Reena

  • PDF Creation hangs at "building font table"

    When printing the current page of a multipe page document, it takes at least two minutes to make the pdf... if it makes it that far.  Sometimes the print will fail with the messages:
    %%[ Error: undefined: OffendingCommand: t, ]%%
    %%[ Flushing: rest of job (to end-of-file) will be ignored ] %%
    %%[ warning: PostScript error. No PDF file produced. ] %%
    However, if it does succeed in creating the PDF, following documents will usually work fine (for awhile).
    Does anyone have a fix for this?
    P.S. I found a reference to a post from Tim Kroehler about "font creation being too slow", but I could not find that post to see if it would help.

    This sounds very familiar.
    Various versions of Java have over the years installed faces of the Lucida font family
    in the C:\Program Files (x86)\Java\jre7\lib\fonts
    (or similar depending upon the OS and Java version) directory.
    Java 7.x seems to have only the Lucida Sans Regular font in that directory.
    Other applications install as part of their own directories various other Java libraries also with a fonts directory with up to eight different faces of Lucida. In those which I find on my system, all the fonts have “restricted embedding.”
    And those fonts installed by Java were set for “restricted embedding.” No PDF production program should ever allow such fonts to be embedded due to the licensing thereof. We at Adobe won't comment further on what Nitro may or may not be doing legally!!! 
    Various font vendors do license various faces of the Lucida family that do allow embedding. In fact some of them are bundled with Windows and/or Office although Lucida Sans Bold  doesn't appear to be one of those.
              - Dov

  • I am so frustrated with mail.  It keeps hanging and it's not synchronized across all my devices.  Is there a better app?

    Am I the only one having such a frustrating time with mail?  I'm working along and suddenly if just stops responding.  If I wait long enough, it will come back to life, but who wants to work through 100 emails, that way?  Also, it is not always synchornized across my devices.  I forward all my accounts to icloud.

    Or this.  Same issue...
    8/16/14 6:30:31.000 AM kernel[0]: vm_compressor_record_warmup (92411 - 95310)
    8/16/14 6:30:31.000 AM kernel[0]: vm_compressor_flush - starting
    8/16/14 6:30:31.000 AM kernel[0]: IOPPF: Sent cpu-plimit-notification last value 13 (rounded time weighted average 13)
    8/16/14 6:30:31.000 AM kernel[0]: IOPPF: Sent gpu-external-plimit-notification last value 3 (rounded time weighted average 0)
    8/16/14 6:30:31.000 AM kernel[0]: IOPPF: Sent gpu-internal-plimit-notification last value 3 (rounded time weighted average 0)
    8/16/14 6:30:31.000 AM kernel[0]: vm_compressor_flush completed - took 7270 msecs
    8/16/14 6:30:31.000 AM kernel[0]: hibernate_flush_memory: buffer_cache_gc freed up 39613 wired pages
    8/16/14 6:30:31.000 AM kernel[0]: hibernate_alloc_pages act 190836, inact 69256, anon 5824, throt 0, spec 675356, wire 384349, wireinit 258882
    8/16/14 6:30:31.000 AM kernel[0]: hibernate_setup(0) took 9056 ms
    8/16/14 6:30:31.000 AM kernel[0]: Bluetooth -- LE is supported - Disable LE meta event
    8/16/14 6:30:31.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x1800 ****
    8/15/14 8:55:59.000 PM kernel[0]: AppleThunderboltNHIType2::waitForOk2Go2Sx - retries = 3
    8/16/14 6:30:31.000 AM kernel[0]: hibernate_page_list_setall(preflight 0) start 0xffffff825be04000, 0xffffff825c008000
    8/16/14 6:30:31.000 AM kernel[0]: hibernate_teardown started
    8/16/14 6:30:31.000 AM kernel[0]: hibernate_teardown: wired_pages 390332, free_pages 3730502, active_pages 40000, inactive_pages 0, speculative_pages 0, cleaned_pages 0, compressor_pages 116
    8/16/14 6:30:31.000 AM kernel[0]: hibernate_teardown_pmap_structs done: last_valid_compact_indx 231361
    8/16/14 6:30:31.000 AM kernel[0]: hibernate_teardown: mark_as_unneeded_pages 8192, 63599, 34523
    8/16/14 6:30:31.000 AM kernel[0]: hibernate_teardown completed - discarded 106314
    8/16/14 6:30:31.000 AM kernel[0]: hibernate_page_list_setall time: 1914 ms
    8/16/14 6:30:31.000 AM kernel[0]: pages 1195966, wire 260402, act 40000, inact 0, cleaned 0 spec 0, zf 0, throt 0, compr 116, xpmapped 40000
    8/16/14 6:30:31.000 AM kernel[0]: did discard act 111749 inact 67112 purgeable 41231 spec 675356 cleaned 0
    8/16/14 6:30:31.000 AM kernel[0]: WARNING: hibernate_page_list_setall skipped 30980 xpmapped pages
    8/16/14 6:30:31.000 AM kernel[0]: hibernate_page_list_setall found pageCount 300518
    8/16/14 6:30:31.000 AM kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    8/16/14 6:30:31.000 AM kernel[0]: IOHibernatePollerOpen(0)
    8/16/14 6:30:31.000 AM kernel[0]: encryptStart 14020
    8/16/14 6:30:31.000 AM kernel[0]: bitmap_size 0x7f4dc, previewSize 0x3c0de8, writing 299222 pages @ 0x4542e4
    8/16/14 6:30:31.000 AM kernel[0]: hibernate_rebuild started
    8/16/14 6:30:31.000 AM kernel[0]: hibernate_rebuild_pmap_structs done: last_valid_compact_indx 231361
    8/16/14 6:30:31.000 AM kernel[0]: hibernate_rebuild completed - took 99 msecs
    8/16/14 6:30:31.000 AM kernel[0]: booter start at 1286 ms smc 0 ms, [14, 0, 0] total 659 ms, dsply 0, 0 ms, tramp 836 ms
    8/16/14 6:30:31.000 AM kernel[0]: hibernate_machine_init: state 2, image pages 260199, sum was f7cd5995, imageSize 0x1cade000, image1Size 0x13932000, conflictCount 2102, nextFree 1b56
    8/16/14 6:30:31.000 AM kernel[0]: hibernate_newruntime_map time: 0 ms, IOHibernatePollerOpen(), ml_get_interrupts_enabled 0
    8/16/14 6:30:31.000 AM kernel[0]: IOHibernatePollerOpen(0) 19 ms
    8/16/14 6:30:31.000 AM kernel[0]: hibernate_machine_init reading
    8/16/14 6:30:31.000 AM kernel[0]: PMStats: Hibernate read took 338 ms
    8/16/14 6:30:31.000 AM kernel[0]: hibernate_machine_init pagesDone 300315 sum2 73b72c56, time: 338 ms, disk(0x20000) 456 Mb/s, comp bytes: 61476864 time: 61 ms 952 Mb/s, crypt bytes: 152748032 time: 65 ms 2231 Mb/s
    8/16/14 6:30:31.000 AM kernel[0]: Wake reason: EC.LidOpen (User)
    8/16/14 6:30:31.230 AM mDNSResponder[72]: mDNSLogDNSSECStatistics: unicast is zero
    8/16/14 6:30:31.000 AM kernel[0]: vm_compressor_fastwake_warmup (92411 - 95310) - starting
    8/16/14 6:30:31.000 AM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    8/16/14 6:30:31.000 AM kernel[0]: Previous Sleep Cause: 5
    8/16/14 6:30:31.000 AM kernel[0]: Previous Shutdown Cause: 5
    8/16/14 6:30:31.000 AM kernel[0]: IOPPF: Sent cpu-plimit-notification last value 0 (rounded time weighted average 0)
    8/16/14 6:30:31.000 AM kernel[0]: IOPPF: Sent gpu-external-plimit-notification last value 0 (rounded time weighted average 0)
    8/16/14 6:30:31.000 AM kernel[0]: IOPPF: Sent gpu-internal-plimit-notification last value 0 (rounded time weighted average 0)
    8/16/14 6:30:31.000 AM kernel[0]: AppleThunderboltNHI::prePCIWake - power up complete - took 0 us
    8/16/14 6:30:31.000 AM kernel[0]: AppleThunderboltHAL::earlyWake - complete - took 5 milliseconds
    8/16/14 6:30:31.000 AM kernel[0]: IOThunderboltSwitch<0xffffff804409e800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    8/16/14 6:30:31.000 AM kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    8/16/14 6:30:31.000 AM kernel[0]: TBT W (2): 0x0100 [x]
    8/16/14 6:30:31.000 AM kernel[0]: IOThunderboltSwitch<0xffffff804409e800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    8/16/14 6:30:32.013 AM WindowServer[98]: CGXDisplayDidWakeNotification [199201268336960]: posting kCGSDisplayDidWake
    8/16/14 6:30:32.015 AM WindowServer[98]: handle_will_sleep_auth_and_shield_windows: NULL shield_window (lock state: 1)
    8/16/14 6:30:32.000 AM kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    8/16/14 6:30:32.000 AM kernel[0]: IOBluetoothUSBDFU::probe
    8/16/14 6:30:32.000 AM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8286 FirmwareVersion - 0x0131
    8/16/14 6:30:32.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xf000 ****
    8/16/14 6:30:32.000 AM kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xf000 ****
    8/16/14 6:30:32.000 AM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xf000
    8/16/14 6:30:32.000 AM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    8/16/14 6:30:32.000 AM kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x37c0 -- 0x4000 -- 0xf000 ****
    8/16/14 6:30:32.510 AM SystemUIServer[186]: Menu Extra: <DisplaysExtra: 0x7f881257cb00> is over retained.
    8/16/14 6:30:32.000 AM kernel[0]: AppleUSBEthernetHost::powerStateChangeOccurred: intf is not enabled, ignoring ...  st: 0
    8/16/14 6:30:32.892 AM iTunes[1248]: Entered:_AMMuxedVersion2DeviceConnected, mux-device:2
    8/16/14 6:30:32.925 AM iTunes[1248]: tid:2a407 - unable to query device capabilities
    8/16/14 6:30:32.939 AM com.apple.launchd[1]: (com.apple.aslmanager) Throttling respawn: Will start in 9 seconds
    8/16/14 6:30:33.106 AM UserEventAgent[176]: add service for iPhone USB
    8/16/14 6:30:33.165 AM configd[17]: network changed.
    8/16/14 6:30:33.000 AM kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    8/16/14 6:30:33.230 AM digest-service[31431]: label: default
    8/16/14 6:30:33.230 AM digest-service[31431]: dbname: od:/Local/Default
    8/16/14 6:30:33.230 AM digest-service[31431]: mkey_file: /var/db/krb5kdc/m-key
    8/16/14 6:30:33.230 AM digest-service[31431]: acl_file: /var/db/krb5kdc/kadmind.acl
    8/16/14 6:30:33.270 AM digest-service[31431]: digest-request: uid=0
    8/16/14 6:30:33.409 AM digest-service[31431]: digest-request: netr probe 1
    8/16/14 6:30:33.416 AM digest-service[31431]: digest-request: init request
    8/16/14 6:30:33.426 AM AirPlayUIAgent[445]: 2014-08-16 06:30:33.426445 AM [AirPlayUIAgent] Changed PIN pairing: no
    8/16/14 6:30:33.525 AM AirPlayUIAgent[445]: 2014-08-16 06:30:33.524785 AM [AirPlayUIAgent] Changed PIN pairing: no
    8/16/14 6:30:33.573 AM digest-service[31431]: digest-request: init return domain: OBGYN server: TAEBY indomain was: <NULL>
    8/16/14 6:30:33.628 AM digest-service[31431]: digest-request: uid=0
    8/16/14 6:30:33.628 AM digest-service[31431]: digest-request: init request
    8/16/14 6:30:33.631 AM digest-service[31431]: digest-request: init return domain: OBGYN server: TAEBY indomain was: <NULL>
    8/16/14 6:30:36.000 AM kernel[0]: MacAuthEvent en0   Auth result for: 00:0c:e6:0a:c9:7e  MAC AUTH succeeded
    8/16/14 6:30:36.000 AM kernel[0]: MacAuthEvent en0   Auth result for: 00:0c:e6:0a:c9:7e Unsolicited  Auth
    8/16/14 6:30:36.000 AM kernel[0]: MacAuthEvent en0   Auth result for: 00:0c:e6:0a:c9:7e Unsolicited  Auth
    8/16/14 6:30:36.000 AM kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    8/16/14 6:30:36.000 AM kernel[0]: AirPort: Link Up on en0
    8/16/14 6:30:36.000 AM kernel[0]: en0: BSSID changed to 00:0c:e6:0a:c9:7e
    8/16/14 6:30:36.242 AM configd[17]: network changed: v4(en6+:172.20.10.4) DNS+ Proxy+ SMB
    8/16/14 6:30:36.000 AM kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    8/16/14 6:30:37.104 AM Calendar[30162]: [com.apple.calendar.ui.log] [An error exists on principal: [Google]]
    8/16/14 6:30:37.106 AM Calendar[30162]: [com.apple.calendar.ui.log] [An error exists on principal: [iCloud]]
    8/16/14 6:30:37.107 AM Calendar[30162]: [com.apple.calendar.ui.log] [An error exists on principal: [http://www.amion.com/cgi-bin/ocs?Vcal=7.83&Lo=UHobgyn&Jd=5340]]
    8/16/14 6:30:37.108 AM Calendar[30162]: [com.apple.calendar.ui.log] [An error exists on principal: [Holidays in United States]]
    8/16/14 6:30:37.535 AM sandboxd[120]: ([31433]) rpcsvchost(31433) deny file-read-data /private/var/root/Library/Preferences/ByHost/.GlobalPreferences.81946777-84F4-5 99B-858A-BD10EB594941.plist
    8/16/14 6:30:37.568 AM airportd[95]: _doAutoJoin: Already associated to “Boingo Hotspot”. Bailing on auto-join.
    8/16/14 6:30:37.913 AM sandboxd[120]: ([31433]) rpcsvchost(31433) deny file-read-data /private/var/root/Library/Preferences/.GlobalPreferences.plist
    8/16/14 6:30:38.057 AM Skype[6816]: Failed to create AccessSession
    8/16/14 6:30:40.000 AM kernel[0]: vm_compressor_fastwake_warmup completed - took 12838 msecs
    8/16/14 6:30:41.509 AM apsd[93]: Unrecognized leaf certificate
    8/16/14 6:30:41.734 AM configd[17]: network changed: v4(en6:172.20.10.4) DNS* Proxy SMB
    8/16/14 6:30:41.743 AM UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en0: SSID 'Boingo Hotspot' not making interface primary (no cache entry)
    8/16/14 6:30:41.744 AM UserEventAgent[11]: Captive: CNPluginHandler en0: Evaluating
    8/16/14 6:30:41.764 AM UserEventAgent[11]: Captive: en0: Probing 'Boingo Hotspot'
    8/16/14 6:30:41.781 AM Calendar[30162]: [com.apple.calendar.ui.log] [An error exists on principal: [Google]]
    8/16/14 6:30:41.782 AM Calendar[30162]: [com.apple.calendar.ui.log] [An error exists on principal: [http://www.amion.com/cgi-bin/ocs?Vcal=7.83&Lo=UHobgyn&Jd=5340]]
    8/16/14 6:30:41.782 AM Calendar[30162]: [com.apple.calendar.ui.log] [An error exists on principal: [Holidays in United States]]
    8/16/14 6:30:41.872 AM UserEventAgent[11]: Captive: CNPluginHandler en0: Authenticated
    8/16/14 6:30:41.878 AM configd[17]: network changed: v4(en0!:10.1.2.26, en6) DNS! Proxy SMB+
    8/16/14 6:30:42.211 AM Skype[6816]: Failed to create AccessSession
    8/16/14 6:30:43.000 AM kernel[0]: pci pause: SDXC
    8/16/14 6:30:43.256 AM Skype[6816]: Failed to create AccessSession
    8/16/14 6:30:45.742 AM apsd[93]: Unrecognized leaf certificate
    8/16/14 6:30:45.959 AM Calendar[30162]: [com.apple.calendar.ui.log] [An error exists on principal: [http://www.amion.com/cgi-bin/ocs?Vcal=7.83&Lo=UHobgyn&Jd=5340]]
    8/16/14 6:30:45.960 AM Calendar[30162]: [com.apple.calendar.ui.log] [An error exists on principal: [Holidays in United States]]
    8/16/14 6:30:46.031 AM CalendarAgent[220]: NSURLConnection/CFURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9843)
    8/16/14 6:30:46.057 AM CalendarAgent[220]: [com.apple.calendar.store.log.caldav.queue] [Got error on refresh, but not rectifying principal because it was manually configured: Error Domain=NSURLErrorDomain Code=-1202 "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “www.google.com” which could put your confidential information at risk." UserInfo=0x7fb7759c38e0 {NSURLErrorFailingURLPeerTrustErrorKey=<SecTrust 0x7fb77a260f90 [0x7fff7a90af00]>, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, NSUnderlyingError=0x7fb77afaf5f0 "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “www.google.com” which could put your confidential information at risk.", NSErrorPeerCertificateChainKey=(
        "<SecCertificate 0x7fb77a27af70 [0x7fff7a90af00]>",
        "<SecCertificate 0x7fb77a2385f0 [0x7fff7a90af00]>",
        "<SecCertificate 0x7fb77a2745b0 [0x7fff7a90af00]>"
    ), NSLocalizedDescription=The certificate for this server is invalid. You might be connecting to a server that is pretending to be “www.google.com” which could put your confidential information at risk., NSErrorFailingURLKey=https://docaeby%[email protected]/calendar/dav/docaeby%40gmail.com/user ///docaeby%[email protected]/calendar/dav/docaeby%40gmail.com/user/, NSErrorFailingURLStringKey=https://docaeby%[email protected]/calendar/dav/docaeby%40gmail.com/user ///docaeby%[email protected]/calendar/dav/docaeby%40gmail.com/user/, NSErrorClientCertificateStateKey=0}]
    8/16/14 6:30:46.080 AM AirPlayUIAgent[445]: 2014-08-16 06:30:46.080224 AM [AirPlayUIAgent] Changed PIN pairing: no
    8/16/14 6:30:46.093 AM AirPlayUIAgent[445]: 2014-08-16 06:30:46.093363 AM [AirPlayUIAgent] Changed PIN pairing: no
    8/16/14 6:30:46.220 AM CalendarAgent[220]: [com.apple.calendar.store.log.caldav.queue] [Account refresh failed with error: Error Domain=NSURLErrorDomain Code=-1202 "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “www.google.com” which could put your confidential information at risk." UserInfo=0x7fb775f96e80 {NSURLErrorFailingURLPeerTrustErrorKey=<SecTrust 0x7fb77a260f90 [0x7fff7a90af00]>, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, CalDAVErrFromRefresh=YES, NSUnderlyingError=0x7fb77afaf5f0 "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “www.google.com” which could put your confidential information at risk.", NSErrorPeerCertificateChainKey=(
        "<SecCertificate 0x7fb77a27af70 [0x7fff7a90af00]>",
        "<SecCertificate 0x7fb77a2385f0 [0x7fff7a90af00]>",
        "<SecCertificate 0x7fb77a2745b0 [0x7fff7a90af00]>"
    ), NSErrorFailingURLStringKey=https://docaeby%[email protected]/calendar/dav/docaeby%40gmail.com/user ///docaeby%[email protected]/calendar/dav/docaeby%40gmail.com/user/, NSLocalizedDescription=The certificate for this server is invalid. You might be connecting to a server that is pretending to be “www.google.com” which could put your confidential information at risk., NSErrorClientCertificateStateKey=0, NSErrorFailingURLKey=https://docaeby%[email protected]/calendar/dav/docaeby%40gmail.com/user ///docaeby%[email protected]/calendar/dav/docaeby%40gmail.com/user/, AccountName=Google}]
    8/16/14 6:30:46.249 AM CalendarAgent[220]: [com.apple.calendar.store.log.caldav.queue] [Adding [<CalDAVAccountRefreshQueueableOperation: 0x7fb773ceb5d0; Sequence: 0>] to failed operations.]
    8/16/14 6:30:46.314 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [ICS Error for file: <html>
    <head>
    <title>Boingo | The Worldwide Leader in Wi-Fi Software and Services</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="expires" content="-1">
    <meta http-equiv="refresh" content="0; url=https://hotspot.boingohotspot.net/login?dst=http%3A%2F%2Fwww.amion.com%2Fcgi-bin %2Focs%3FVcal%3D7.83%26Lo%3DUHobgyn%26Jd%3D5340">
    </head>
    <!--
    <?xml version="1.0" encoding="UTF-8"?>
      <WISPAccessGatewayParam
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:noNamespaceSchemaLocation="http://hotspot.boingohotspot.net/xml/WISPAccessGatewayParam.xsd">
        <Redirect>
      <AccessProcedure>1.0</AccessProcedure>
      <AccessLocation>ccg_den-hsgw1</AccessLocation>
      <LocationName>BOINGO:US, US-Denver International Airport - US</LocationName>
      <LoginURL>https://hotspot.boingohotspot.net/login?dst=http%3A%2F%2Fwww.amion.com%2Fcgi-bin %2Focs%3FVcal%3D7.83%26Lo%3DUHobgyn%26Jd%3D5340</LoginURL>
      <MessageType>100</MessageType>
      <ResponseCode>0</ResponseCode>
        </Redirect>
      </WISPAccessGatewayParam>
    -->
    <body>
    </body>
    </html>]
    8/16/14 6:30:46.329 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [ICS Error for file: <html>
    <head>
    <title>Boingo | The Worldwide Leader in Wi-Fi Software and Services</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="expires" content="-1">
    <meta http-equiv="refresh" content="0; url=https://hotspot.boingohotspot.net/login?dst=http%3A%2F%2Fical.mac.com%2Fical%2FU S32Holidays.ics">
    </head>
    <!--
    <?xml version="1.0" encoding="UTF-8"?>
      <WISPAccessGatewayParam
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:noNamespaceSchemaLocation="http://hotspot.boingohotspot.net/xml/WISPAccessGatewayParam.xsd">
        <Redirect>
      <AccessProcedure>1.0</AccessProcedure>
      <AccessLocation>ccg_den-hsgw1</AccessLocation>
      <LocationName>BOINGO:US, US-Denver International Airport - US</LocationName>
      <LoginURL>https://hotspot.boingohotspot.net/login?dst=http%3A%2F%2Fical.mac.com%2Fical%2FU S32Holidays.ics</LoginURL>
      <MessageType>100</MessageType>
      <ResponseCode>0</ResponseCode>
        </Redirect>
      </WISPAccessGatewayParam>
    -->
    <body>
    </body>
    </html>]
    8/16/14 6:30:46.329 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [Invalid char ï for PropertyName.
    Parsed token:()
    Cursor:(0)]
    8/16/14 6:30:46.329 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [Invalid char » for PropertyName.
    Parsed token:()
    Cursor:(1)]
    8/16/14 6:30:46.329 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [Invalid char ¿ for PropertyName.
    Parsed token:()
    Cursor:(2)]
    8/16/14 6:30:46.330 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [Invalid char < for PropertyName.
    Parsed token:()
    Cursor:(3)]
    8/16/14 6:30:46.330 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [Hit Max ICS log messages for file! (200)]
    8/16/14 6:30:46.330 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [Invalid char > for PropertyName.
    Parsed token:(html)
    Cursor:(8)]
    8/16/14 6:30:46.330 AM CalendarAgent[220]: [com.apple.calendar.store.log.subscription] [Failed to refresh <CalManagedSubscriptionInfo: 0x7fb775f962d0> (entity: SubscriptionInfo; id: 0xc0012b <x-coredata://67DDA8BB-69D2-4A1E-8121-A2B127E6E5C3/SubscriptionInfo/p3> ; data: {
        calendar = "0x340010b <x-coredata://67DDA8BB-69D2-4A1E-8121-A2B127E6E5C3/CalDAVSubscribedCalendar/p13 >";
        hasAlarmFilter = 0;
        hasAttachmentFilter = 0;
        hasTaskFilter = 0;
        isAutoProvisioned = 0;
        isAutoRefreshed = 0;
        languageCode = nil;
        lastError = "0x4d340022b <x-coredata://67DDA8BB-69D2-4A1E-8121-A2B127E6E5C3/SubscriptionError/p4941>";
        locationCode = nil;
        needsRefresh = 0;
        refreshDate = "2014-08-16 04:07:44 +0000";
        refreshInterval = 0;
        subscriptionID = nil;
        subscriptionNotes = nil;
        subscriptionTitle = "US Holidays";
        subscriptionURL = "(...not nil..)";
        subscriptionURLString = "webcal://ical.mac.com/ical/US32Holidays.ics";
    }) with error Error Domain=CalSubscriptionErrorDomain Code=-1001 "The operation couldn’t be completed. (CalSubscriptionErrorDomain error -1001.)"]
    8/16/14 6:30:46.331 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [Invalid char ï for PropertyName.
    Parsed token:()
    Cursor:(0)]
    8/16/14 6:30:46.332 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [Invalid char » for PropertyName.
    Parsed token:()
    Cursor:(1)]
    8/16/14 6:30:46.333 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [Invalid char ¿ for PropertyName.
    Parsed token:()
    Cursor:(2)]
    8/16/14 6:30:46.333 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [Invalid char < for PropertyName.
    Parsed token:()
    Cursor:(3)]
    8/16/14 6:30:46.333 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [Hit Max ICS log messages for file! (200)]
    8/16/14 6:30:46.334 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [Invalid char > for PropertyName.
    Parsed token:(html)
    Cursor:(8)]
    8/16/14 6:30:46.334 AM CalendarAgent[220]: [com.apple.calendar.store.log.subscription] [Failed to refresh <CalManagedSubscriptionInfo: 0x7fb77af1cad0> (entity: SubscriptionInfo; id: 0x80012b <x-coredata://67DDA8BB-69D2-4A1E-8121-A2B127E6E5C3/SubscriptionInfo/p2> ; data: {
        calendar = "0x280010b <x-coredata://67DDA8BB-69D2-4A1E-8121-A2B127E6E5C3/CalDAVSubscribedCalendar/p10 >";
        hasAlarmFilter = 1;
        hasAttachmentFilter = 1;
        hasTaskFilter = 1;
        isAutoProvisioned = 0;
        isAutoRefreshed = 1;
        languageCode = nil;
        lastError = "0x4d300022b <x-coredata://67DDA8BB-69D2-4A1E-8121-A2B127E6E5C3/SubscriptionError/p4940>";
        locationCode = nil;
        needsRefresh = 0;
        refreshDate = "2014-08-16 04:07:44 +0000";
        refreshInterval = 86400;
        subscriptionID = nil;
        subscriptionNotes = nil;
        subscriptionTitle = nil;
        subscriptionURL = "(...not nil..)";
        subscriptionURLString = "http://www.amion.com/cgi-bin/ocs?Vcal=7.83&Lo=UHobgyn&Jd=5340";
    }) with error Error Domain=CalSubscriptionErrorDomain Code=-1001 "The operation couldn’t be completed. (CalSubscriptionErrorDomain error -1001.)"]
    8/16/14 6:30:46.364 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [ICS Error for file: <html>
    <head>
    <title>Boingo | The Worldwide Leader in Wi-Fi Software and Services</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="expires" content="-1">
    <meta http-equiv="refresh" content="0; url=https://hotspot.boingohotspot.net/login?dst=http%3A%2F%2Fwww.amion.com%2Fcgi-bin %2Focs%253FVcal%253D7.83%2526Lo%253DUHobgyn%2526Jd%253D4914">
    </head>
    <!--
    <?xml version="1.0" encoding="UTF-8"?>
      <WISPAccessGatewayParam
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:noNamespaceSchemaLocation="http://hotspot.boingohotspot.net/xml/WISPAccessGatewayParam.xsd">
        <Redirect>
      <AccessProcedure>1.0</AccessProcedure>
      <AccessLocation>ccg_den-hsgw1</AccessLocation>
      <LocationName>BOINGO:US, US-Denver International Airport - US</LocationName>
      <LoginURL>https://hotspot.boingohotspot.net/login?dst=http%3A%2F%2Fwww.amion.com%2Fcgi-bin %2Focs%253FVcal%253D7.83%2526Lo%253DUHobgyn%2526Jd%253D4914</LoginURL>
      <MessageType>100</MessageType>
      <ResponseCode>0</ResponseCode>
        </Redirect>
      </WISPAccessGatewayParam>
    -->
    <body>
    </body>
    </html>]
    8/16/14 6:30:46.365 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [Invalid char ï for PropertyName.
    Parsed token:()
    Cursor:(0)]
    8/16/14 6:30:46.365 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [Invalid char » for PropertyName.
    Parsed token:()
    Cursor:(1)]
    8/16/14 6:30:46.365 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [Invalid char ¿ for PropertyName.
    Parsed token:()
    Cursor:(2)]
    8/16/14 6:30:46.365 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [Invalid char < for PropertyName.
    Parsed token:()
    Cursor:(3)]
    8/16/14 6:30:46.366 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [Hit Max ICS log messages for file! (200)]
    8/16/14 6:30:46.366 AM CalendarAgent[220]: [com.apple.calendar.store.log.ICS] [Invalid char > for PropertyName.
    Parsed token:(html)
    Cursor:(8)]
    8/16/14 6:30:46.366 AM CalendarAgent[220]: [com.apple.calendar.store.log.subscription] [Failed to refresh <CalManagedSubscriptionInfo: 0x7fb77af0a660> (entity: SubscriptionInfo; id: 0x100012b <x-coredata://67DDA8BB-69D2-4A1E-8121-A2B127E6E5C3/SubscriptionInfo/p4> ; data: {
        calendar = "0x440010b <x-coredata://67DDA8BB-69D2-4A1E-8121-A2B127E6E5C3/CalDAVSubscribedCalendar/p17 >";
        hasAlarmFilter = 0;
        hasAttachmentFilter = 0;
        hasTaskFilter = 0;
        isAutoProvisioned = 0;
        isAutoRefreshed = 0;
        languageCode = nil;
        lastError = "0x4d380022b <x-coredata://67DDA8BB-69D2-4A1E-8121-A2B127E6E5C3/SubscriptionError/p4942>";
        locationCode = nil;
        needsRefresh = 0;
        refreshDate = nil;
        refreshInterval = 0;
        subscriptionID = nil;
        subscriptionNotes = nil;
        subscriptionTitle = nil;
        subscriptionURL = "(...not nil..)";
        subscriptionURLString = "http://www.amion.com/cgi-bin/ocs%3FVcal%3D7.83%26Lo%3DUHobgyn%26Jd%3D4914";
    }) with error Error Domain=CalSubscriptionErrorDomain Code=-1001 "The operation couldn’t be completed. (CalSubscriptionErrorDomain error -1001.)"]
    8/16/14 6:30:46.921 AM AppleMobileBackup[31454]: WARNING: Backing up 9f9f9ca65f775094050523079dd5d7404ec1cd02
    8/16/14 6:30:46.982 AM digest-service[31431]: digest-request: uid=0
    8/16/14 6:30:46.982 AM digest-service[31431]: digest-request: init request
    8/16/14 6:30:46.985 AM digest-service[31431]: digest-request: init return domain: OBGYN server: TAEBY indomain was: <NULL>
    8/16/14 6:30:47.005 AM digest-service[31431]: digest-request: uid=0
    8/16/14 6:30:47.005 AM digest-service[31431]: digest-request: init request
    8/16/14 6:30:47.008 AM digest-service[31431]: digest-request: init return domain: OBGYN server: TAEBY indomain was: <NULL>
    8/16/14 6:30:48.393 AM Calendar[30162]: [com.apple.calendar.ui.log] [An error exists on principal: [Google]]
    8/16/14 6:31:03.117 AM com.apple.SecurityServer[15]: Killing auth hosts
    8/16/14 6:31:03.118 AM com.apple.SecurityServer[15]: Session 100201 destroyed
    8/16/14 6:31:03.128 AM com.apple.SecurityServer[15]: Session 100202 created
    8/16/14 6:31:05.081 AM identityservicesd[216]: [Warning] IDSFaceTimeServerBag: Invalid dictionary to parse URL bag ((null))
    8/16/14 6:31:05.081 AM identityservicesd[216]: [Warning] IDSiMessageServerBag: Invalid dictionary to parse URL bag ((null))
    8/16/14 6:31:07.879 AM spindump[31464]: Saved diag report for powerstats version com.apple.SystemStats.Daily to /Library/Logs/DiagnosticReports/powerstats_2014-08-16-063107_Tods-MacBook-Pro.d iag
    8/16/14 6:31:08.444 AM spindump[31467]: Saved diag report for powerstats version com.apple.SystemStats.TopPowerEvent to /Library/Logs/DiagnosticReports/powerstats_2014-08-16-063108_Tods-MacBook-Pro.d iag
    8/16/14 6:31:09.007 AM spindump[31468]: Saved diag report for powerstats version com.apple.SystemStats.TopPowerEvent to /Library/Logs/DiagnosticReports/powerstats_2014-08-16-063109_Tods-MacBook-Pro.d iag
    8/16/14 6:31:09.649 AM spindump[31469]: Saved diag report for powerstats version com.apple.SystemStats.TopPowerEvent to /Library/Logs/DiagnosticReports/powerstats_2014-08-16-063109-1_Tods-MacBook-Pro .diag
    8/16/14 6:31:10.193 AM spindump[31470]: Saved diag report for powerstats version com.apple.SystemStats.TopFanEvent to /Library/Logs/DiagnosticReports/powerstats_2014-08-16-063110_Tods-MacBook-Pro.d iag
    8/16/14 6:31:14.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xf000 ****
    8/16/14 6:31:32.187 AM Messages[24611]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    8/16/14 6:32:12.281 AM com.apple.usbmuxd[55]: MuxTCPInputSCE received RST for 0x2-9f9f9ca65f775094050523079dd5d7404ec1cd02@0x1d110000:50380->0x1004059a0-MDCr ashReportTool/NULL:39680: sendMuxSegment connection was closed
    8/16/14 6:32:34.445 AM iTunes[1248]: _send_message (thread 0x124531000): Could not securely send message size 388: SSL_ERROR_SYSCALL errno (Broken pipe).
    8/16/14 6:32:49.545 AM iTunes[1248]: _send_message (thread 0x122c2e000): Could not securely send message size 406: SSL_ERROR_SSL (error:1409F07F:SSL routines:SSL3_WRITE_PENDING:bad write retry).
    8/16/14 6:32:49.546 AM iTunes[1248]: AMDeviceStopSession (thread 0x122c2e000): Could not stop session with device 2: kAMDSendMessageError
    8/16/14 6:33:24.235 AM iTunes[1248]: _send_message (thread 0x1194ba000): Could not securely send message size 406: SSL_ERROR_SYSCALL errno (Broken pipe).
    8/16/14 6:33:24.236 AM iTunes[1248]: AMDeviceStopSession (thread 0x1194ba000): Could not stop session with device 2: kAMDSendMessageError
    8/16/14 6:34:24.936 AM mdworker[31496]: zip importer encountered an error (2) scanning "/Users/docaeby/Music/iTunes/Mobile Applications/com.eduGamer.LearnArabic.zip".
    8/16/14 6:34:41.024 AM mdworker[31496]: zip importer encountered an error (2) scanning "/Users/docaeby/Music/iTunes/Mobile Applications/com.gnux.dictboxenar.zip".
    8/16/14 6:35:53.623 AM mdworker[31495]: zip importer encountered an error (2) scanning "/Users/docaeby/Music/iTunes/Mobile Applications/com.Epocrates.Rx.zip".
    8/16/14 6:35:54.332 AM WindowServer[98]: device_generate_desktop_screenshot: authw 0x0(0), shield 0x7fba0c849020(2001)
    8/16/14 6:35:54.394 AM WindowServer[98]: device_generate_lock_screen_screenshot: authw 0x0(0), shield 0x7fba0c849020(2001)
    8/16/14 6:36:13.771 AM mdworker[31451]: zip importer encountered an error (2) scanning "/Users/docaeby/Music/iTunes/Mobile Applications/com.evernote.iPhone.Evernote.zip".
    8/16/14 6:36:53.735 AM mdworker[31451]: zip importer encountered an error (2) scanning "/Users/docaeby/Music/iTunes/Mobile Applications/com.facebook.Facebook.zip".
    8/16/14 6:37:31.171 AM WindowServer[98]: _CGXHWCaptureWindowList: No capable active display found.
    8/16/14 6:39:11.117 AM apsd[93]: Unrecognized leaf certificate
    8/16/14 6:39:52.103 AM secd[256]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    8/16/14 6:39:52.104 AM secd[256]:  securityd_xpc_dictionary_handler EscrowSecurityAl[393] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    8/16/14 6:40:13.295 AM ScreenSaverEngine[31541]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    8/16/14 6:40:13.760 AM WindowServer[98]: CGXDisplayDidWakeNotification [199783028450014]: posting kCGSDisplayDidWake
    8/16/14 6:40:13.764 AM WindowServer[98]: handle_will_sleep_auth_and_shield_windows: Deferring.
    8/16/14 6:40:22.141 AM mdworker[31548]: zip importer encountered an error (2) scanning "/Users/docaeby/Music/iTunes/Mobile Applications/com.adobe.PSMobile.zip".
    8/16/14 6:40:53.226 AM com.apple.launchd.peruser.502[172]: (com.apple.iCal.35056[30162]) Exited: Terminated: 15
    8/16/14 6:41:30.580 AM WindowServer[98]: Warning: Program "SystemUIServer" posted a mouse-down, blocking hardware events, but did no further mouse activity
    8/16/14 6:41:34.376 AM mdworker[31548]: zip importer encountered an error (2) scanning "/Users/docaeby/Music/iTunes/Mobile Applications/com.sgiggle.Tango.zip".
    8/16/14 6:41:53.405 AM mdworker[31548]: zip importer encountered an error (2) scanning "/Users/docaeby/Music/iTunes/Mobile Applications/com.tripadvisor.LocalPicks.zip".
    8/16/14 6:42:20.152 AM mdworker[31548]: zip importer encountered an error (2) scanning "/Users/docaeby/Music/iTunes/Mobile Applications/com.united.UnitedCustomerFacingIPhone.zip".
    8/16/14 6:42:43.153 AM mdworker[31568]: zip importer encountered an error (2) scanning "/Users/docaeby/Music/iTunes/Mobile Applications/VivienBundleID.zip".

  • How to find a specific word (from a list) in a sentence located in a different table, and build a column that contains the name

    Hi all, 
    I have 2 tables:
    1) Lookup table- "Names"- which contains ID# and product description (~100 names that can change).
    2) Data table- "Data"- which contains a column with sentences and within lies also the description. In addition, there is a quantity column.
    Example:
    Names table-
    ID
    Name
    1 Glass
    2 Paper
    3 Alum'
    4 Metal for construction
    100 Hydro therapy products
    And Data table-
    Description
    Qty
    Someone went to use the machine. 1.80 cm, Alum', for the rest of the day
    6
    Metal for construction is the major component in our system
    7
    <gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="ba668f16-4de8-41d9-af39-d1b17422d6fe" id="ae5b76e8-6897-46c8-823b-86a382087f83">Kandoo</gs>, Delgado,
    Glass 17
    Greece needs more paper, 200 ft.
     45
    *there is no order where the lookup value can be found in the sentence*
    My purpose is to import the Data table while performing a calculation, that <gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="1941bde7-1595-40eb-9d64-c2e3b9fabdef" id="b60549fc-5b92-46ea-abc6-72cc8c4c093b">checks</gs>
    for each row what is the suitable lookup value and then add it to a new column "Name". 
    Meaning, this table should be the new data after import:
    <gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="f5d9da98-3ff6-4022-920d-8965a15730ee" id="580f945f-7822-4035-9b5b-542c74eff605">Description</gs>
    Qty                        
    Name
    Someone went to use the machine. 1.80 cm, Alum', for the rest of the day
    6 Alum'
    Metal for construction is the major component in our system
    7 Metal for construction
    <gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="365dd7f8-7ffc-4ef3-95bf-9bf03421c90d" id="c9ba8515-3dba-4a6b-929e-650510f70844">Kandoo</gs>, Delgado, Glass
    17 Glass
    Greece needs more Paper, 200 ft.
     45 Paper
    Appreciate all support! 
    I lost hope and I want to avoid macros as much as possible.
    Thanks!
    עמית

    Hi Amit,
    I updated the file. The solution uses the following query formula:
    let
    Source = Excel.CurrentWorkbook(){[Name="DataTbl"]}[Content],
    #"Added Custom" = Table.AddColumn(Source, "Custom", each IndexTbl),
    #"Expand Custom" = Table.ExpandTableColumn(#"Added Custom", "Custom", {"Scope"}, {"Scope"}),
    #"Filtered Rows" = Table.SelectRows(#"Expand Custom", each Text.Contains([Description], [Scope])),
    #"Grouped Rows" = Table.Group(#"Filtered Rows", {"Topic", "Component Code", "Project", "Date", "TotalQty", "TotalQtyActual", "ID", "SOW #", " SOW#(lf)Rev", "Scope Driver", "Scope Source", "Scope Source #", "Cost Code", "Type", "Bdg", "System Code", "IMF Number", "IMF Description", "WG", "C or NC", "C/e", "LLE", "Dwg Ref", "Comments ", "Description", "Size", "Qty", "Unit", "Materials Cost/Unit ", "Sub-Total per Unit €", "Unit Rate ", "Total", "DIV Code", "SYS Code", "HelperForDynfilter"}, {{"Scope", each Text.Combine([Scope], " | "), type text}})
    in
    #"Grouped Rows"
    It is based on two queries. The first is the import from table of "IndexTbl", the second is the import of "DataTbl' which is then extended according to the expression above.
    Hope this helps.
    Gil

  • How to read a table/structure value in a container from a Z program

    Experts,
    I have a WF with one of the container element is a multiline table element of the strucuture BSEG. Now I have a report where given a WID, i need to read the contents of this structure from the workflow container and display in ALV grid.
    I'm using the FM SAP_WAPI_READ_CONTAINER or SWW_WI_CONTAINER_READ to read the container. No issues till here now.
    I'm able to read the contents of the attributes that are simple without being in a structure/table.
    But, how do i read the values from the table/structure in the container from this FM?
    I see lots of threads talking about SWC_GET_TABLE or something like that. But I don't know whether and how to use it in my scenario. Any sample programs will be greatly appreciated.
    Thanks,
    Sam

    Hey,
    No issues. I sorted out myself. Glory to God in the Heavens!
    -Sam

  • Search a CLOB column(contains XML) in Oracle table

    Hi,
    I need help on how will i be able to search the data in a clob column that contains XML in an ORACLE table.
    Thanks,
    PSS

    We are using 10g.. and database in which the table is located.. i just have a read only access .. so i am pulling all the data into a flat file (im using a shell script) and from there on i need to process the data... and my problem is how to pull the data in the CLOB using sql or whichever way.. if you can explain me with an example i would really appreciate it...
    Thanks,
    PSS

Maybe you are looking for

  • MRP User Exit/BAdI for changing plant stock

    Hi, I have a client who is wanting to add consignment stock to plant stock during the MRP run for materials with a certain material group. I need to find an exit or a BAdI which is called at an appropriate time to have a developer code this function.

  • Powermac G5 will not FTP out!

    Hi, can anyone save me £35 because my Powermac G5 will not FTP out! Why? What switches on/off? I want to upload site but cannot connect to the server!

  • Multi plot graph - auxiliary curves

    I am in trouble with a multi plot graph. There is a wave chart that I have to plot an auxiliary line when the user clicks on the graphic. I know how to get the initial point and the final point of the auxiliar line. But I don´t know how can I plot th

  • How to show PL/SQL package  output and fix below error(please help)

    --PACKAGE SPECIFICATION AND BODY complied successfully but I can not see output some error are also there..  please help ;how to fix this problem -- with code CREATE OR REPLACE PACKAGE package_variables IS -- Declare package components. PROCEDURE set

  • Connect to SQL Server by using ODBC

    We use ODBC to connect to a Microsoft SQL Server database. We are able to describe and select in Oracle for those tables (in MS SQL) granted to us. However, we cannot select on the views created in MS SQL. Do we miss something? Here is the SQL statem