Items on desktop not updating

The items on my desktop are not updating. For example, if i save a word file to the desktop, it will not appear on the desktop unless i restart. I can see it through the finder though. Any suggestions?

Try trashing the Desktop preference file and then log out/in.
The file is here:
/Users/you/Library/Preferences/com.apple.Desktop.plist
If that doesn't work, try downloading OnyX and use it to clear out your user cache files.

Similar Messages

  • PO item change is not updated after Delivery completion

    Dear All,
    PO item change is not updated in the PO at the completion of the delivery.for a particular line item. In our QA system, its updated but client is facing an issue with the production system. Pls check the attached screen which I got from QA. There is no such log in the production system. Kindly help me to have a solution for this.
    Regards
    Sujith

    Hi Dev,
    After we post the GR for a PO line item, PO history is updated (line) and at the same time that particular change log is available under PO line item. But in production system, said log is not updated after GR is completed fully.
    Rgs
    Sujith

  • Incoterms on Item level is not updated on STO.

    Issue: they have created a STO with wrog incoterm, now the issue is that the Incoterms on PO--> Item level is not updated if Incoterms on Header level is changed. I suggested them to change incoterm on item level manually, but user is saying the problem is that SAP doesn't change automatically Incoterms on item level if Incoterms on Header level are changed??
    What user is saying..Is this correct? or any thoughts/solution to fix this issue?
    Can anyone suggest me on this?
    Thanks & Regards
    Suresh Babu

    HI,
    Try this link
    How Incoterms gets defaulted for STO
    Regards
    KK

  • BAPI_ACC_DOCUMENT_POST line item text SGTXT not updating

    Hi,
    We have copied following LSMW for opening balance upload from ECC 5  to ECC 6.
    When we upload through LSMW (BAPI_ACC_DOCUMENT_POST ) which is used for uploading opening balances of G/L accounts field Long Text (Tech Name: ITEM_TEXT) not updating.
    Form Vendor and Customer Opening balances LSMWs  Long Text (Tech Name: ITEM_TEXT) field of G/L line item is not updating. According to my observation data field  SGTXT of BSEG table. not getting updated through this LSMW. I have tried same transaction through  T Code F-02 and it is updating field SGTXT of BSEG  table. As per confirmation from business same LSMWs  are working fine in ECC 5.
    Jigar

    hi experts,
    no body faced this situation?
    Any suggestions ?
    kindly give me any inputs
    thanks & regards,
    Raghul
    Edited by: Raghul Gandhi on Aug 11, 2009 11:32 AM
    Edited by: Raghul Gandhi on Aug 11, 2009 12:56 PM

  • XVBAP has the new line item but does not update Sales Order

    Hi
    I need to update the sales order with a new line item when the line item has a base unit of measure as the sales unit. I need to then convert the base unit to sales unit with a whole figure and the rest can be in the base unit.
    I am able to see the update in the xvbap but the line item doesn't get updated.
    I am puting this code in a perform within
    MV45AFZB  within   Form  USEREXIT_CHECK_VBAP
    But I guess I am doing something wrong can someone please take a look at it and tell me what is wrong with the coding.
    *&  Include       ZSD_CREATE_NEW_LINE_ITEM              *
    *&      Form  create_new_line_item
          text
    -->  p1        text
    <--  p2        text
    FORM CREATE_NEW_LINE_ITEM .
      CONSTANTS: C_MEINH LIKE MARM-MEINH VALUE 'CSE'.
    Variables Used
      DATA: WS_WMENG LIKE VBEP-WMENG.
      DATA: INPUT  LIKE VBAP-KWMENG,
            WS_EA  LIKE VBAP-KWMENG,
            WS_CSE LIKE VBAP-KWMENG.
      DATA: WS_MVKE_VRKME LIKE MVKE-VRKME.
    Internal Tables and Structures
      DATA: WS_XVBAP LIKE XVBAP.
    DATA:
    it_vbap  LIKE vbap OCCURS 0 WITH HEADER LINE,
    it_vbep  LIKE vbep OCCURS 0 WITH HEADER LINE,
    it_xvbap LIKE vbapvb OCCURS 0 WITH HEADER LINE.
      DATA: BEGIN OF WS_MARM,
              MEINH LIKE MARM-MEINH,
              UMREZ LIKE MARM-UMREZ,
              UMREN LIKE MARM-UMREN,
            END OF WS_MARM.
      CLEAR WS_MVKE_VRKME.
      SELECT SINGLE VRKME INTO WS_MVKE_VRKME
        FROM MVKE
        WHERE MATNR EQ XVBAP-MATNR
        AND   VKORG EQ XVBAK-VKORG
        AND   VTWEG EQ XVBAK-VTWEG.
      IF VBAP-VRKME <> WS_MVKE_VRKME.
       LOOP AT XVBAP.
          SELECT SINGLE MEINH UMREZ UMREN
            FROM MARM
            INTO WS_MARM
            WHERE MATNR = VBAP-MATNR
            AND   MEINH = WS_MVKE_VRKME.
          IF XVBAP-MEINS <> WS_MVKE_VRKME.
            IF NOT XVBAP-KWMENG = 0.
              WS_WMENG = XVBAP-KWMENG / WS_MARM-UMREZ.
              IF WS_WMENG > 1.
    This means that the line item needs to be split into CSE & EA
                  INPUT  = XVBAP-KWMENG.
                  WS_EA  = INPUT / WS_MARM-UMREZ.
                  WS_CSE = WS_EA.
                  WS_EA  = WS_CSE * WS_MARM-UMREZ.
                  WS_EA  = INPUT - WS_EA.
    Now we have the qty. split into EA & CSE. Now to
    assign it to xvbap
                  XVBAP-KWMENG = WS_EA.
                  XVBAP-VRKME  = WS_MVKE_VRKME.
              READ TABLE XVBAP WITH KEY POSNR = XVBAP-POSNR.
                MODIFY XVBAP INDEX SY-TABIX.
                  WS_XVBAP = XVBAP.
                  WS_XVBAP-KWMENG = WS_CSE.
                MOVE-CORRESPONDING WS_XVBAP TO XVBAP.
                INSERT XVBAP INDEX SY-TABIX.
              ENDIF.
            ENDIF.
          ENDIF.
      ENDIF.     " IF xvbap-vrkme 'EA'.
    ENDFORM.    " create_new_line_item

    Hi Clark,
    Pls check the Include MV45AFZZ instead of the one which you are using . Here in this include MV45AFZZ you can have access to the Header and Line items data .
    Here in this include
          FORM USEREXIT_SAVE_DOCUMENT                                   *
          This userexit can be used to save data in additional tables   *
          when a document is saved.                                     *
          If field T180-TRTYP contents 'H', the document will be        *
          created, else it will be changed.                             *
          This form is called at from form BELEG_SICHERN, before COMMIT *
    form userexit_save_document.
    Endform.
    Either you can write the code you want to update the XVABP table here or you can use the form .
          FORM USEREXIT_MOVE_FIELD_TO_VBAP                              *
          This userexit can be used to move some fields into the sales  *
          dokument item workaerea VBAP                                  *
          SVBAP-TABIX = 0:  Create item                                 *
          SVBAP-TABIX > 0:  Change item                                 *
          This form is called at the end of form VBAP_FUELLEN.          *
    form userexit_move_field_to_vbap.
    endform.
    This are the 2 performs in this include where you can do you code and it will defnitely solve your problem.
    Good Luck to you . Let me know if your problem get solved.
    Thanks & Regards,
    Naidu.

  • FMCN - Open Item upload Commitment not updated in case of Service Entry

    Hi All,
    I am trying to use FMCN to update commitment and fund centers in open PO's and GR's, however where there is material PO's it updating perfectly but if there is Service PO then it is not updating in GR/IR account with non budgeted commitment Item.
    Here in this client what they have done whenever they create the service entry sheet same time GR (MIGO) entry will get generated and then user can do the MIRO for the same.
    Please help me to update the same with Non Budgeted commitment.
    Regards,
    Alok

    Hi
    check this table also
    ESLB Service Type Header of Standard Service Catalog
    ESLH Service Package Header Data
    ESLP Service Item
    ESLL Lines of Service Package
    i thing this only link between  purchase table like Po table  and service PO table
    so we can link service po logic for service Po
    Regards
    kailas ugale

  • Balance sheet items profit center not updated

    In ECC 6- in 3KEI- we have given profit center derivation for balance sheet items through business area-
    Though derivation rule is given it is not updating profit center at the time of posting to balance sheet items
    it has worked perfectly in 4.7EE-
    How to update profit center for balance sheet items in ECC6
    Thanks in advance
    joseph

    Hi Joseph,
    Please go through the link. It is cristol clear document for your requirement.
    http://help.sap.com/bp_bblibrary/500/Documentation/J08_BPP_05_EN_KO.doc
    Regards,
    Satish Muvva.

  • ACC desktop not updating

    my adobe creative cloud desktop will not update, keeps showing error - 175, any clues

    Please read https://forums.adobe.com/thread/1499014
    -try some steps such as changing browsers and turning off your firewall
    -also flush your browser cache so you are starting with a fresh browser
    http://myleniumerrors.com/installation-and-licensing-problems/creative-cloud-error-codes-w ip/
    http://helpx.adobe.com/creative-cloud/kb/failed-install-creative-cloud-desktop.html
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Line item net price not updated in overview screen net price&line item

    Hi ,
    We have down payment order with 10 line items
    In orders with billing plan, the sales line item net price, if we entered manual condition price (ZPNP) ,gets updated in item condition net value. But it does not simultaneously gets updated at once in 1) Sales order overview screen net value 2) Billing plan header 3)Sales order overview screen line item condition  net value. Updation at these three places happens only after clicked on header conditions.
    However, in case of the last item in the sales order, the updation happens simultaneously in all the 3 places i.e. 1)    item condition net value. 2) Sales order overview screen net value 3) Billing plan header 4) Sales order overview screen line item condition net value.
    This is also true for the order with only single line item. We are faced a information popup message every time we change the item net price u201CItem 000100(100 is last line item number in sales order) exists already; the entry ignored u201C. This happens in case of all line items except the last line item. Also this does not happen in case where there is a single line item in order.
    Our requirement: The moment the net price of an item is change manually, it should get updated at all the 4 places mentioned above like it does in case of the last line item.
    Kindly help me to fix this problem.
    Regards,
    Adikesav

    Hi,
    Can u elaborate ur query ?
    By this FM you cannot create a SO . Use FM --> BAPI_SALESORDER_CREATEFROMDAT2
    Regards,
    MAdhukar Shetty

  • Using Aperture Album to feed Computer Desktop - not updating

    I have an Aperture album I like to toss pictures into that I call Aperture Desktops. Then in system prefs I select that album and use as my MacBook Pro's desktop picture, with random on. It gives me a nice way to see favorite photos.
    The problem is this does not seem to update... I add photos and they do not show up - sometimes they show up weeks later. I have tried pointing to a different album, then back but that does not work either. It seems like it should just work but there seems to be something delaying updates showing up. Ideas?

    I can't believe no one else has seen this - driving me crazy!

  • Open Items from FI not updating Credit Exposure

    Hi,
    I've activated BADI's, i have created a sales order(4400), did billing (4400) and posted and incoming payment (4400) to the billing document, in credit exposure report i am seeing orders and billing document in two credit exposure coloumns, though i did the payment. I am not able to see the liability category 200 (Open Items from FI) in it. Could anyone suggest what's missing. Why in credit limit utilization report it is showing 176% over utilization, i've maintained a credit limit of 5000.

    if you have paid your invoice - your credit exposure for the single transaction should be zero.
    Within your credit exposure you have un billed sales orders, un billed deliveries, and unpaid invoices, and other Finance journals.
    If you create an invoice for 100, and then clear that invoice via a payment of 100 - your credit exposure should be zero.

  • Catlog item price is not updated after pubishing catalog sucessfully

    Hi,
    Hi All,
    Our user has updated catalog item price for sullplier and published successfully long ago, but when ever user creating Shopping cart fro that catalog then item price is still showing old price instead of new price.
    Request you to any one advice me, how to solve this issue?
    Many Tnaks,
    Venkat

    is the TREX running ??
    In your SRM system go to transaction SM59 and under TCP/IP-Connections search for destination called
    TREXDEFAULT_REG, double-click on it and click on connection test button (your destination might have a different name).
    Please check following table entries.
    /CCM/D_CTLG_REQ SE
    /CCM/D_IDX_META inactive index
    /CCM/D_IDX_CHAR any entries for inactive index ?
    are u publshing the entire master catalog ?? or part of it ??
    thanks
    -Adrivit

  • Desktop Not Updating - Used, Available

    I have a problem. Why isn't my Desktop updating itself? I have a USB Flash drive connected to my iMac, which I've just deleted all the files off, and emptied the Trash. Yet the Desktop still says there's only 772MB free space on the Flash drive. Why is this?
    If I go to the Dashboard and check my iStat pro widget, the widget gets it right. The widget knows that the Flash drive is empty, but Apple's official Desktop doesn't. Makes no sense to me.

    Hi Reuben, this is a known issue in Finder. No fix but a decent workaround here.
    -mj
    [email protected]

  • Item Cost Is not Updated when using Data Object OinventoryGenEntry in DTW

    Hello Everyone,               
    I'm using data transfer workbench (OInventoryGenEntry) to send the production to sap-bo. All The info that I entered in the layouts Documents.csv and Document_Lines.csv are correctly loaded, except the info related to the field "price". Do you know what changes should I apply to the layouts in order to make the DTW transfer the Item Price?
    (version: SAP Business One 2005A SP:01 PL:27)
    Thanks a lot
    Salomon Ponce
    Viniteck SA de CV
    Guadalajara, Jal. MEX

    Thank You Vincent. It works for finish goods that currently have cost in the sap-bo (taking std or avg) . Do you what should I do when the item is receiving the first-transation and it is an inventory entry coming from DTW ? Because when I test this conditions, the field "price" is ignored and when I check the inventory entry sent using dtw the recorded cost is "cero".
    Thank a lot
    Salomon Ponce

  • Item level status not updated

    Hi gurus,
    My problem is in the search result screen from Check Status Transaction. When it is create da SC (from Describe requirement or Internal Goods) and the PO is also created, item level status should be Purchase Order Created. However, the status is Approved. The PO is correctly created and it has already been sent to the vendor. Even the lorry icon and invoice icon are able.
    If the SC comes from a catalog item, then it is working ok.
    Do you know how to solved my issue?
    I am working with SRM 5.0 and Extended classic scenario.
    Many thanks!
    Patrícia

    HI,
    Try this link
    How Incoterms gets defaulted for STO
    Regards
    KK

Maybe you are looking for