Immediate answer

SQL> ed
Wrote file afiedt.buf
1 INSERT INTO IHS_PT_CASE@link_to_dmsr
2 SELECT 'IHS_OWNER', SUBSTR(TRIM(ADT_CASE.CASE_ACCOUNT_NO),1,12),
3 ADT_CASE.CASE_ADMIT_DT, ADT_CASE.CASE_DC_DT, SUBSTR(TRIM(ADT_CASE_LOCATION.LOCN_NSG_STATN_CD),1
4 SUBSTR(TRIM(ADT_CASE_LOCATION.CLOCN_ROOM_NO),1,4), ADT_CASE.CASE_NO,
5 SUBSTR(TRIM(ADT_CASE.CASE_PT_CLASS_TYPE_CD),1,1), ADT_PATIENT.PT_BIRTH_DT,
6 SUBSTR(TRIM(ADT_PATIENT.PT_CITY_NM),1,32), SUBSTR(TRIM(ADT_PATIENT.PT_FIRST_NM),1,20),
7 SUBSTR(TRIM(ADT_PATIENT.PT_LAST_NM),1,32), SUBSTR(TRIM(ADT_PATIENT.PT_MRN),1,10),
8 SUBSTR(TRIM(ADT_PATIENT.PT_STATE_CD),1,2), ADT_PATIENT.PT_STREET, ADT_PATIENT.PT_STREET2,
9 SUBSTR(TRIM(ADT_PATIENT.PT_ZIP),1,5)
10 FROM ADT_CASE@odsd, ADT_CASE_LOCATION@odsd, ADT_PATIENT@odsd
11 WHERE ADT_CASE.CASE_ADMIT_DT >= '01-SEP-2005' AND ADT_CASE.CASE_PT_CLASS_TYPE_CD = 'I' AND ADT_
12 AND ADT_CASE.CASE_ID=DMSR_MAX_CASE(ADT_CASE.CASE_ACCOUNT_NO,ADT_CASE.PT_ID) AND ADT_PATIENT.PT_
13* AND ADT_CASE.CASE_ID=DMSR_MAX_CASE(ADT_CASE.CASE_ACCOUNT_NO,ADT_CASE.PT_ID)
SQL> /
INSERT INTO IHS_PT_CASE@link_to_dmsr
ERROR at line 1:
ORA-02085: database link LINK_TO_DMSR.WORLD connects to ODSD.WORLD
SQL> ed
Wrote file afiedt.buf
1 INSERT INTO IHS_PT_CASE@odsd
2 SELECT 'IHS_OWNER', SUBSTR(TRIM(ADT_CASE.CASE_ACCOUNT_NO),1,12),
3 ADT_CASE.CASE_ADMIT_DT, ADT_CASE.CASE_DC_DT, SUBSTR(TRIM(ADT_CASE_LOCATION.LOCN_NSG_STATN_CD),1
4 SUBSTR(TRIM(ADT_CASE_LOCATION.CLOCN_ROOM_NO),1,4), ADT_CASE.CASE_NO,
5 SUBSTR(TRIM(ADT_CASE.CASE_PT_CLASS_TYPE_CD),1,1), ADT_PATIENT.PT_BIRTH_DT,
6 SUBSTR(TRIM(ADT_PATIENT.PT_CITY_NM),1,32), SUBSTR(TRIM(ADT_PATIENT.PT_FIRST_NM),1,20),
7 SUBSTR(TRIM(ADT_PATIENT.PT_LAST_NM),1,32), SUBSTR(TRIM(ADT_PATIENT.PT_MRN),1,10),
8 SUBSTR(TRIM(ADT_PATIENT.PT_STATE_CD),1,2), ADT_PATIENT.PT_STREET, ADT_PATIENT.PT_STREET2,
9 SUBSTR(TRIM(ADT_PATIENT.PT_ZIP),1,5)
10 FROM ADT_CASE@odsd, ADT_CASE_LOCATION@odsd, ADT_PATIENT@odsd
11 WHERE ADT_CASE.CASE_ADMIT_DT >= '01-SEP-2005' AND ADT_CASE.CASE_PT_CLASS_TYPE_CD = 'I' AND ADT_
12 AND ADT_CASE.CASE_ID=DMSR_MAX_CASE(ADT_CASE.CASE_ACCOUNT_NO,ADT_CASE.PT_ID) AND ADT_PATIENT.PT_
13* AND ADT_CASE.CASE_ID=DMSR_MAX_CASE(ADT_CASE.CASE_ACCOUNT_NO,ADT_CASE.PT_ID)
SQL> /
INSERT INTO IHS_PT_CASE@odsd
ERROR at line 1:
ORA-04054: database link CSLS.WORLD does not exist
ORA-02063: preceding line from ODSD
SQL> ed
Wrote file afiedt.buf
1 INSERT INTO IHS_PT_CASE@odsd
2 SELECT 'IHS_OWNER', SUBSTR(TRIM(ADT_CASE.CASE_ACCOUNT_NO),1,12),
3 ADT_CASE.CASE_ADMIT_DT, ADT_CASE.CASE_DC_DT, SUBSTR(TRIM(ADT_CASE_LOCATION.LOCN_NSG_STATN_CD),1
4 SUBSTR(TRIM(ADT_CASE_LOCATION.CLOCN_ROOM_NO),1,4), ADT_CASE.CASE_NO,
5 SUBSTR(TRIM(ADT_CASE.CASE_PT_CLASS_TYPE_CD),1,1), ADT_PATIENT.PT_BIRTH_DT,
6 SUBSTR(TRIM(ADT_PATIENT.PT_CITY_NM),1,32), SUBSTR(TRIM(ADT_PATIENT.PT_FIRST_NM),1,20),
7 SUBSTR(TRIM(ADT_PATIENT.PT_LAST_NM),1,32), SUBSTR(TRIM(ADT_PATIENT.PT_MRN),1,10),
8 SUBSTR(TRIM(ADT_PATIENT.PT_STATE_CD),1,2), ADT_PATIENT.PT_STREET, ADT_PATIENT.PT_STREET2,
9 SUBSTR(TRIM(ADT_PATIENT.PT_ZIP),1,5)
10 FROM ADT_CASE@odsd, ADT_CASE_LOCATION@odsd, ADT_PATIENT@odsd
11 WHERE ADT_CASE.CASE_ADMIT_DT >= '01-SEP-2005' AND ADT_CASE.CASE_PT_CLASS_TYPE_CD = 'I' AND ADT_
12 AND ADT_CASE.CASE_ID=DMSR_MAX_CASE(ADT_CASE.CASE_ACCOUNT_NO,ADT_CASE.PT_ID) AND ADT_PATIENT.PT_
13* AND ADT_CASE.CASE_ID=DMSR_MAX_CASE(ADT_CASE.CASE_ACCOUNT_NO,ADT_CASE.PT_ID)
SQL> /
AND ADT_CASE.CASE_ID=DMSR_MAX_CASE(ADT_CASE.CASE_ACCOUNT_NO,ADT_CASE.PT_ID) AND ADT_PATIENT.PT_ID=AD
ERROR at line 12:
ORA-02069: global_names parameter must be set to TRUE for this operation

user452038, how to set up and run distributed queries is discussed in the last 5 chapters of the DBA Administration manual for versions 9.2 and 10g. You did not inlcude the Oracle version number and platform.
The errors messages you listed are pretty clean.
The database link name by default should match the remote database global name. In order for this to not be true the remote database must have it global_name spfile (or init.ora) parameter set to false, which is not usually the case. Where different domains exists it is generally better to declare the links in the form of remote_dbname.domain as in remote1.world so that the reference reads like @remote1.world.
HTH -- Mark D Powell --

Similar Messages

  • Is there any other way that I can contact Adobe photoshop through their live chat Support?Where I can get an immediate answer?

    Is there any other way that I can contact Adobe photoshop through their live chat Support?Where I can get an immediate answer?

    Hello Harvey,
    you can try this there: "Telephone numbers of customer service and technical support Adobe worldwide"
    >>> https://www.adobe.com/eeurope/elicensing/licensemanagement/alm/contact.html (I used Europe's link, but that makes no difference.)
    Hans-Günter

  • Very important question need immediate answer please very serious, is there any way possible i can get recent text messages from the last 2 days and print them off after they have been deleted from my phone?

    is there anyway i can retrieve recent text messages from the last 2 days and have them printed off after they have been deleted from my phone?  this is seriously important i need this for an attourney!

    click here:
    Re: Can I request to get the content of old text messages

  • 4 month delay in answering questions

    I see that it takes up to 4 months for a reply from Adobe to some of the questions posted here

    For the vast majority of civil, actionable questions, we try to get to them within a couple days.  That falls apart when we're side-tracked with a crisis or a tight schedule, but we try to stay on top of it.  January was especially brutal from an operational perspective, and we are out of the office over the US holiday season, so it's definitely possible that we we didn't have time to get to your question.  You said four months, which is the right window.  I always cringe when I reply to an ancient thread, but I figure I owe you the respect of at least a late answer.
    Like Chris said, the engineering staff working on the actual product is pretty active here as a courtesy to our users, but we're usually doing it on our own time or squeezing it in when we have a few minutes here and there.  If you have an issue that you're still struggling with, we'd be happy to try and help you with it.
    For future reference, if you want an immediate answer, Adobe provides telephone support.  We just charge for the free products.
    What are my contact options?

  • Answer Supervision dual wink start

    I have a interesting problem. I have a circuit coming in CAS set up for E&M fgb.
    to a Cisco 58xx
    The problem is with the wink start. The origionating switch sees immediate answer supervision when a call is made. I beleve this is becuase the Cisco sets ABCD 1111 high for 200 ms to acknowledge that the cisco can take the call., then drops ABCD to 0000. THen the termination swith sets ABCD to 1111 when the call is answered and 0000 when the call is dropped. The problem is the origionation switch responds to the first 1111 as if it were answer supervision thus providing "false" answer supervision. THe problem then is that the CDR from the origionation switch show duration even on non-completed calls and adds duration to completed calls.
    Is there anyway to no send wink back to the orgionation switch from the cisco gateway and only the wink from the termination switch ? This only happens on CAS trunks.
    a normal call will give me 3 offhook events and 1 on hook event
    1. Off hook with the origionation swith starts the digits
    2. Off Hook event with the digits are complete (this is the one providing the false answer supervision)
    3. Off Hook with the termination switch completes the call (this the one that should provide the answer supervision)
    4. On hook when the call is complete (this is normal)
    Any help

    Even though these are cas trunks, you need to have direct-inward-dial under the pots dial peer that is matched when the call comes in. This is configured by default under the dial peers for 26/36xx series routers but need to be configured for 5xxx platforms. If it is not configured then answer supervision is sent back to the switch immediately as the call comes in, but with direct-inward-dial, the answer supervision is sent to the switch, when we get a connect message back from the terminating device.

  • Immediate shutdown and no power up

    I noticed my laptop over heating even still with the fan and everything. Then suddenly shutsdown without warning or bluescreen at least. This is the second time happening and this time it would not power up at all. Is this a laptop protocol when overheating shutsdown without warning? Please I need an immediate answer from a lenovo agent. Cause this may start to delay my work in my laptop.

    I have this same issue. For a $2,000 laptop, I am more than dissatisfied. The hard drive runs so freaking hot and the fan is clearly not doing a thing aside from sounding like a jetpack. Regardless of the cooling I've tried and the "energy manager" fan cleaning/placed my laptop on the lowest possible battery/screen brightness, this thing is useless. Ihave had this laptop for about 2 weeks, and the heat has DESTROYED my hard drive. It no longer boots, and I'm pretty confident that the OS (Windows 8.1) no longer exists. (I'll be making a phone call as soon as Iam finished here.)
    Add to that the fact that it comes with SO MANY junk programs that opens up an asinine amount of security concerns. Within our two-wekk relationship, it's had a RAT(Remotely Controlled Trojan) infection, MANY other remote openings and users showing up on my computer that I've never heard of, and of course, multiple viruses. It is IMPOSSIBLE to uninstall and configure the machine before an opening invites someone/a group/virus, etc. into the hard drive. I actually have to use my 3-year-old cell phone for the internet.
    Moral of the story- buyer beware. 2 weeks of ownership and the hard drive (as well as the optical/hybrid drive) is quite literally fried. Save your $2,000.
    Moderator comment: Post edited to conform with the Community Rules. Keep it clean.

  • Why can't i get an answer?

    I posted a few days ago under heading  ' fascia'.
    it was a simple question, but not one expert has been able to give me an answer. I'm sure it will only take someone a minute of their time. Perhaps now someone please....................
    Post relates to: Treo 680 (Unlocked GSM)

    I have an idea or two why you received no replies:
    1. Perhaps if you gave your original post a title that made sense?  I've read several definitions of the word "fascia", and none seem to apply to a cell phone.
    2. This is a peer-to-peer forum, aka "Users helping Users".  There are pitifully few real helpers here.  Most folks just "hit and run", meaning they ask a question then leave, never returning to "pay it forward" and help others...      
    No response usually means "we don't know the answer".   
    3. Also, here's a hint - Demanding an immediate answer usually is counter-productive.   Sometimes patience is required!  With the huge amount of questions asked here, it can take time to get to each one.
    Now, with all that said, I'll head over to your original post and see if I can come up with a suggestion.
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Can we intercept page redirection after user's login?

              Hi,
              This is problem we are facing and we are not sure whether it's WLS's limitation.
              We can't find a way to let weblogic server direct user back to the same login
              page after session time out.
              For example
              1. Let's say we run a query and display a report (at this stage, user may choose
              to save the results)
              2. wait until the session time out (30 minutes).
              3. try to Save report button (WLS will take you to the login page)
              4. login info in the pop up login dialog
              After that, exception is raised since the server is trying to locate the infomation
              that's expired.
              Exception Details:
              javax.servlet.ServletException: Data is not found, you may be operating on an
              old page that may not be available on server
              So, when a user tries to access a secure resource, WebLogic intercepts and throws
              up the Login page (we use FORM based authentication). After a valid login, the
              requested resource (page) is displayed.
              What we would like to do is force the user to a specific page after login (the
              home page) instead of the resource they were trying to access. Reason being is
              that the same behavior happens after a timeout and when trying to display the
              requested page, all http session information is gone and we're throwing exceptions.
              Any comment is highly appreciated.
              Take care,
              Yicheng
              

    I beleive the Immediate Answer is NO you can't.
              But you can definitely get workarounds.
              If you are using using wls6.1:
              1. You can use ServletFilters.
              Else
              1. Write a Front Controller.
              (http://java.sun.com/j2ee/blueprints/design_patterns/front_controller/index.html). I am
              sure this is not going to be easy solution for an application thats developed and
              tested already.
              2. Modify you code to check session data intermediate pages. I am sure this is also
              not going to be easy solution for an application thats developed and tested already.
              I believe this is a limitation of Servlet Spec.
              You should be able to configure in web.xml says if this URI is hit without user logged
              in this is my target URI.
              Kumar.
              Yicheng Tao wrote:
              > Hi,
              > This is problem we are facing and we are not sure whether it's WLS's limitation.
              > We can't find a way to let weblogic server direct user back to the same login
              > page after session time out.
              > For example
              > 1. Let's say we run a query and display a report (at this stage, user may choose
              > to save the results)
              > 2. wait until the session time out (30 minutes).
              > 3. try to Save report button (WLS will take you to the login page)
              > 4. login info in the pop up login dialog
              > After that, exception is raised since the server is trying to locate the infomation
              > that's expired.
              >
              > Exception Details:
              > javax.servlet.ServletException: Data is not found, you may be operating on an
              > old page that may not be available on server
              >
              > So, when a user tries to access a secure resource, WebLogic intercepts and throws
              > up the Login page (we use FORM based authentication). After a valid login, the
              > requested resource (page) is displayed.
              > What we would like to do is force the user to a specific page after login (the
              > home page) instead of the resource they were trying to access. Reason being is
              > that the same behavior happens after a timeout and when trying to display the
              > requested page, all http session information is gone and we're throwing exceptions.
              >
              > Any comment is highly appreciated.
              >
              > Take care,
              >
              > Yicheng
              

  • SAP BO

    Please provide Answers for  below BO questions.................
    1)To help Business users find the information they need, objects should be clearly named and defined using business terminology and organized into which of the following?
    a) Dimensions     b) Dimension and details     c) Folders & Subfolders     d) Classes and Sub classes     e) Categories and Sub Categories.
    Ans:-
    2)When using an Excel spreadsheet as a data source, Xcelsius?
    a) Can only read 1024 rows of data     b) Can update the excel source file based on dashboard action
    c) Makes on internal copy of the data     e) Needs read and write access to the excel spread sheet.
    Ans:-
    3)What is SAP Business Objects Voyager?
    a) Thin-Client OLTP Analysis tool
    b) Thin Client web application integrated into the SAP Business Intelligence portal
    c) Thin Client web application integrated into the SAP Business objects Central Configuration Manager
    d)  Separate Installable Windows Application
    Ans:-
    4)The Database that stores Information about the system and user is often referred to as the CMS. What does CMS Stands for?
    a) Central Management server      b) Content management System     c) Content management Server          d) Configuration Management Server
    Ans :-
    5)Which Product allows you to filter records using the u201CIs one ofu201D Operator?
    a) Xcelsius          b) Web Intelligence     c) Crystal Reports     d) Voyager
    Ans:-
    6)Which transforms are found in the Platform category?
    a)SQL, Validate, Table Comparison     b) Case, Pivot, Key_Generation     c) Effective_Date, SQL, Merge
    d) Case, Merge, Row_Generation
    Ans:-
    7)What component allows users to sort data and resize column width?
    a) Table     b) Dynamic Table     c) List View     d) List of Values
    Ans:-
    8)To Split a large table into multiple tables with a heading title, what should you do?
    a) Apply a sort     b) Apply a Section     c) Insert a break     d) Insert an Alerter
    Ans:-
    9)Filters that are created for Web Intelligence users by the Universe designer, and are saved in the Universe are called what?
         a) Quick Filters     b) Predefined Filters     c) Custom Query Filter     d) Drill Filters          e) Prompts
         Ans:-
    10)When a -
    is associated with multiple documents, users can find and compare different documents to help users answer a specific?
    a) Discussion     b) Glossary Entry     c) Business Question     d) Guided Analysis Question
    Ans:-
    11)You can change the Format of a Date or Number in the details section of a Report using which of the following?
    a) Filed Explorer     b) Field Wizard     c) Report Explorer     d) Report Wizard     e) Format Wizard
    Ans:-
    12)Which of the following is a server- Management tool that allows you to configure each of your SAP Business Objects Edge BI Components?
    a) Configuration Wizard     b) Component Configuration Manager     c) Central Configuration Manager         d) Central Management Console
    Ans:-
    13)Using the SAP Business Objects Live office menu entry Live officeInsertWeb Intelligence content------
    a) Allows the user to select multiple components     b) Requires the users to de select unwanted Components
    c) Requires successfully logging on to the SAP Business Objects Edge server
    d) Allows the user to add all components from a web intelligence document at once
    Ans:-
    14)A Universe file does not contain -
    a) Connection Parameters          b) SQL Structures     c) Data          d) Table Schema     e) Measures
    Ans:-
    15)SAP Business Objects explorer is used to do which of the following?
    a) Test SAP Business Objects Edge BI server analytics       b) Identify the highest rated reports in the BI Portal
    c) Provide Immediate answers to Business questions     d) Extract the Key fields from a star schema database
    Ans:-
    16)SAP Business Objects Dashboard Builder can:
    a) Only be used to create Corporate Dashboard     b) Support the creation of Personal and Corporate Dashboards
    c) Be executed as stand alone windows application for Off-line development of dashboards
    d) Include any existing reports and dashboards from the developers Favorites folders
    Ans:-
    17)Which of the following are single value components that can be modified to affect other Xcelsisus Components?
    a) Dail, Slider and Spinner     b) Dail, Slider and list builder          c) Dail, Spinner and Graph                     d) Dail, Spinner and Grid
    Ans:-
    18)Which of these tasks can be performed using SAP Business Objects Voyager?
    a) Design an OLAP schema     b) Perform Slice and dice analysis of data cubes     c) Edit Business Objects Dash board Analytics     d) Compare and Contrast Business Objects Edge server reporting objects
    Ans:-
    19)To enable users to Drill down to a pre-defined depth without the need to requery the data base, you must-----
    a) Set the Scope of Analysis     b) Set the drillable block property     c) Insert summary calculation such as sum, average and count          d) Create one or more drill filters
    Ans:-
    20)If you want all report Blocks (Each table and graph) in a report to be updated when you drill, you should select the -
    option?
    a) Drill on Duplicate     b) Synchronize drill          c) Interactive          d) Advance Drill
    Ans:-
    21)Customers can go beyond a rear-view look at their business and ensure that they are focused on both qualitative and quantitative indicators using which of the following?
          a) Enterprise Performance Management          b) Governance, Risk and Compliance                                        c) Information Management          d) Business Intelligence
        Ans:-
    22)Information that you want to appear once at the end of your report, such as a grand total should be added to which of the following?
    a) Page Header     b) Page Footer          C) Report Header     d) Report Footer
    Ans:-

    The official BO documentation is available under http://help.sap.com
    I would recommend you to go through the user and admin guides.
    Regards,
    Stratos

  • MacBook Pro crashing and restarting on wake from sleep?

    My MacBook Pro 17inch Late 2011 has started crashing and restarting on wake from sleep 3 out of 4 times.  This is really interrupting my workflow and I need help to remedy it.
    Here is about 2 minutes from the system log at the time of restart.
    After looking at some other posts, this may be a spontaneous log-out, but I DO NOT have automatic log-out selected in security preferences.
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro kernel[0]: Previous Sleep Cause: 5
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro kernel[0]: The USB device HubDevice (Port 1 of Hub at 0xfa000000) may have caused a wake by issuing a remote wakeup (2)
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro kernel[0]: AppleThunderboltHAL::earlyWake - complete - took 1 milliseconds
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro.local com.apple.SecurityServer[14]: setupThread failed rcode=1
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro kernel[0]: The USB device BRCM2070 Hub (Port 1 of Hub at 0xfa100000) may have caused a wake by issuing a remote wakeup (3)
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro kernel[0]: TBT W (1): 0 [x]
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro kernel[0]: en1: 802.11d country code set to 'X0'.
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149The USB device Bluetooth USB Host Controller (Port 3 of Hub at 0xfa110000) may have caused a wake by issuing a remote wakeup (3)
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro kernel[0]: 153 157 161 165
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: CGXDisplayDidWakeNotification [187113886343157]: posting kCGSDisplayDidWake
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: handle_will_sleep_auth_and_shield_windows: Reordering authw 0x7fe550637300(2000) (lock state: 3)
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: handle_will_sleep_auth_and_shield_windows: err 0x0
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x8c00 ****
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x1b24e3a0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:20 --- last message repeated 22 times ---
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x15701370. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:20 --- last message repeated 22 times ---
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x159e6a40. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:20 --- last message repeated 3 times ---
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro kernel[0]: [AppleMultitouchDevice::willTerminate] entered
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro kernel[0]: [AppleMultitouchDevice::stop] entered
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro kernel[0]: [0xffffff8054c30b00][free]()
    Mar 26 07:55:15 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x159e6a40. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:20 --- last message repeated 23 times ---
    Mar 26 07:55:17 Mr-Sharps-MacBook-Pro.local SystemUIServer[16896]: Menu Extra: <DisplaysExtra: 0x7f9630e0cf70> is over retained.
    Mar 26 07:55:18 Mr-Sharps-MacBook-Pro.local auditd[16848]: Got low space trigger
    Mar 26 07:55:18 Mr-Sharps-MacBook-Pro.local auditd[16848]: auditd_read_dirs(): all audit log directories over soft limit
    Mar 26 07:55:18 Mr-Sharps-MacBook-Pro.local auditd[16848]: renamed /var/audit/20140325221613.not_terminated to /var/audit/20140325221613.20140326145518
    Mar 26 07:55:18 Mr-Sharps-MacBook-Pro.local auditd[16848]: New audit file is /var/audit/20140326145518.not_terminated
    Mar 26 07:55:18 Mr-Sharps-MacBook-Pro.local _atsserver[17205]: audit warning: allsoft
    Mar 26 07:55:18 Mr-Sharps-MacBook-Pro.local _atsserver[17204]: audit warning: soft /var/audit
    Mar 26 07:55:18 Mr-Sharps-MacBook-Pro.local _atsserver[17206]: audit warning: closefile /var/audit/20140325221613.20140326145518
    Mar 26 07:55:18 Mr-Sharps-MacBook-Pro.local com.apple.SecurityServer[14]: Session 100616 created
    Mar 26 07:55:19 Mr-Sharps-MacBook-Pro.local Preview[16878]:
              ***** AESendMessage [async] returned: -1712 [loc:0]
    Mar 26 07:55:19 Mr-Sharps-MacBook-Pro.local PrinterProxy[16892]:
              ***** AESendMessage [async] returned: -1712 [loc:0]
    Mar 26 07:55:20 --- last message repeated 1 time ---
    Mar 26 07:55:19 Mr-Sharps-MacBook-Pro.local Preview[16878]:
              ***** AESendMessage [async] returned: -1712 [loc:0]
    Mar 26 07:55:21 --- last message repeated 1 time ---
    Mar 26 07:55:20 Mr-Sharps-MacBook-Pro.local PrinterProxy[16892]:
              ***** AESendMessage [async] returned: -1712 [loc:0]
    Mar 26 07:55:20 Mr-Sharps-MacBook-Pro.local Preview[16878]:
              ***** AESendMessage [async] returned: -1712 [loc:0]
    Mar 26 07:55:20 Mr-Sharps-MacBook-Pro.local PrinterProxy[16892]:
              ***** AESendMessage [async] returned: -1712 [loc:0]
    Mar 26 07:55:20 Mr-Sharps-MacBook-Pro.local Preview[16878]:
              ***** AESendMessage [async] returned: -1712 [loc:0]
    Mar 26 07:55:23 --- last message repeated 1 time ---
    Mar 26 07:55:23 Mr-Sharps-MacBook-Pro.local UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    Mar 26 07:55:23 Mr-Sharps-MacBook-Pro.local configd[17]: network changed: v4(en1-:10.10.12.171) DNS- Proxy- SMB-
    Mar 26 07:55:23 Mr-Sharps-MacBook-Pro.local com.apple.SecurityServer[14]: Killing auth hosts
    Mar 26 07:55:23 Mr-Sharps-MacBook-Pro.local com.apple.SecurityServer[14]: Session 100615 destroyed
    Mar 26 07:55:23 Mr-Sharps-MacBook-Pro.local identityservicesd[16918]: [Warning] FTMessageDelivery failed! (HTTP Status Code: 0) Error (NSURLErrorDomain:-1009): The Internet connection appears to be offline. https://service1.ess.apple.com/WebObjects/QueryService.woa/wa/query?uri=tel%3A%2 B17142928033
    Mar 26 07:55:23 --- last message repeated 1 time ---
    Mar 26 07:55:23 Mr-Sharps-MacBook-Pro.local Preview[16878]:
              ***** AESendMessage [async] returned: -1712 [loc:0]
    Mar 26 07:55:23 Mr-Sharps-MacBook-Pro.local sandboxd[11857] ([15300]): netbiosd(15300) deny file-read-metadata /private/var/empty
    Mar 26 07:55:23 Mr-Sharps-MacBook-Pro.local PrinterProxy[16892]:
              ***** AESendMessage [async] returned: -1712 [loc:0]
    Mar 26 07:55:24 Mr-Sharps-MacBook-Pro.local CalendarAgent[16871]: [com.apple.calendar.store.log.caldav.queue] [Account refresh failed with error: Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fd068d98ec0 {NSUnderlyingError=0x7fd068f28290 "The Internet connection appears to be offline.", NSErrorFailingURLStringKey=https://tvsharp99%[email protected]/16827672/principal///tvsharp99%[email protected]/16827672/principal/, NSErrorFailingURLKey=https://tvsharp99%[email protected]/16827672/principal///tvsharp99%[email protected]/16827672/principal/, AccountName=iCloud, CalDAVErrFromRefresh=YES, NSLocalizedDescription=The Internet connection appears to be offline.}]
    Mar 26 07:55:24 Mr-Sharps-MacBook-Pro.local PrinterProxy[16892]:
              ***** AESendMessage [async] returned: -1712 [loc:0]
    Mar 26 07:55:24 Mr-Sharps-MacBook-Pro.local CalendarAgent[16871]: [com.apple.calendar.store.log.caldav.queue] [Adding [<CalDAVAccountRefreshQueueableOperation: 0x7fd06b009b30; Sequence: 0>] to failed operations.]
    Mar 26 07:55:24 Mr-Sharps-MacBook-Pro.local PrinterProxy[16892]:
              ***** Failed to send command [async]: {
                  ICACommandKey = ICARegisterForEventNotificationCmd;
                  ICAEventsOfInterestKey =     (
                      ICANotificationTypeDeviceRemoved,
                      ICANotificationTypeDeviceStatusInfo,
                      ICANotificationTypeScanProgressStatus,
                      ICANotificationTypeScannerOverviewOverlayAvailable,
                      ICANotificationTypeDeviceStatusError,
                      ICANotificationTypeScannerButtonPressed,
                      ICANotificationTypeScannerPageDone,
                      ICANotificationTypeScannerScanDone,
                      ICANotificationTypeScannerSessionClosed,
                      ICANotificationTypeTransactionCanceled,
                      ICANotificationTypeObjectAdded
                  ICAExecutableArchitectureKey = 16777223;
                  ICANotificationProcKey = 0;
                  ICAObjectOfInterestKey = 0;
                  ICARefconKey = 105553116458048;
                  ICC = Y;
              } [loc:1]
    Mar 26 07:55:24 Mr-Sharps-MacBook-Pro.local PrinterProxy[16892]:
              ***** AESendMessage [async] returned: -1712 [loc:1
    Mar 26 07:55:24 Mr-Sharps-MacBook-Pro.local identityservicesd[16918]: [Warning] FTMessageDelivery failed! (HTTP Status Code: 0) Error (NSURLErrorDomain:-1009): The Internet connection appears to be offline. https://service1.ess.apple.com/WebObjects/QueryService.woa/wa/query?uri=tel%3A%2 B19099576581
    Mar 26 07:55:24 --- last message repeated 1 time ---
    Mar 26 07:55:24 Mr-Sharps-MacBook-Pro kernel[0]: en1: 802.11d country code set to 'US'.
    Mar 26 07:55:24 Mr-Sharps-MacBook-Pro kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    Mar 26 07:55:24 Mr-Sharps-MacBook-Pro.local AddressBookSourceSync[17207]: [CardDAVPlugin-ERROR] -getPrincipalInfo:[_controller supportsRequestCompressionAtURL:https://tvsharp99%[email protected]/16827672/principal///tvsharp99%[email protected]/16827672/principal/] Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fda3c324300 {NSUnderlyingError=0x7fda3c2461f0 "The Internet connection appears to be offline.", NSErrorFailingURLStringKey=https://tvsharp99%[email protected]/16827672/principal///tvsharp99%[email protected]/16827672/principal/, NSErrorFailingURLKey=https://tvsharp99%[email protected]/16827672/principal///tvsharp99%[email protected]/16827672/principal/, NSLocalizedDescription=The Internet connection appears to be offline.}
    Mar 26 07:55:24 Mr-Sharps-MacBook-Pro.local PrinterProxy[16892]:
              ***** AESendMessage [async] returned: -1712 [loc:0]
    Mar 26 07:55:24 Mr-Sharps-MacBook-Pro kernel[0]: MacAuthEvent en1   Auth result for: d0:c2:82:85:e4:d0  MAC AUTH succeeded
    Mar 26 07:55:24 Mr-Sharps-MacBook-Pro kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    Mar 26 07:55:24 Mr-Sharps-MacBook-Pro kernel[0]: AirPort: Link Up on en1
    Mar 26 07:55:24 Mr-Sharps-MacBook-Pro kernel[0]: en1: BSSID changed to d0:c2:82:85:e4:d0
    Mar 26 07:55:24 Mr-Sharps-MacBook-Pro kernel[0]: AirPort: RSN handshake complete on en1
    Mar 26 07:55:24 Mr-Sharps-MacBook-Pro.local identityservicesd[16918]: [Warning] FTMessageDelivery failed! (HTTP Status Code: 0) Error (NSURLErrorDomain:-1009): The Internet connection appears to be offline. https://service1.ess.apple.com/WebObjects/QueryService.woa/wa/query?uri=tel%3A%2 B19099571995
    Mar 26 07:55:24 --- last message repeated 1 time ---
    Mar 26 07:55:24 Mr-Sharps-MacBook-Pro.local netbiosd[15300]: network_reachability_changed : network is not reachable, netbiosd is shutting down
    Mar 26 07:55:24 Mr-Sharps-MacBook-Pro.local loginwindow[16754]: magsafeStateChanged state changed old 2 new 1
    Mar 26 07:55:25 Mr-Sharps-MacBook-Pro kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    Mar 26 07:55:26 Mr-Sharps-MacBook-Pro kernel[0]: [BNBMouseDevice::init][80.14] init is complete
    Mar 26 07:55:26 Mr-Sharps-MacBook-Pro kernel[0]: [BNBMouseDevice::handleStart][80.14] returning 1
    Mar 26 07:55:26 Mr-Sharps-MacBook-Pro kernel[0]: [AppleMultitouchHIDEventDriver::start] entered
    Mar 26 07:55:26 Mr-Sharps-MacBook-Pro kernel[0]: [AppleMultitouchDevice::start] entered
    Mar 26 07:55:27 Mr-Sharps-MacBook-Pro.local identityservicesd[16918]: [Warning] FTMessageDelivery failed! (HTTP Status Code: 0) Error (NSURLErrorDomain:-1009): The Internet connection appears to be offline. https://service1.ess.apple.com/WebObjects/QueryService.woa/wa/query?uri=tel%3A%2 B17142928033
    Mar 26 07:55:27 --- last message repeated 1 time ---
    Mar 26 07:55:27 Mr-Sharps-MacBook-Pro.local identityservicesd[16918]: [Warning] FTMessageDelivery failed! (HTTP Status Code: 0) Error (NSURLErrorDomain:-1009): The Internet connection appears to be offline. https://service1.ess.apple.com/WebObjects/QueryService.woa/wa/query?uri=tel%3A%2 B19099576581
    Mar 26 07:55:27 --- last message repeated 1 time ---
    Mar 26 07:55:27 Mr-Sharps-MacBook-Pro.local identityservicesd[16918]: [Warning] FTMessageDelivery failed! (HTTP Status Code: 0) Error (NSURLErrorDomain:-1009): The Internet connection appears to be offline. https://service1.ess.apple.com/WebObjects/QueryService.woa/wa/query?uri=tel%3A%2 B19099571995
    Mar 26 07:55:28 --- last message repeated 1 time ---
    Mar 26 07:55:28 Mr-Sharps-MacBook-Pro.local digest-service[17226]: label: default
    Mar 26 07:55:28 Mr-Sharps-MacBook-Pro.local digest-service[17226]:           dbname: od:/Local/Default
    Mar 26 07:55:28 Mr-Sharps-MacBook-Pro.local digest-service[17226]:           mkey_file: /var/db/krb5kdc/m-key
    Mar 26 07:55:28 Mr-Sharps-MacBook-Pro.local digest-service[17226]:           acl_file: /var/db/krb5kdc/kadmind.acl
    Mar 26 07:55:28 Mr-Sharps-MacBook-Pro.local digest-service[17226]: digest-request: uid=0
    Mar 26 07:55:29 Mr-Sharps-MacBook-Pro.local digest-service[17226]: digest-request: netr probe 0
    Mar 26 07:55:29 Mr-Sharps-MacBook-Pro.local digest-service[17226]: digest-request: init request
    Mar 26 07:55:29 Mr-Sharps-MacBook-Pro.local digest-service[17226]: digest-request: init return domain: MACBOOKPRO-B735 server: MR-SHARPS-MACBOOK-PRO indomain was: <NULL>
    Mar 26 07:55:29 Mr-Sharps-MacBook-Pro.local digest-service[17226]: digest-request: uid=0
    Mar 26 07:55:29 Mr-Sharps-MacBook-Pro.local digest-service[17226]: digest-request: init request
    Mar 26 07:55:29 Mr-Sharps-MacBook-Pro.local digest-service[17226]: digest-request: init return domain: MACBOOKPRO-B735 server: MR-SHARPS-MACBOOK-PRO indomain was: <NULL>
    Mar 26 07:55:30 Mr-Sharps-MacBook-Pro.local configd[17]: network changed: DNS* Proxy
    Mar 26 07:55:30 Mr-Sharps-MacBook-Pro.local UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'MDHS-PRIV' making interface primary (cache indicates network not captive)
    Mar 26 07:55:30 Mr-Sharps-MacBook-Pro.local UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    Mar 26 07:55:30 Mr-Sharps-MacBook-Pro.local configd[17]: network changed: v4(en1!:10.10.12.171) DNS+ Proxy+ SMB+
    Mar 26 07:55:30 Mr-Sharps-MacBook-Pro.local UserEventAgent[11]: Captive: en1: Not probing 'MDHS-PRIV' (cache indicates not captive)
    Mar 26 07:55:30 Mr-Sharps-MacBook-Pro.local UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    Mar 26 07:55:30 Mr-Sharps-MacBook-Pro kernel[0]: AppleThunderboltHAL::earlyWake - complete - took 0 milliseconds
    Mar 26 07:55:30 Mr-Sharps-MacBook-Pro kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    Mar 26 07:55:30 Mr-Sharps-MacBook-Pro kernel[0]: IOThunderboltSwitch<0xffffff80414f4600>(0x1)::listenerCallback - Thunderbolt HPD packet for route = 0x1 port = 3 unplug = 0
    Mar 26 07:55:30 Mr-Sharps-MacBook-Pro kernel[0]: AppleThunderboltDPPathManager<0xffffff80535e2f00>::createPath - path type 0x1: Initial Credits [int=0 src=0 dst=0] NFC Credits [int=14 src=5 dst=14]
    Mar 26 07:55:30 Mr-Sharps-MacBook-Pro kernel[0]: AppleThunderboltDPPathManager<0xffffff80535e2f00>::createPath - path type 0x2: Initial Credits [int=2 src=2 dst=1] NFC Credits [int=0 src=0 dst=0]
    Mar 26 07:55:30 Mr-Sharps-MacBook-Pro kernel[0]: AppleThunderboltDPPathManager<0xffffff80535e2f00>::createPath - path type 0x4: Initial Credits [int=2 src=7 dst=1] NFC Credits [int=0 src=0 dst=0]
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Received display connect changed for display 0x4273382
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Found 60 modes for display 0x04273382 [51, 9]
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Received display connect changed for display 0x3f003f
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Found 51 modes for display 0x003f003f [39, 12]
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x003f003f changed state to online
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Received display connect changed for display 0x3f0040
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Found 1 modes for display 0x003f0040 [1, 0]
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: MPServiceForDisplayDevice: Invalid device alias (0)
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x04273382: GL mask 0x5; bounds (0, 0)[1920 x 1200], 60 modes available
              Main, Active, on-line, enabled, built-in, boot, OpenGL-accel, Vendor 610, Model 9cce, S/N 0, Unit 2, Rotation 0
              UUID 0x6d21c12c208310ef786fa8211197a86e, ColorProfile { 3, "Color LCD"}
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: GLCompositor: GL renderer id 0x01021b06, GL mask 0x0000001c, accelerator 0x000048cf, unit 2, caps QEX|MIPMAP, vram 1024 MB
              texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x003f003d: GL mask 0x2; bounds (2944, 0)[1 x 1], 2 modes available
              off-line, enabled, OpenGL-accel, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: GLCompositor: GL renderer id 0x01024301, GL mask 0x00000003, accelerator 0x00003123, unit 0, caps QEX|MIPMAP, vram 451 MB
              texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x003f0040: GL mask 0x10; bounds (2945, 0)[1 x 1], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x04248e53: GL mask 0x8; bounds (-2560, 0)[2560 x 1440], 51 modes available
              Active, on-line, enabled, Vendor 610, Model 9226, S/N 160d07d1, Unit 3, Rotation 0
              UUID 0x6922870a41a95073ec4338647418b6ff, ColorProfile { 2, "LED Cinema Display"}
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: Set a breakpoint at CGSLogError to catch errors as they are logged.
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: CGSCopyDisplayUUID: Invalid display 0x04248e53
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: uuid_callback_master: failed to retrieve UUID for display 0x04248e53 (1001) (invariant failure)
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: CGSCopyDisplayUUID: Invalid display 0x04248e53
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: uuid_callback_master: failed to retrieve UUID for display 0x04248e53 (1001) (invariant failure)
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: CGSCopyDisplayUUID: Invalid display 0x04248e53
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: uuid_callback_master: failed to retrieve UUID for display 0x04248e53 (1001) (invariant failure)
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: CGSCopyDisplayUUID: Invalid display 0x04248e53
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: uuid_callback_master: failed to retrieve UUID for display 0x04248e53 (1001) (invariant failure)
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: CGSCopyDisplayUUID: Invalid display 0x04248e53
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: uuid_callback_master: failed to retrieve UUID for display 0x04248e53 (1001) (invariant failure)
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: CGSCopyDisplayUUID: Invalid display 0x04248e53
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: uuid_callback_master: failed to retrieve UUID for display 0x04248e53 (1001) (invariant failure)
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: CGSCopyDisplayUUID: Invalid display 0x04248e53
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: uuid_callback_master: failed to retrieve UUID for display 0x04248e53 (1001) (invariant failure)
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: CGSCopyDisplayUUID: Invalid display 0x04248e53
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: uuid_callback_master: failed to retrieve UUID for display 0x04248e53 (1001) (invariant failure)
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: CGSCopyDisplayUUID: Invalid display 0x04248e53
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: uuid_callback_master: failed to retrieve UUID for display 0x04248e53 (1001) (invariant failure)
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: CGSCopyDisplayUUID: Invalid display 0x04248e53
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: uuid_callback_master: failed to retrieve UUID for display 0x04248e53 (1001) (invariant failure)
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: CGSCopyDisplayUUID: Invalid display 0x04248e53
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: uuid_callback_master: failed to retrieve UUID for display 0x04248e53 (1001) (invariant failure)
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: CGSCopyDisplayUUID: Invalid display 0x04248e53
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: uuid_callback_master: failed to retrieve UUID for display 0x04248e53 (1001) (invariant failure)
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: CGSCopyDisplayUUID: Invalid display 0x04248e53
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: uuid_callback_master: failed to retrieve UUID for display 0x04248e53 (1001) (invariant failure)
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: CGSCopyDisplayUUID: Invalid display 0x04248e53
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: uuid_callback_master: failed to retrieve UUID for display 0x04248e53 (1001) (invariant failure)
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: CGSCopyDisplayUUID: Invalid display 0x04248e53
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local Dock[16895]: uuid_callback_master: failed to retrieve UUID for display 0x04248e53 (1001) (invariant failure)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: hw_mirror_device_if_possible: driver picks 0x4248e53 as primary
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x04273382: Unit 2: Startup Mode 1920 x 1200, CGSThirtytwoBitColor, Resolution 1, ioModeID 0x43e, ioModeDepth 0x1, IOReturn 0x0
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x04248e53: Unit 3: Startup Mode 2560 x 1440, CGSThirtytwoBitColor, Resolution 1, ioModeID 0x43e, ioModeDepth 0x1, IOReturn 0x0
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display added
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display removed
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Displays mirrored
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x04248e53: GL mask 0x8; bounds (0, 0)[1920 x 1200], 51 modes available
              Master in mirror set; Main, Active, on-line, enabled, Vendor 610, Model 9226, S/N 160d07d1, Unit 3, Rotation 0
              UUID 0x6922870a41a95073ec4338647418b6ff, ColorProfile { 2, "LED Cinema Display"}
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fe550419c10) - enabling OpenGL
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: GLCompositor: GL renderer id 0x01021b06, GL mask 0x0000001c, accelerator 0x000048cf, unit 2, caps QEX|MIPMAP, vram 1024 MB
              texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x04273382: GL mask 0x5; bounds (0, 0)[1920 x 1200], 60 modes available
              Hardware mirror of 0x4248e53; on-line, enabled, built-in, boot, Vendor 610, Model 9cce, S/N 0, Unit 2, Rotation 0
              UUID 0x6d21c12c208310ef786fa8211197a86e, ColorProfile { 3, "Color LCD"}
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x003f003d: GL mask 0x2; bounds (2944, 0)[1 x 1], 2 modes available
              off-line, enabled, OpenGL-accel, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: GLCompositor: GL renderer id 0x01024301, GL mask 0x00000003, accelerator 0x00003123, unit 0, caps QEX|MIPMAP, vram 451 MB
              texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x003f0040: GL mask 0x10; bounds (2945, 0)[1 x 1], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local apsd[16858]: Unrecognized leaf certificate
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04248e53 device: 0x7fe550419c10  isBackBuffered: 1 numComp: 3 numDisp: 3
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x1b24e3a0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:32 --- last message repeated 14 times ---
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x1b24e3a0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x1b24e3a0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x1b24e3a0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:32 --- last message repeated 1 time ---
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x1b24e3a0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: _CGXGetSurfaceBounds: Invalid window 0x19
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceResolution: Invalid window 0x19
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: _CGXGetSurfaceBounds: Invalid window 0x47
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x1b24e3a0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceResolution: Invalid window 0x47
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: _CGXGetSurfaceBounds: Invalid window 0x48
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceResolution: Invalid window 0x48
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: _CGXGetSurfaceBounds: Invalid window 0x49
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceResolution: Invalid window 0x49
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x1b24e3a0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x1b24e3a0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: _CGXGetSurfaceBounds: Invalid window 0x19
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceResolution: Invalid window 0x19
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: _CGXGetSurfaceBounds: Invalid window 0x47
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceResolution: Invalid window 0x47
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: _CGXGetSurfaceBounds: Invalid window 0x48
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceResolution: Invalid window 0x48
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x15701370. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: _CGXGetSurfaceBounds: Invalid window 0x49
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceResolution: Invalid window 0x49
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x15701370. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x15701370. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x15701370. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: _CGXGetSurfaceBounds: Invalid window 0x19
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceResolution: Invalid window 0x19
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: _CGXGetSurfaceBounds: Invalid window 0x47
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceResolution: Invalid window 0x47
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: _CGXGetSurfaceBounds: Invalid window 0x48
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceResolution: Invalid window 0x48
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: _CGXGetSurfaceBounds: Invalid window 0x49
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceResolution: Invalid window 0x49
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 --- last message repeated 1 time ---
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: PScurrentwindowbounds: CGSGetWindowBounds returned error (1001)
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: _CGXGetSurfaceBounds: Invalid window 0x19
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceResolution: Invalid window 0x19
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: _CGXGetSurfaceBounds: Invalid window 0x47
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceResolution: Invalid window 0x47
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: _CGXGetSurfaceBounds: Invalid window 0x48
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceResolution: Invalid window 0x48
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: _CGXGetSurfaceBounds: Invalid window 0x49
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetSurfaceResolution: Invalid window 0x49
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local talagent[16894]: CGSGetWindowBounds
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x15701370. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:32 --- last message repeated 18 times ---
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x159e6a40. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:32 --- last message repeated 27 times ---
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro kernel[0]: [ PCI configuration begin ]
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro kernel[0]: [ PCI configuration end, bridges 20, devices 20 ]
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro kernel[0]: FireWire runtime power conservation disabled. (3)
    Mar 26 07:55:33 Mr-Sharps-MacBook-Pro kernel[0]: FireWire (OHCI) Lucent ID 5901 PCI now active, GUID ec1a597ba0715620; max speed s800.
    Mar 26 07:55:33 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Mar 26 07:55:33 --- last message repeated 2 times ---
    Mar 26 07:55:33 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x04248e53: Unit 3; ColorProfile { 2, "LED Cinema Display"}; TransferTable (256, 3)
    Mar 26 07:55:33 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x04273382: Unit 2; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    Mar 26 07:55:33 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x04248e53: Unit 3; ColorProfile { 2, "LED Cinema Display"}; TransferTable (256, 3)
    Mar 26 07:55:33 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x04273382: Unit 2; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    Mar 26 07:55:33 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x04248e53: Unit 3; ColorProfile { 2, "LED Cinema Display"}; TransferTable (256, 3)
    Mar 26 07:55:33 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x04273382: Unit 2; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    Mar 26 07:55:33 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x04248e53: Unit 3; ColorProfile { 2, "LED Cinema Display"}; TransferTable (256, 3)
    Mar 26 07:55:33 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x04273382: Unit 2; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    Mar 26 07:55:33 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x04248e53: Unit 3; ColorProfile { 2, "LED Cinema Display"}; TransferTable (256, 3)
    Mar 26 07:55:33 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x04273382: Unit 2; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    Mar 26 07:55:34 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x04248e53: Unit 3; ColorProfile { 2, "LED Cinema Display"}; TransferTable (256, 3)
    Mar 26 07:55:34 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: Display 0x04273382: Unit 2; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local ntpd[161]: ntpd: wake time set -2.346876 s
    Mar 26 07:55:31 Mr-Sharps-MacBook-Pro.local com.apple.time[16862]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local coreaudiod[388]: 2014-03-26 07:55:32.488616 AM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM/44100/16/2
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local CalendarAgent[16871]: [com.apple.calendar.store.log.exchange] [Exchange error Calendar can’t refresh the account “Disney”. The primary email address for the account can’t be found. (Error Domain=SOAPWebServicesErrorDomain Code=-1 "The operation couldn’t be completed. (SOAPWebServicesErrorDomain error -1.)" UserInfo=0x7fd068f63ff0 {SOAPErrorHTTPStatusKey=440})]
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local CalendarAgent[16871]: [com.apple.calendar.store.log.exchange.queue] [error = Error Domain=CalExchangeErrorDomain Code=-2 "Calendar can’t refresh the account “Disney”." UserInfo=0x7fd068f5a910 {NSLocalizedFailureReason=The primary email address for the account can’t be found., CalFailedOperationKey=<CalExchangeSyncAccountOperation: 0x7fd068f285b0>, NSLocalizedDescription=Calendar can’t refresh the account “Disney”.}]
    Mar 26 07:55:32 Mr-Sharps-MacBook-Pro.local AddressBookSourceSync[17207]: -[ABAddressBook save] failed. (<ABAddressBook: 0x7fda3ad43470>)
    Mar 26 07:55:34 Mr-Sharps-MacBook-Pro com.apple.launchd[1] (com.apple.smb.preferences): Throttling respawn: Will start in 2 seconds
    Mar 26 07:55:36 Mr-Sharps-MacBook-Pro.local digest-service[17226]: digest-request: uid=0
    Mar 26 07:55:36 Mr-Sharps-MacBook-Pro.local digest-service[17226]: digest-request: init request
    Mar 26 07:55:36 Mr-Sharps-MacBook-Pro.local digest-service[17226]: digest-request: init return domain: MACBOOKPRO-B735 server: MR-SHARPS-MACBOOK-PRO indomain was: <NULL>
    Mar 26 07:55:36 Mr-Sharps-MacBook-Pro.local digest-service[17226]: digest-request: uid=0
    Mar 26 07:55:36 Mr-Sharps-MacBook-Pro.local digest-service[17226]: digest-request: init request
    Mar 26 07:55:36 Mr-Sharps-MacBook-Pro.local digest-service[17226]: digest-request: init return domain: MACBOOKPRO-B735 server: MR-SHARPS-MACBOOK-PRO indomain was: <NULL>
    Mar 26 07:55:36 Mr-Sharps-MacBook-Pro.local sandboxd[11857] ([17241]): netbiosd(17241) deny mach-lookup com.apple.networkd
    Mar 26 07:55:41 Mr-Sharps-MacBook-Pro.local mDNSResponder[44]: CacheRecordAdd: _ipp._tcp.local. (PTR) got immediate answer burst (10); restarting exponential backoff sequence (3600000)
    Mar 26 07:55:41 Mr-Sharps-MacBook-Pro.local mDNSResponder[44]: CacheRecordAdd: _pdl-datastream._tcp.local. (PTR) got immediate answer burst (10); restarting exponential backoff sequence (3600000)
    Mar 26 07:55:42 Mr-Sharps-MacBook-Pro.local AirPlayUIAgent[17193]: 2014-03-26 07:55:42.762058 AM [AirPlayUIAgent] Changed PIN pairing: no
    Mar 26 07:55:42 Mr-Sharps-MacBook-Pro.local AirPlayUIAgent[17193]: 2014-03-26 07:55:42.777473 AM [AirPlayUIAgent] Changed PIN pairing: no
    Mar 26 07:55:46 Mr-Sharps-MacBook-Pro.local icbaccountsd[17315]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.mail - AD3B0CFE-CBE7-420F-8424-A53E33071D80
    Mar 26 07:55:46 Mr-Sharps-MacBook-Pro.local icbaccountsd[17315]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.exchange - A40A9BF3-C442-4D36-AA73-31DD3BA47859
    Mar 26 07:55:46 Mr-Sharps-MacBook-Pro.local icbaccountsd[17315]: -[ICBLocalDictionary writeLocalMapping:]: Status: Writing out local mapping to disk
    Mar 26 07:55:46 Mr-Sharps-MacBook-Pro.local icbaccountsd[17315]: -[ICBLocalDictionary writeLocalMapping:]: Status: Ending writing out local mapping to disk
    Mar 26 07:55:46 Mr-Sharps-MacBook-Pro.local icbaccountsd[17315]: -[ICBRemoteDictionary writeDevices]: Status: Writing out of devices
    Mar 26 07:55:46 Mr-Sharps-MacBook-Pro.local icbaccountsd[17315]: -[ICBRemoteDictionary writeDevices]: Status: Ending writing out of device
    Mar 26 07:55:49 Mr-Sharps-MacBook-Pro.local com.apple.WebKit.Networking[16927]: CFNetwork SSLHandshake failed (-9806)
    Mar 26 07:55:49 --- last message repeated 2 times ---
    Mar 26 07:55:49 Mr-Sharps-MacBook-Pro.local com.apple.WebKit.Networking[16927]: NSURLConnection/CFURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9806)
    Mar 26 07:55:49 Mr-Sharps-MacBook-Pro kernel[0]: hfs: mounted Recovery HD on device disk0s3
    Mar 26 07:55:49 Mr-Sharps-MacBook-Pro.local mds[43]: (Normal) Volume: volume:0x7fca31880800 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    Mar 26 07:55:50 Mr-Sharps-MacBook-Pro.local fseventsd[55]: Logging disabled completely for device:1: /Volumes/Recovery HD
    Mar 26 07:55:50 Mr-Sharps-MacBook-Pro kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    Mar 26 07:55:52 Mr-Sharps-MacBook-Pro.local auditd[16848]: Got low space trigger
    Mar 26 07:55:52 Mr-Sharps-MacBook-Pro.local auditd[16848]: auditd_read_dirs(): all audit log directories over soft limit
    Mar 26 07:55:52 Mr-Sharps-MacBook-Pro.local _atsserver[17338]: audit warning: allsoft
    Mar 26 07:55:52 Mr-Sharps-MacBook-Pro.local _atsserver[17337]: audit warning: soft /var/audit
    Mar 26 07:55:52 Mr-Sharps-MacBook-Pro.local auditd[16848]: renamed /var/audit/20140326145518.not_terminated to /var/audit/20140326145518.20140326145552
    Mar 26 07:55:52 Mr-Sharps-MacBook-Pro.local auditd[16848]: New audit file is /var/audit/20140326145552.not_terminated
    Mar 26 07:55:52 Mr-Sharps-MacBook-Pro.local _atsserver[17340]: audit warning: closefile /var/audit/20140326145518.20140326145552
    Mar 26 07:55:56 Mr-Sharps-MacBook-Pro.local netbiosd[17241]: findReachableAddress: Using port 139 family = 33
    Mar 26 07:55:56 Mr-Sharps-MacBook-Pro kernel[0]: smb_smb_ssnsetup: (NONE) doesn't support extended security, this server will be deprecated in the future!
    Mar 26 07:55:58 Mr-Sharps-MacBook-Pro.local parentalcontrolsd[17345]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Mar 26 07:55:58 Mr-Sharps-MacBook-Pro.local xpcd[2596]: restored permissions (100600 -> 100700) on /Users/larrysharp/Library/Containers/com.apple.lateragent/Container.plist
    Mar 26 07:55:58 Mr-Sharps-MacBook-Pro.local com.apple.SecurityServer[14]: Killing auth hosts
    Mar 26 07:55:58 Mr-Sharps-MacBook-Pro.local com.apple.SecurityServer[14]: Session 100616 destroyed
    Mar 26 07:55:58 Mr-Sharps-MacBook-Pro.local com.apple.SecurityServer[14]: Session 100617 created
    Mar 26 07:55:59 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x1b24e3a0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:59 --- last message repeated 22 times ---
    Mar 26 07:55:59 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x15701370. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:55:59 --- last message repeated 22 times ---
    Mar 26 07:55:59 Mr-Sharps-MacBook-Pro.local Microsoft Word[16879]: CGBitmapContextGetData: invalid context 0x159e6a40. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    Mar 26 07:56:00 --- last message repeated 27 times ---
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: device_generate_desktop_screenshot: authw 0x7fe550637300(2000), shield 0x7fe557515200(2001)
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local WindowServer[16763]: device_generate_lock_screen_screenshot: authw 0x7fe550637300(2000), shield 0x7fe557515200(2001)
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local com.apple.imfoundation.IMRemoteURLConnectionAgent[17347]: CFNetwork SSLHandshake failed (-9806)
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local ReportCrash[17348]: Metadata.framework [Error]: couldn't get the client port
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local ReportCrash[17348]: DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local Dock[16895]: HIToolbox: received notification of WindowServer event port death.
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local loginwindow[16754]: HIToolbox: received notification of WindowServer event port death.
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local NotificationCenter[16910]: HIToolbox: received notification of WindowServer event port death.
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local Mail[16877]: HIToolbox: received notification of WindowServer event port death.
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local Image Capture Extension[16982]: HIToolbox: received notification of WindowServer event port death.
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local SystemUIServer[16896]: HIToolbox: received notification of WindowServer event port death.
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local loginwindow[16754]: port matched the WindowServer port created in BindCGSToRunLoop
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local Dock[16895]: port matched the WindowServer port created in BindCGSToRunLoop
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local NotificationCenter[16910]: port matched the WindowServer port created in BindCGSToRunLoop
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local SystemUIServer[16896]: port matched the WindowServer port created in BindCGSToRunLoop
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local Mail[16877]: port matched the WindowServer port created in BindCGSToRunLoop
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local Image Capture Extension[16982]: port matched the WindowServer port created in BindCGSToRunLoop
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local LogMeInGUI[16953]: HIToolbox: received notification of WindowServer event port death.
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local Console[16883]: HIToolbox: received notification of WindowServer event port death.
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local Preview[16878]: HIToolbox: received notification of WindowServer event port death.
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local com.apple.dock.extra[16917]: HIToolbox: received notification of WindowServer event port death.
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local Disk Utility[16881]: HIToolbox: received notification of WindowServer event port death.
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local Safari[16868]: HIToolbox: received notification of WindowServer event port death.
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local PhotoStreamAgent[16940]: HIToolbox: received notification of WindowServer event port death.
    Mar 26 07:56:00 Mr-Sharps-MacBook-Pro.local com.apple.WebKit.WebContent[16928]: HIToolbox: received no

    yesterday crashes (mar 26)were all signed Torchupdater
    so I uninstalled Torch
    Today's crash (mar 27)was signed window server
    Cant uninstall finder....

  • Setup for Controlling Articulations (or Patches) as an Interface

    Hi,
    Here is a new set-up I've created (though, I'm sure others have
    done this or similar things before).
    The objectives of this set-up are to provide a way to deal with
    situations where I have limited processing power and limited
    computer memory during the compositional process. This
    set-up is not necessarily meant to be used to produce
    professional, platinum recordings.
    I am new to Logic Pro, so this set-up may have weaknesses and
    flaws that I am not aware of; or, there may be a far better way
    to achieve the ends than this.
    The main concept I am using is that of an interface. An example
    of an interface is a light switch on a wall; if you turn it on, the
    light goes on, if you turn the switch down, the light goes off.
    This is one type of light interface; another might be a chain
    you pull; another might be a light dimmer switch.
    In this set-up, a multi-instrument is used as an interface to Violins I.
    I first began by setting up a new layer in the environment, and I called
    it "Violins I Layer".
    I then created a new multi-instrument, and labeled it "Violins I". It's icon
    box is checked so that it shows up in the arrange menus.
    All other objects to be created or used within this environment layer have
    their icon checkbox unchecked.
    To use Violins I in the arrange window, you simply select it. There is no
    hint in the arrange window what the implementation of this Violins I section
    is. It could be produced by an outboard sampler, or it could be produced
    by Apple's JamPack orchestral Strings, or it could be produced by Garritan
    Orchestral Strings (as a few examples). It could even be produced by
    a flute patch, but this would simply be confusing to someone trying to
    use the overall system.
    Because there is no hint in the arrange window as to what actually
    produces the Violins I sound, this is one reason I call it an interface.
    You know that "Violins I" represents the first violin section, but you
    do not know the details of the implementation.
    In this example, there will be three implementations of the Violins I
    section set up within the Violins I Layer within the Environment. The
    three implementations use the following facilities: Garritan Orchestral
    Strings (light patches, i.e., less memory patches), Apple's JamPack
    Orchestra, and an outboard sampler-player called a Proteus/2.
    We can call these three implementations each a "sub-instrumental-box" for
    lack of a better name. That is, each implementation will have 16
    MIDI channels, so it is like an outboard sampler-player as a stand-alone
    box.
    The environment will be configured so that only one of these three
    sub-instrumental-boxes can play at a time. Thus, you either choose
    the Garritan Orchestral Strings (GOS) implementation, the Apple
    JamPack implementation, or the Proteus/2 implementation.
    You will be able to change the implementation by adjusting a Cable
    Switcher within the environment, or you will be able to send a MIDI
    program change to the Cable Switcher, where a program change of 0
    means the cable switcher sets itself to 0, a program change of 1
    means the cable switcher sets itself to 1, and a program change of 2
    means the cable switcher sets itself to 2.
    If the Cable Switcher is valued at 0, GOS is used. If the Cable Switcher
    is set at 1, Apple's Jampack Orchestra is used. If the Cable Switcher
    is set to 2, the out-board, Proteus/2 is used.
    Each sub-instrumental-box will have, potentially, up to 16 unique sounds.
    Each unique sound will be accessed by what channel the input note is
    playing on.
    Thus, if an incoming note is on channel 1, it will be played arco (regardless
    of whether the implementation is GOS, Apple, or Proteus/2).
    If an incoming note is on channel 6, it will be played pizzicato (regardless
    of whether the implementation is GOS, Apple, or Proteus/2).
    Let it be assumed, that the Garritan Orchestral Strings (light) will use more memory
    and more processing power than Apple JamPack. Whether it is a significant
    difference I do not know. And, of course, the out-board, Proteus/2 uses the
    most minimal of computer resources, because it generates its own sounds
    externally (though these strings sounds are not very good when compared to
    Apple and GOS).
    So, the idea of this set-up, here exemplified only in the Violins I section, is that
    while one is composing, and adding more instruments, sometimes the limitations
    of your computer will require you to "downgrade" from Garritan Orchestral Strings
    to Apple's JamPack strings, or even down to the out-board, Proteus/2.
    For example, one might already have a sketch of the string section for a
    passage, and now one is adding a trumpet; perhaps this trumpet uses
    up the next bit of processing power such that the passage no longer
    plays correctly. This, one hopes (as this set-up is brand new), could
    be alleviated by taking the Violins I (and other string
    sections), and switching them to play on the out-board Proteus/2. While the
    Proteus/2 strings are poor, they still are strings, and they could play while one
    focuses on the trumpet part.
    Once I have given more details about this set-up, I will not then go into the
    details of how you use the score editor. But, this set-up is meant to be used
    with the Score Editor. Let me add these small points of detail about how
    this set-up will interact with the Score Editor:
    1. Within the score editor, you can select on or more notes, then click and
    hold on the channel number in the left pane, and move the mouse up and
    down to set all the notes to a given channel (assuming you also hold down
    the option key if the initial channels for the notes is not the same).
    Thus, you change the channel of the note or notes and their articulations
    will automatically be changed from, say, arco to pizz.
    2. Within the score editor, you can click in a region between two staves so
    as not to select any notes or any staves, then set the default channel to
    some value, such as 6, which represent pizz. Then when you enter a new
    note using the pencil tool, that note will be associated with channel 6
    and thus will be played pizz.
    3. Within the arrange window, for a given track using the Violins I multi-
    instrument, make sure that the Port is Off, the Channel is All, the Program
    box is unchecked, and the Volumn box is unchecked.
    In short, you can control the articulations of the notes without ever leaving
    the score editor.
    There is a down side, however. If you intend to have two, rhythmically
    independent lines in one staff, and they are the same articulation (such
    as arco, i.e., they are both MIDI channel 1 in this example), then you
    will not be able to do so, because Apple has perhaps followed the "Village Idiot"
    anti-pattern in some of its work on the Logic Pro application. That is,
    this anti-pattern is exhibited when a new concept is introduced, but
    instead of defining an interface for this new concept, either lack of funds,
    time, or desire, results in the re-using of a previously defined interface
    to carry out this new task.
    Here is an example. I currently have a kitchen with a light and its
    associated light switch. I hire a handyman to insert a disposal within
    the sink. The handyman, being short of time, resources, and resolve,
    hooks up the disposal to my light switch. Now, whenever I enter into
    the kitchen and turn the light on using the light switch, the disposal
    also turns on. Instead, the handyman, should have created a completely
    independent interface to be used to turn the disposal on and off. Turning
    the light on and off is a different concept from turning the disposal
    on and off.
    The use of the Village Idiot anti-pattern is potentially* used by Apple when it
    says that a channel number is used to define one or more independent
    lines within a staff. Instead, to avoid this anti-pattern, they would
    come up with a new term, "score channel", "staff voice number", or
    something, and build an interface specifically related to this functionality.
    Then I could have one staff with two voices, each assigned a unique
    "stave voice number", and each having an identical MIDI channel
    number (because they are both playing arco).
    *Note that I specifically say "potentially". I have not yet experimented
    with placing two lines on one staff and then testing if I can get them
    to play the same musical instrument. Keep in mind, please, that I am
    new to Logic Pro. So, the above may be incorrect or incomplete.
    My focus right now is to use Logic Pro while composing, and I am not
    yet focusing on creating the best, professional looking score as an
    end-product.
    I've found one instance (though more may certainly exist) where
    the village idiot anti-pattern is used. In the score editor, if I use a
    user-defined rest (which, by the way, I always try to avoid using),
    and then if I rubber-band select a section of the melody, if I try to
    adjust the velocity of notes, I also inadvertently adjust the placement
    of user-defined rests. The village idiot anti-pattern seen here is that
    the exact same interface (moving the velocity value up and down) is
    also used to mean the placement of user-defined rests; clearly, it is
    best to create a new interface for dealing with the placement of
    user-defined rests.
    In summary, the possibility exists that in using the environment spelled
    out here, the use of channels for articulations may pose problems for
    you when you attempt to place two, rhythmically independent lines onto
    one staff when these two lines use the same channel number to represent
    their articulation (pizz. for instance). Rohan, and other Logic Pro experts
    hopefully can confirm or rebut this warning of mine if it is false.
    Within the environment's Violins I Layer, the Violins I multi-instrument has
    already been created (the steps were given above).
    In this example, I am using ten articulations:
    Channel Number Articulation
    1 SusV Lite (looped): Sustained vibrato.
    2 SusNV Lite (looped): Sustained non-vibrato.
    3 Grand Detache Lite
    4 Marcato Lite
    5 Sautille Lite
    6 Pizz Lite
    7 Tremolo Lite
    8 Trills - Half Lite
    9 Trills - Whole Lite
    10 Stacatto
    The articulation names are taken from the Lite versions of Garritan
    Orchestral Strings. The Apple JamPack Violins I do not have all
    these articulations. And, the Proteus/2 has even fewer. This, however,
    will not end everything, for this means that if a sub-instrumental-box
    does not have a Grand Detache, that we simply map Grand Detache
    to what it does have, which is just a simple arco.
    Thus, as less capable sub-instrumental-boxes are used, not only does
    the sound quality degrade, but the articulations start to become less
    detailed. Here is another example: Proteus/2 does not have a trill,
    so its trill is mapped to a simple arco.
    In the environment's Violins I layer, here are the details of the multi-
    instrument called Violins I: It's icon is checked, its Port is off,
    its Program is unchecked, its volume is unchecked.
    Create a new cable switcher object using the menu:
    New > Fader > Specials > Cable Switcher
    Here are the details of this Cable Switcher (shown when you select it):
    Output: Switch
    Channel: 1
    - 1 - : 48
    Input: Program
    Channel: 1
    -1- : 7
    Range: 0 127
    Value as Number
    Filter: Off
    Feedback: unchecked box.
    I don't know what all the above means, but I do know that it means at least
    that the cable switcher will change value when it receives a program (or
    patch) change on any MIDI channel (as described earlier): thus, if it
    receives a program (or patch) change valued at 0, the cable switcher
    will pass everything through the 0 output port.
    Now draw a cable between the multi-instrument to the Cable Switcher.
    The Cable Switcher is the gate-way to a particular implementation:
    the specific sub-instrumental-box that is currently being used to create
    the sounds.
    Let's work on the first sub-instrumental-box: the Garritan Orchestral Strings.
    Create a new Channel Splitter. Draw a cable from the Cable Switcher to
    this newly created Channel Splitter.
    The Channel Splitter can split an incoming MIDI signal into 16 MIDI channels
    (based upon the MIDI channel of the note passing through). This is how
    we will control the articulation.
    Now, this next part is personal preference. You may have another working
    method. But, we now need to connect the outputs of the Channel Splitter
    to instruments. I have set up Logic Pro to automatically create 128 audio
    instruments for me. For this sub-instrumental-box, I'll be using the ones
    that Logic has named: "Inst 100", "Inst 101", ..., "Inst 109". I open up a new
    environment window, and I select these ten instruments, and I drag them
    to my current, Violins I Layer, and they are moved. I then close the
    environment window I just, newly opened.
    Back in the Violins I layer, I connect output channel 1 of the Channel Splitter
    to Inst 100, and output channel 2 to Inst 101, and so forth, until I finally connect
    output channel 10 to Inst 109.
    For each of these ten instruments, I click under the "I/O" label, and bring up
    the EXS24 sampler, and from there grab a specific Garritan Orchestral
    Strings patch, such as "SusV Lite". Note that the specifics of how Logic Pro
    converts the gigasampler format that GOS came in to a format Logic Pro
    understands are not detailed here.
    This completes the first sub-instrumental-box. (Other details not mentioned:
    each instrument was sent to one bus to make mixing a little easier; but,
    you can leave these set to outputs 1 and 2 if you wish).
    If you send in MIDI notes on channel 1, they will sound as sustained, vibrato.
    If you send in MIDI notes on channel 4, they will be marcato, and so forth.
    Note, by the way, the "power" of being able to select a specific file having
    the specific articulation I desire. Now I am in complete control as to how
    this specific articulation will be played. But, if these articulations were
    bundled within only one file, where I was forced to either send key-switches
    or continuous controllers to activate either arco, marcato, termolo, and so forth,
    then I would not have this kind of flexibility and power. By the way,
    GOS lite sounds also have key-switched patches for those who like to
    play the notes at the keyboard; but, in this instance, GOS also has flexibility
    in that I am able to ignore the key-switched patches, and use the specific
    files each containing a specific articulation. Apple also has a similar
    flexibility: for Apple JamPack, you can use continuous controller 4 to
    change articulations for some of the patches, or you have the choice
    of loading each individual articulation from a specific file set (which is
    what will be done in this example).
    The next step is to create the second sub-instrumental-box implemented
    by the Apple JamPack orchestra's Violins I sounds.
    Create a new Channel Splitter. Cable the Cable Switcher (there is one free
    node on it) to the new Channel Splitter. Apples Violins I have the following
    articulations: Legato, Pizz, Tremolo, Trill Half, Trill Whole. For staccato,
    we will load the Violins II staccato patch. By the way, I forgot to mention
    that in the GOS, there is no staccato patch for Violins I, and I did a similar
    thing, I loaded the Violins II staccato patch to be played by the Violins I.
    Now I need some audio instruments to be connected from the Channel
    Splitter. Open a new environment window. Drag over "Inst 110",
    "Inst 111", ..., and finally "Inst 115".
    Cable Channel Splitter 1 output to Inst 110. Set Inst 110 just under I/O to
    Violins I Legato. Cable Channel Splitter 6 output to Inst 111 and just
    under I/O set it to Violins I pizz. And so forth, using up a total of
    6 channels to six instruments of Apple's JamPack strings.
    Now, there are some output channels from the Channel Splitter that
    are not used, because there is no corresponding patch in the
    Apple JamPack. Simply map these to the closest match you can find.
    Thus, output channel 2 of the Channel Splitter is patched to
    Inst 110 which represents legato and is the closest representation
    of "sustained, non-vibrato."
    Also, output channel 3, Grand Detache, is linked in an identical fashion,
    because plane legato is the closest match.
    Output channel 4, which should represent marcato, is mapped to
    Inst 112 (staccato), as that is a somewhat representative match-up.
    And, you continue in this fashion, mapping the best you can. Remember,
    Apple's JamPack does not have the many articulations of GOS lite
    patches, it is a specific implementation of the interface. And, the
    Apple JamPack will degrade in sound and in the number of unique
    articulations, but, theoretically, use up less processing power from
    the computer.
    Note that you can now click on the Cable Switcher to toggle between
    the two sub-instrumental-boxes we have just created. When the
    Cable Switcher has "0" written on it, you hear GOS. When the
    Cable Switcher has "1" written on it, you hear Apple JamPack.
    And, when we are finally done with the steps to follow, when the
    Cable Switcher has "2" written on it, you hear the out-board sampler
    Proteus/2.
    To create the third and final sub-instrumental-box, create a new
    Channel Splitter. Cable the free node from the Cable Switcher to
    this new Channel Splitter.
    Create one new instrument (not a multi-instrument) and label it "Arco Violins".
    Create another new instrument and label it "Marcato 2". Create another
    new instrument and label it "Pizz Violins". Create a final instrument
    and label is "Trem Strings". Obviously the Proteus/2 is not as sophisticated
    as either Apple's JamPack or GOS in that there are not necessarily
    specific Violin I patches only; so, I tried my best and used "Marcato 2"
    for example, even though this is for the entire string family.
    The details of each instrument is now given (remember, that some of these
    details related specifically to the out-board sample-player, Proteus/2):
    Arco Violins:
    Port: Port A
    Channel 1
    Program: box checked - 7.
    Volumn unchecked.
    Pan unchecked.
    Transpose 0.
    Velocity 0.
    Key Limit C-2 G8
    Vel limit 0 127
    Delay 0
    No Transp. unchecked
    No Reset: unchecked.
    Style: auto
    Marcato 2:
    Port: Port A
    Channel 4
    Program: box checked - 9
    Pizz Violins:
    Port: Port A
    Channel: 6
    Program: box checked - 15
    Trem Strings:
    Port: Port A
    Channel: 7
    Program: box checked - 18
    In the above listings, the Program has its box checked,
    and the number which follows it is the specific patch or
    sound containing the articulation I need to be produced
    by the Proteus/2.
    One can now click on the Cable Switcher and activate
    one of the three, specific implementations of "Violins I".
    You can also send in a program change through MIDI
    to accomplish the same thing. However, it is always
    possible that if you change the implementation in the
    middle of a phrase, that the note off signal for the
    last note played by the previous implementation might
    be sent to the different, current implementation, with the
    net result that the note never turns off.
    Now that you have the Violins I layer in your environment,
    here are some issues and some questions I'm thinking about (and don't know
    the immediate answer to):
    1. The GOS sub-instrumental-box used 10 EXS-24 audio-instruments, how
    much memory was that exactly?
    2. Apple's JamPack adds an additional 6 audio-instruments. How much
    additional memory does adding JamPack produce?
    3. If my G4 Macintosh has 1.5 gigs of memory, do I care? Is Apple's
    Logic Pro program smart enough not to keep these sounds in memory
    if they are not used? Or do these sounds always reside in memory?
    4. To conserve memory, is it smarter to load Apple JamPack instruments
    through the ESX-24?
    Thanks,
    Sys6
    G4, 1.5 gigs of memory   Mac OS X (10.4.8)  

    wow! What a post!
    Your way of "articulation switching" is very similar to the articulation tool I'm currently using, created by a member named kai. To find out more about his tool and its uses, visit the quick tip post I created: http://proapptips.com/tips/article.php?story=2006092810303559
    edit: It turns out the link I provided in the tip has been changed, so if you want to download the tool and its manual, visit http://www.elvenmusic.com/vsl/vsl.html and scroll to the bottom.
    Now, as for your concern of scoring two independently rhythmic parts with the same articulation in the score editor, there is a simple way around this problem. Simply add another track using the same Violin I instrument in the arrange page, which will give you 2 tracks in the score editor. This may not be the best scoring solution, as you will now have 2 violin staffs for divisi violin parts, but it will work fine while composing and you can merge the two when focusing only on the score.
    Also, I'd like to point out a memory saving tip you will find helpful. First off, its impossible for you to apply your technique for every instrument of the orchestra, as logic limits you to 128 instruments at one time, and given that an full orchestra can easily use 30-40 instruments, you will not be able to load 32 articulations for each instrument (16 GPO instruments and 16 jampak instruments). Realistically you will only be able to load about 3-4 articulations for every instrument. However, logic does not have any limit for instrument OBJECTS, thus you can create "slots" where particular articulations may go, and turn the instrument to "off" and simply load each articulation as needed. Whats cool about this method, is that for the most important articulations that you always want on call, load them up in EXS first, and then turn off the object in the environment window. Now whenever you need that articulation, simply turn on the object to its proper instrument number and the associated instrument patch and EXS instrument will be loaded automatically! Cool huh! You can also open link your environment window to update its data to any other window using the "chain" icon. For example, you can have your arrange page open on on side of your monitor, and your environment window open on the other, and whenever you select violin one, the environment goes to your violin I object, allowing you to quickly add more articulations to your open slots when needed (I have mine on a 2nd monitor, which saves me from having to constantly open the environment when I want to add an articulation).
    In answer to your other questions, if you are curious about how much memory your samples are using, run apple activity monitor before you load a sample, and after to get a rough estimate. Make sure to check how often the activity monitor checks ram, as its default may be 5min (dont remember), and keep in mind individual instruments are not that big, its when you load 20-30 that it starts to add up.
    As for your 3rd question, logic will keep everything you load in its memory buffer and/or use CPU to keep it ready to go. Each exs you load, even if you dont select a patch, uses computer resources. Thus my recommendation of turning your objects to "off" and only loading articulations as needed.
    I dont have apple jam packs, so I cant answer #4. However, you could test it yourself using activity monitor above.
    Well done in your implementation of these concepts on your own! I personally had no clue any of this was possible before I stumbled upon Kai's articulation tool. Now that I have, composing with large sample libs as proven a much more enjoyable experience!
    All the best, and thanks for sharing this with the logic community!

  • My Acrobat tab is missing in Office 2013

    I have office 2013 (Windows 7) and Acrobat XI (Creative Cloud). I have always had an Acrobat tab and have used it successfully many times to create PDFs. Recently it has gone missing. I no longer have the tab, and I can no longer create PDFs. I can still print to PDF, but this does not create any book marks for headings and such in Word, so the PDF is not very useful to me. I frequently create large documents and really need that feature that the ribbon tab gave me to be able to have all the Word headings converted to bookmarks in the PDF.
    I have tried uninstalling and reinstalling: Acrobat, the PDF Maker, the PDF Maker and Acrobat, and Office all to no avail. This morning I unistalled Office and Acrobat, rebooted, then reinstalled and still nothing. When you open Options in Word, it shows the addin is not checked (disabled) If i try to check it, it does not take. I mainly create PDFs from Word, so this is my primary concern, but I also checked the other Office apps. In Outlook, it shows it also unchecked with a message below that says there was an error loading. Excel and PointPoint interesting enough show the plugin loaded, but there is still no ribbon tab, nor buttons.
    Here are some images:
    So I am at a loss. I am not sure how to fix this problem, or what caused it in the first place. As it used to work just fine on this computer.
    Any assistance is apprecaited. Thank you.

    When you post, do not expect an immediate answer. We users do not live on this site and check periodically. However, one of us is often around. I was considering replying about doing the updates when I got to your second post. Actually 11.0.01 is even old. You should be able to do updates from the Help menu in Acrobat or download them from http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows. The updates generally have to be installed in order (most are not cummulative).
    WORD 2013 was released after Acrobat 11.0.0, requiring the updates for Acrobat to properly operate. Even if a beta was available, Adobe does not generally target the beta for updates since they are often totally different from the final release, wasting a lot of programming time on the part of Adobe.

  • The order of topics in the Project Manager is not reflected when creating a PDF for review.

    Can't seem to find an answer to this in the forums...
    Using RH10.
    In the Project Manager pod is a default 'Project Files' folder.
    Within that I have a 'Topics' folder in which my topic files reside.
    Under the View menu, I have selected 'By Topic Title'. I understand that this displays the topics by their title as opposed to their file name. I understand that this is a display toggle only, and has no relation to the order of the topics - the alternative toggle is 'By File Name'.
    Notice in the image below, my topics are displayed by topic title, but aren't in alphabetical order. ...yet.
    There's a button at the top of this window for changing the sort order to 'Sort by Name', which has the result below.
    Ok, so now the topics are displayed by topic title, and in alphabetical order.
    Question 1: If that button toggles the view to display topics in 'alphabetical order', what on earth is the other order called? It's certainly not in order of file name, as I've checked a bunch of the topic filenames, and can't see any pattern/order to the this structure.
    Question 2: When I go to create a PDF for review (via Review > Create PDF for Review), the window that appears displays all the topics available to me to select for review. However, they're displayed in this other 'odd' sort order instead of 'alphabetical' order. The Help menu says that this window reflects the order of topics as it finds them in the Project Manager. However, what seems to be actually happening is it's displaying the topics based on the view you have selected under the View menu (i.e. either 'View by Topic Title' or 'View by File Name'), and regardless of which view toggle you have selected, the order of the topics is only ever this 'odd' sort order. In other words, in the 'Create PDF for Review' window, it appears I can never see the topic list in alphabetical order. Furthermore, it appears that the only way I can resolve this is to go back into the Project Manager, switch to 'odd' sort order, and manually drag all the topics into alphabetical order. ...I have hundreds of topics.
    Is there some way I can quickly change this 'odd' sort order to 'alphabetical'? There must be some underlying file with this order of topics in it (hopefully).

    Hi there
    I don't have an immediate answer for Question 2, but for Question 1, the topic order is "User Defined" as you are able to click and drag topics to create any arrangement that suits you. This was something added as a result of user feedback. Enough users asked Adobe to allow them to arrange topics this way that they made it a reality. The logic escapes me as I'm a user that normally expects software to list things in either ascending or descending alphabetical order.
    Perhaps Peter will pop in with a nice explanation of the PDF for Review sorting and Adobe's logic behind it.
    Cheers... Rick

  • Question on a specific Group Policy setting for SCCM Updates

    Hello,
    This may not exactly be the correct forum for this question but in looking around I didn't come up with an immediate answer and was hoping someone else had this issue.
    I have a WSUS server and am moving over to SCCM for updates. I've actually had success in getting 2 sets of patches installed after some very frustrating days thanks to people here.
    I've noticed that when I switch workstations to my AD folder that has the SCCM Updates GPO instead of our standard WSUS GPO that we get action center errors "Set up Windows Update", "Windows Update is not set up". When we click
    the flag it tells us to "Choose an Update Option".
    In my new GPO I  do have Configure Automatic Updates Enabled for "Auto Download and notify for install" but we still get this warning. Is there a differnet setting that controls this action that anyone is aware of in their experience? I looked
    through the other settings but didn't se anything obvious.
    Thanks for any help!

    Hi Dustin,
    I'd read a number of different things trying to solve the problem. That article looked a little familiar but I re-read it carefully.
    I do have "specify intranet Microsoft Update service location" set to Not Configured as someone had correctly pointed me to that as the reason I was not getting updates.
    I did not have "Allow signed updates from an Intranet Micorsoft update server" enabled so that shoudl help some.
    "Configure Automatic Updates" was enabled because I, incorectly, thoguth that's all that might be needed since Ihad to make sure I'd Not Configured the first setting.
    I had "Turn on Recommended Updates" Enabled so I put it back to not configured.
    I understand that turning things to Not Configured doesn't necessarily change any previous group policy settings so I may be getting some fallout from having a WSUS server on these systems before. I'd just like to aviod having to have everyone go into the
    action center and manually click to configure updates.
    I'll see if my one setting change has any effect.
    UPDATE: I forced a gpupdate and the red flag in the action center has not disappeared.

  • What are the options for shipping Clerk centric role/view in SNC

    Hi,
    Is there a security role which gives only Shipping clerk view / ASN Management.
    Anybody got this requirement.
    Nornally we give suppliers role and as per the Scenario they implemented - Go to that scenario and start confirming the order / publish the PO and create the ASN.
    Any ideas on any specific Security role / User Setting in SNC -supplier view so that -when supplier logs in he can see only Shipping clerk responsibilites or ASN management only.
    Would appreciate immediate answer please
    Thanks,
    Mahesh

    Hi Mahesh,
    For ASN you can have following roles:
    ASN Maintenance (Supplier):
    Role: SAP_SCM_ICH_ASN_SUP
    With this role, you can maintain data on supplier Web screens for advanced shipping notifications (ASNs). You can access the following Web screens:
        1) ASN Overview (Supplier)
        2) ASN Details (Supplier)
        3) Create ASN
        4) ASN History (Supplier)
        5) Due List for Purchasing Documents (Supplier)
        6) Receipts and Requirements List (Supplier)
        7) Quick View (Supplier View)
        8) Alert Monitor
        9) Notification Administration
    You can also access the Packing screen from the ASN Details screen. In addition, you can display notes and alerts about ASNs.
    ASN Display:
    Role:SAP_SMI_ASNDISPLAY
    With this role you can <b>display</b> all advanced shipping notifications (ASNs).
    ASN Super user:
    Role:SAP_SMI_ASNSUPERUSER
    You can use this role to carry out all activities for processing advanced shipping notifications (ASNs), for example, receiving deliveries or canceling ASNs.
    You can copy above role create your own Zroles as per your requirement.
    Thanks,
    Nikhil

Maybe you are looking for

  • TS3230 Images and Videos Won't Show Up In Safari?

    Hi, I've been having some trouble recently when I browse the web using Safari on my new mid-2012 MacBook Pro. Since sometime yesterday, all images have simply stopped loading on Safari, preventing me from viewing them at all. Websites only show up as

  • Payment Methods for implementing new bank

    Hello Experts, I need your expert suggestions on the below: My Client is implementing Bank XX to replace Bank YY.  At present, the client is using Payment methods 'A' for ACH Payments and 'C' for Checks with House banks "00001" and "00002" respective

  • How to organize Places tags in Elements 12

    Hi I have assigned pictures to several different locations in Colorado using the Photoshop Elements 12 Organizer. Most of these locations are listed under "Colorado" category but one location persistantly lists under "CO". I have the same issue with

  • Cant add files via itunes

    I am trying to add a file via iTunes.  I go to APPS and scroll towards the bottom.  Under File Sharing, I have Apps.  The Ringtones app has ringtones under the Ringtones Documents.  When I clikc on Add or Save to, a message comes up that iTunes has s

  • HDMI to TV connected but no sound

    Product no. :dig61ua#aba model 14-b124us please give some solution!!1