UOM of PO Quantity cannot be changed

Hi Experts,
I have a requirement to change the UOM (Unit of Measure) of the PO quantity. The UOM has to changed from EA to MON. When I try to do that in the DOC_CHANGE badi, the system reverts back the changes in the PO with a information 'Unit of measure cannot be changed'.
Can someone let me know how to change the UOM in PO through this BADI or by some other means.
Thanks & Regards,
SRS

Hi David,
I accept that the PO quantity unit cannot be changed after the SC is approved. But there is a specific requirement in my case where the unit of measure needs to be changed when the buyer processes the PO (after the SC is approved). The new UOM is a custom one in my case.
This cannot be done in SC method of BBP_DOC_CHANGE_BADI. The reason is due to the fact that the BADI implementation is not called in the approval process.
I found out a way, although it is not the right one.
Creating custom UOM
SRM & ECC
In the UOM customizing (Tcode CUNI), copy the original UOM of the PO and create a new custom unit of measure. Uncheck the 'Primary ISO code' indicator. Don't change the ISO code of the new UOM. Maintain the other parameters (Int. meas. unit, Commercial, technical, Measurement Unit text) according to your requirements.
BADI Implementation
1) Create a BADI implementation of BBP_DOC_CHANGE_BADI
2) In the method BBP_PO_CHANGE, with the help of PO guid (lt_item-guid), update BBP_PDIGP with the custom UOM
3) In the same implementation, with the help of SC guid (lt_item-src_guid), update BBP_PDIGP and PRCD_COND with the custom UOM
4) Call FM BBP_PD_PO_RESET_BUFFER.
Now the new UOM of measure is updated in the PO, SC when the PO is processed.
Thanks & Regards,
SRS

Similar Messages

  • Item Status Cannot be Changed

    I  had an existing PO with an item on it that was flagged as not being an Inventory item by mistake. It appears the system allowed the creation of the PO while the item was flagged this way. A Goods Receipt PO was generated from the PO and all products on the PO showed an increase in Inventory except for the one item, which seems to make sense but I would have expected an error message for trying to receive that item. The quantity received for that item did not get placed in the warehouse. We realized this was probably due to the fact it was flagged as non inventory. If we try an modify the item to say it is an Inventory item we get the message "Inventory Item status cannot be changed due to the existence of either postings or documents." How do I find what is preventing this change and what can I do when I find it? Using Drag and Relate I have no open documents with this item on it.

    Hi,
    To find all those problematic PO is easy. Try:
    SELECT T0.DocNum, T1.ItemCode
    FROM OPOR T0
    JOIN POR1 T1 ON T1.DocENtry = T0.DocEntry
    JOIN OITM T2 ON T2.ItemCode = T1.ItemCode AND T2.InvntItem='N'
    Howeve, once you created any marketing document that includes those item codes, Inventory Item status will no longer be changeable.
    Thanks,
    Gordon

  • VL02N-Delivery Quantity can be changed in standered by the user

    Hi Gurus
    In STO Scenario After Making The Delivery VL10B Replenishment Delivery in Background
    In Change mode Delivery VL02N Delivery Quantity can be changed in std by the user how can i stop the changing the delivery quantity what should i do
    please its my client requirement
    Thanks in advance

    Dear Balarengan
    I have searched in MM forum and found this thread which is relevant to your requirement
    Forum post in ERP - Logistics Materials Management (MM): STO - How to control Over delivery ?
    STO - How to control Over delivery ?
    hope this helps you
    SAP has a logic for not controlling the over delivery in STO  in standard (unlike sales order  to delivery we have the controls in Zero VLP or 0VLP for this) because STO happens between plants of a same company code or different company codes .The movement of stocks are between plants But in a normal sales the delivery happens to a customer who is actually a third person and hence a user can misuse the delivery quantity
    A plant and an external customer cannot be treated as same
    Hence in SAP standards over delivery is not controlled in standard settings like item category etc
    Regards
    Raja

  • ROI failing because routing control cannot be changed

    Hi,
    I am trying to receive a PO through ROI , having routing option set at "Inspection Required" at PO level. I am getting the following Error : "The Deliver transaction could not be processed. The routing control is not set to Direct Delivery, and cannot be changed when the profile option \"RCV: Allow routing override\" is set to No."
    In interface table I have also changed the routing_header_id=2(for inspection Required) Still I am getting the same error.
    Its works when I change the profile options to "yes" but I cannot do that in production.
    Is there any way I can create Receipts for PO having routing information other then "Direct Delivery"?
    Regards
    Satya

    It worked for me after inserting few columns.
    Following is sample script I prepared for this.
    declare
    v_header_int_id NUMBER;
    v_group_id NUMBER;
    begin
    -- Intializing the Values.
    SELECT rcv_interface_groups_s.NEXTVAL INTO v_group_id FROM DUAL;
    SELECT rcv_headers_interface_s.NEXTVAL into v_header_int_id FROM DUAL;
    -- Interface table.
    insert into RCV_HEADERS_INTERFACE
    ( HEADER_INTERFACE_ID, -- RCV_INTERFACE_GROUPS_S.nextval
    GROUP_ID, -- group_id
    PROCESSING_STATUS_CODE, -- 'PENDING'
    RECEIPT_SOURCE_CODE, -- 'VENDOR'
    TRANSACTION_TYPE, -- 'NEW'
    AUTO_TRANSACT_CODE, -- 'RECEIVE'
    LAST_UPDATE_DATE, -- sysdate
    LAST_UPDATED_BY, --
    CREATION_DATE, -- sysdate
    CREATED_BY, -- 'receipt_header_id'
    LAST_UPDATE_LOGIN,
    VENDOR_ID, --
    SHIP_TO_ORGANIZATION_ID, --
    EXPECTED_RECEIPT_DATE, -- sysdate
    validation_flag -- 'Y'
    VALUES
    ( v_header_int_id
    , v_group_id
    , 'PENDING' -----processing_status_code
    , 'VENDOR' -----receipt_source_code
    , 'NEW' -----transaction_type
    , 'RECEIVE' -----auto_transact_code
    , SYSDATE -----last_update_date
    , 3689 -- last_updated_by
    , SYSDATE ------creation_date
    , 3689 -- created_by
    , 3689
    , 1000432 -- p_vendor_id
    , 103 -- ship_to_organization_id
    , SYSDATE -----expected_receipt_date
    , 'Y' -----validation_flag
    INSERT INTO rcv_transactions_interface
    (interface_transaction_id, -- RCV_TRANSACTIONS_INTERFACE_S.nextval
    group_id, -- rcv_headers_interface.group_id
    last_update_date, -- sysdate
    last_updated_by, --
    creation_date, -- sysdate
    created_by, --
    transaction_type, -- 'RECEIVE'
    transaction_date, -- sysdate
    processing_status_code, -- 'PENDING'
    processing_mode_code, -- 'BATCH'
    transaction_status_code, -- 'PENDING' ? COMPLETED
    quantity,
    unit_of_measure, --
    item_id,
    auto_transact_code, -- 'RECEIVE'
    receipt_source_code, -- 'VENDOR'
    vendor_id,
    SOURCE_DOCUMENT_CODE, -- 'PO'
    SOURCE_DOC_QUANTITY,
    source_doc_unit_of_measure,
    po_header_id, -- po_headers_all.po_header_id
    po_line_id, -- po_lines_all.po_header_id
    po_line_location_id, ------po_line_locations_all.line_location_id
    expected_receipt_date, -- sysdate
    header_interface_id, -- rcv_headers_interface.header_interface_id
    validation_flag, -- Y process_flag , -- Y
    TO_ORGANIZATION_ID,
    SUBINVENTORY,
    attribute1
    VALUES
    ( rcv_transactions_interface_s.NEXTVAL
    ,v_group_id
    ,SYSDATE ----last_update_date
    ,-1---last_updated_by
    ,SYSDATE --creation_date
    , -1 ----created_by
    ,'RECEIVE' ---transaction_type
    , sysdate
    ,'PENDING' ----processing_status_code
    ,'BATCH' ----processing_mode_code
    ,'PENDING' ----transaction_status_code
    , 2204 ----quantity
    ,'EACH' ----unit_of_measure
    , 688069 --1000-008240 item_id
    ,'DELIVER' -------auto_transact_code
    ,'VENDOR' ----receipt_source_code
    , 1000432 -- vendor_id
    ,'PO' ------source_document_code
    , 2204 ----quantity
    ,'EACH' ----unit_of_measure
    ,343382 -- header ID
    ,721459 -- Line ID
    ,720332------po_line_location_id
    ,sysdate ----expected_receipt_date
    ,V_HEADER_INT_ID --header_interface_id
    ,'Y' ----validation_flag
    ,103 ----to_organization_id
    ,'SELLABLE'
    ,'10-022792'
    commit;
    end;

  • The item contains one or more busy items that cannot be changed

    We have a Windows 2003 file server and we are having issues with Macs retrieving files/folders from it. There is a folder on the Windows share named "dropbin" that UserA has full permissions on. UserB has the following NTFS permissions on the dropbin folder.
    Traverse Folder / Execute File Allow
    List Folder / Read Data Allow
    Create Files / Write Data Allow
    Create Folders / Append Data Allow
    Write Attributes Allow
    Write Extended Attributes Allow
    This gives UserB the ability to look inside the dropbin folder and place content in there. This same user cannot delete or pull down anything that a different user (UserC) has put in there. UserA (the person with full permissions) should be able to pull down anything put in there.
    This works fine from an XP box if an XP user (UserB) puts content in there UserA from a Mac or a PC can get and manipulate the data. If a Mac user (UserB) puts a file up there (it seems to happen with a .txt file, a .cp file, or a .zip file) UserA from a Mac gets the following error when trying to download the file:
    "You may need to enter the name and password for an administrator on this computer to change the item named item.txt"
    When you hit continue you get the following error:
    "The item item.txt contains one or more busy items that cannot be changed"
    If you proceed to enter in the admin credentials, the file doesn't copy down to the local Mac and fails without an error.
    A couple of things we noticed....
    1. If Mac UserB puts up a Word document or a .dmg file then UserA from a Mac can pull it down fine without errors.
    2. On the Windows 2003 server we noticed that for each file we tried to upload it creates a ._ corresponding hidden file. For example, item.txt also has ._item.txt. If we go up on the server and remove the hidden file, Mac UserA can pull down the file fine.
    3. We tried zipping the files (or files and folders) locally on Mac UserB's desktop then putting the .zip file up there but since it creates a ._file.zip Mac UserA still can't pull it down.
    4. The fix we found for this is to have Mac UserB place the files they want to upload into a folder on the desktop, then upload that folder. When Mac UserA comes by they can pull down that folder's worth of stuff.
    We are accessing the Windows 2003 file share by going to the finder and using the "Go" menu and entering in:
    smb://servername/sharename
    and they use their Windows domain credentials to log in.

    We may have figured this out but it requires some more testing. The reason why the file upload creates the ._ files in the dropbin folder when UserB puts content in there is because UserB does not have the "Delete" permission in that folder. My guess is that it creates the ._ file when the file is in transit but then deletes that file after it has completed the transfer (but without the delete permission it couldn't remove the ._ file). What we did was added another user to the NTFS permissions for that folder, we added the built in "CREATOR OWNER" account and gave that user the "Delete" permission, now the ._ files do not appear under there and UserA can come along and manage the uploaded file okay.
    Hope this helps someone else out.

  • One or more busy items cannot be changed

    I've dragged songs out of iTunes to a folder on the desktop, dragging this folder to my external HD the message "the item "..." contains one or more busy items that cannot be changed" comes up. The permissions for this folder are read and write so not sure what else to do. I've done this before and had no problems...

    I finally sorted out a similar problem.
    Discover which files are involved by copying the *contents* of the source folder to a destination.
    The offending folder (or folders) should display by name. If the item is a file, the file name should display. You can drill down within a folder by the same process: copy the contents (not the entire folder) to a destination, to find the offending folder or item.
    I ran across and old (2002) posting which mentioned file type as preventing deletion:
    http://hints.macworld.com/article.php?story=20020920055805577
    I found an old application which can display file creator and type on OS X:
    http://www.frederikseiffert.de/filetype/
    How old is it? The System Requirements are:
    "FileType runs on Mac OS X v10.0 or later and on Mac OS 8.6 or later with CarbonLib 1.3."
    It runs on 10.4. Haven't tested anything later.
    I discovered that the file types on the offending files were "brok". It so happens they were all tiffs, so I changed them to "TIFF". I still got a message about needing to enter an admin user and password, but the copy then worked.

  • I am trying to authorize my computer and I get an error message: The required directory was not found or has a permissions error. Correct this permissions problem and try again, or deauthorize this computer if the permissions cannot be changed. Help?

    I am trying to authorize my computer and I get an error message: The required directory was not found or has a permissions error. Correct this permissions problem and try again, or deauthorize this computer if the permissions cannot be changed. Help?

    I used Terminal to change the permissions on the folder in question.  I followed the instructions in this article:
    iTunes: Missing folder or incorrect permissions may prevent authorization
    In my case, the folder was there, so I needed the command to change permissions on the folder, not to create one.   I was hesitant to use Terminal b/c I know that if I made an error I could wipe out my hard drive or render my computer unusable.  So to be SURE I didn't make an error, I carefully copied the command from that page and *pasted* it into Terminal.  Also, before I could do anything in Terminal, I had to go change my admin password (it had been a blank password before and that's not acceptable for making changes in Terminal).  I was just super careful when entering my password or doing anything else while Terminal was open (making sure I didn't accidently hit the spacebar or another key, etc.)  And it fixed the problem right away.
    What was confusing for me was that the iTunes error message said to change permissions in the FINDER, which is what I was trying to do.  It didn't mention Terminal.  What would really be helpful is if Apple included a link to a page like this in their error message.

  • HT1296 I have a problem synching calendar data between my iPhone 3GS iOS 5.1 & Outlook 2007 on MS7.  The basic calendar is OK but the birthdays (little box icon) are a day early & cannot be changed to the correct date. How can I fix this?

    I have a problem synching calendar data between my iPhone 3GS iOS 5.1 & Outlook 2007 on MS7.  The basic calendar data transfer is OK but the birthdays (little box icon) are a day early & cannot be changed to the correct date. The birthday entries in my Outlook contacts have correct dates.How can I fix this?

    The following peocess corrects the calendar entry:
    edit the contact & change the birthday, save the change; edit the contact & change the birthday to the correct value, save the change again. The calendar entry then displays on the correct date.  Alternatively as a temp solution I can just de-select the "birthdays" calendar which stops the icon being displayed.
    Thanks for your advice, I think that it's n going to be a slow process to fix all the entries for not much return.

  • Exchange Connector 3.0 (Hotfix Release) Error - Error Message=The key value of an object cannot be changed.

    Hello,
    I am running Service Manager 2012 with the Exchange Connector 3.0 RTM (Re-release Version).  The issue I have is that when an e-mail is processed that is trying to update the status or event log of an incident, the Exchange Connector encounters an error
    and will not update the object.  The Operations Manager log denotes: 
    Exchange Connector: Unable to process mail item. Subject="Close Ticket: [IRXXXXX]", Error Message=The key value of an object cannot be changed.
    This will happen on a seemingly random selection of Incident work items.  I cannot correlate them with a specific template, exchange connector, or incident tier queue that could be causing the issue.  I can recreate the way a specific ticket
    was created and update it through e-mail without issue, and the next ticket can cause the error to trigger. 
    I have already opened a Microsoft Support Case using our Software Assurance agreement.  After a few months of troubleshooting the issue and trying different fixes, Microsoft support said they were unable to fix the problem and that we would need to
    purchase Premier support to go further. At this point I thought I would reach out to the community for ideas.
    The setup I have for the Exchange connectors is as follows.
    I have three separate Exchange connectors set up to three different mailboxes.  One Exchange connector processes external support tickets and applies a specific template.  Another processes client support tickets and applies a different template. 
    And the last Exchange connector processes internal tickets and also processes the updates of tickets created by the other two exchange connectors. 
    Here are the fixes I've attempted so far:
    1.  Changed the templates that each Exchange connector applies.
    2.  Changed the management pack that each template is stored in.
    3.  Checked my management pack(s) for extended classes by searching for Extension="true" (This was also checked by Microsoft support)
    4.  Deleted each Exchange connector and recreated each connector
    5.  Deleted each Exchange connector, deleted the management pack, and reinstalled the management pack and connectors
    6.  Repeated Step 5, deleted Microsoft.SystemCenter.ExchangeConnector.dll and Microsoft.SystemCenter.ExchangeConnector.resources.dll and then installed the Exchange connector Re-release version 3.0 Published 10/7/2013 (which is supposed to address this
    issue)
    7.  Deleted the HealthServiceState folder and restarted the Management Service
    I'm not really sure what to do at this point.  I've put many hours into customizing my installation to get it working for my organization so reformatting and starting from scratch would be a nightmare scenario.  This environment is in production.
    I do have a band-aid in place using Orchestrator.  Basically I have a monitor task searching for the error message and when it finds one it searches the mailbox for the offending e-mail and applies either the Resolve or Close status change that is requested
    from the user.  However, I do not have it working to update the ticket if a comment is applied to the incident.  If anyone is in this position and needs to know how to apply this Orchestrator task I am willing to provide my workflow.
    I am new to the community and am already impressed with the amount of help and effort there is in this forum.  I appreciate in advance any help that is provided and am open to any ideas at this point.  I can post more information as needed.
    Thank you,
    John

    Yes that is the whole template.  However, I did confirm that this is only happening to incidents where either of two situations triggers a runbook to fire and modify the incident.  When I remove the activity from the incident it does clear the
    issue.  For some background the first Runbook Activity set's the first response date when an incident is resolved if the first response value is null.  The second assigns the incident to a user upon creation if the title contains assignto:username;
    1.)
    <ObjectTemplate ID="Template.d33b5bbcaf3c49b18d8b72bc1e5e1ee4" TypeID="IncidentManagement!System.WorkItem.Incident.ProjectionType">
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Incident_Library!System.WorkItem.Incident']/Escalated$">False</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Incident_Library!System.WorkItem.Incident']/NeedsKnowledgeArticle$">False</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Incident_Library!System.WorkItem.Incident']/HasCreatedKnowledgeArticle$">False</Property>
    <Object Path="$Context/Path[Relationship='CustomSystem_WorkItem_Activity_Library!System.WorkItemContainsActivity' TypeConstraint='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity']$">
    <Property Path="$Context/Property[Type='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity.Base']/RunbookId$">4085f0da-ab83-48e5-bbe3-1f3b5fa2dc4a</Property>
    <Property Path="$Context/Property[Type='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity.Base']/TemplateId$">Template.d33b5bbcaf3c49b18d8b72bc1e5e1ee4</Property>
    <Property Path="$Context/Property[Type='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity.Base']/IsReadyForAutomation$">True</Property>
    <Property Path="$Context/Property[Type='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity.Base']/PropertyMapping$">&lt;?xml version="1.0" encoding="utf-16"?&gt;
    &lt;ParameterMapping xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
    &lt;ParameterList&gt;
    &lt;RunbookParameterItem&gt;
    &lt;Name&gt;Get RA Guid&lt;/Name&gt;
    &lt;Id&gt;344b15effc1a44528e517c5b4227179c&lt;/Id&gt;
    &lt;Type&gt;String&lt;/Type&gt;
    &lt;Value&gt;Generic::Id&lt;/Value&gt;
    &lt;Direction&gt;In&lt;/Direction&gt;
    &lt;ContextInfo /&gt;
    &lt;/RunbookParameterItem&gt;
    &lt;/ParameterList&gt;
    &lt;RunbookId&gt;4085f0da-ab83-48e5-bbe3-1f3b5fa2dc4a&lt;/RunbookId&gt;
    &lt;/ParameterMapping&gt;</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Activity_Library!System.WorkItem.Activity']/ChildId$">1906</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Activity_Library!System.WorkItem.Activity']/Status$">$MPElement[Name='CustomSystem_WorkItem_Activity_Library!ActivityStatusEnum.Active']$</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Activity_Library!System.WorkItem.Activity']/Skip$">False</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Library!System.WorkItem']/Title$">Set First Response on Resolve</Property>
    </Object>
    </ObjectTemplate>
    2.)
    <ObjectTemplate ID="Template.b311e1f9126e4e19bbbbeb65ddb220ba" TypeID="IncidentManagement!System.WorkItem.Incident.ProjectionType">
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Incident_Library!System.WorkItem.Incident']/Escalated$">False</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Incident_Library!System.WorkItem.Incident']/Status$">$MPElement[Name='CustomSystem_WorkItem_Incident_Library!IncidentStatusEnum.Active']$</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Incident_Library!System.WorkItem.Incident']/NeedsKnowledgeArticle$">False</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Incident_Library!System.WorkItem.Incident']/HasCreatedKnowledgeArticle$">False</Property>
    <Object Path="$Context/Path[Relationship='CustomSystem_WorkItem_Activity_Library!System.WorkItemContainsActivity' TypeConstraint='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity']$">
    <Property Path="$Context/Property[Type='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity.Base']/RunbookId$">ca88b13b-861a-4d39-a3cb-fd912d951e35</Property>
    <Property Path="$Context/Property[Type='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity.Base']/TemplateId$">Template.b311e1f9126e4e19bbbbeb65ddb220ba</Property>
    <Property Path="$Context/Property[Type='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity.Base']/IsReadyForAutomation$">True</Property>
    <Property Path="$Context/Property[Type='CustomMicrosoft_SystemCenter_Orchestrator!Microsoft.SystemCenter.Orchestrator.RunbookAutomationActivity.Base']/PropertyMapping$">&lt;?xml version="1.0" encoding="utf-16"?&gt;
    &lt;ParameterMapping xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
    &lt;ParameterList&gt;
    &lt;RunbookParameterItem&gt;
    &lt;Name&gt;RA Activity GUID&lt;/Name&gt;
    &lt;Id&gt;5677d117a0294a2c898a695032f26c72&lt;/Id&gt;
    &lt;Type&gt;String&lt;/Type&gt;
    &lt;Value&gt;Generic::Id&lt;/Value&gt;
    &lt;Direction&gt;In&lt;/Direction&gt;
    &lt;ContextInfo /&gt;
    &lt;/RunbookParameterItem&gt;
    &lt;/ParameterList&gt;
    &lt;RunbookId&gt;ca88b13b-861a-4d39-a3cb-fd912d951e35&lt;/RunbookId&gt;
    &lt;/ParameterMapping&gt;</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Activity_Library!System.WorkItem.Activity']/ChildId$">1120</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Activity_Library!System.WorkItem.Activity']/Status$">$MPElement[Name='CustomSystem_WorkItem_Activity_Library!ActivityStatusEnum.Active']$</Property>
    <Property Path="$Context/Property[Type='CustomSystem_WorkItem_Activity_Library!System.WorkItem.Activity']/Skip$">False</Property>
    <Property Path="$Context/Property[Type='WorkItem!System.WorkItem']/Title$">Execute Orchestrator IR - Autoassign</Property>
    </Object>
    </ObjectTemplate>

  • Error message: iMovie cannot save changes to the library!?!

    iMovie crashed my computer and now I can't creat a new movie.
    Here's the full error message:
    iMovie cannot save changes to the library.
    The hard disk where your library is located may be full or unavailable or permissions may have changed. To avoid losing your work, quit iMovie.
    What's up with this? I tried trashing the preferences, but got the same message. I have a 27-inch late 2013 iMac running Mavericks with 445.55 GB free space.
    Please let me know if you have any suggestions.

    You've already tried trashing iMovie preferences (By the way think in Mavericks you have to reboot as well after this for the new preferences to take effect) .  One other thing to try is creating a new user account, logging in and seeing if you can create a new project in iMovie (of course you won't see your exisitng projects).  If you can then iMovie itself is OK.  If not  then the only other thing I can think of is re-installing iMovie  (see http://macs.about.com/od/usingyourmac/qt/How-To-Re-Download-Apps-From-The-Mac-Ap p-Store.htm)
    Is everthing else working OK after your computer crash?  Maybe you should also run Verify disk in Disk Utility.
    Maybe someone-else has some other suggestions (I have not heard of this problem before)?
    Geoff

  • Novated Purchase orders cannot be changed error

    Hi Experts,
        while trying to edit the PO we are getting an error as " Novated Purchase orders cannot be changed" . I am confused that which field is used to differentiate the normal PO to that of novated PO at portal level.  Please let us know why this error occurs and how can we solve the issue ?
       Thanks in Advance.
    Thanks & Regards,
    Aishwarya.M

    Hello Aishwarya ,
    A Novation is agreement of parties usually done in conjunction with an assignment where upon the assignment there is now a new agreement between the original party whose contract was assigned and the party to whom the contract was assigned that in effect extinguishes (cancels) the old agreement and relieves the assigning party of liability under the contract. 
    For example if A and B have a contract and there is an assignment and novation of that contract by B to C, the contract would now be between A and C and B would no longer be liable to A under the contract as the “novation” extinguishes their liability.
    If you wanted to prevent a novation you might include something like the following:
    “This contract shall be binding on the parties and their respective successors and permitted assigns. Except in the instance of an assignment or transfer by Buyer of all or any portion of this agreement, the assigning party shall remain liable for the performance of any assigned or transferred obligations hereunder.
    The requirements for a novation may vary by jurisdiction. For example in New York for there to be a novation it must specifically say it is a novation. In assignment consent letters Suppliers may try to create a novation by the words they use where the language in affect would say that Buyer may only look to the new entity going forward. Please check with the PO which supplier is being used and also check is there any third party involvement in that PO.
    Thanks
    Gaurav Gautam

  • Getting authorization error message: Required file was not found or has a permissions error. Correct this permissions problem and try again, or deauthorize this computer if the permissions cannot be changed.

    I have recently purchased this MacBook used and am trying to authorize it on the iTunes Store but even after uninstalling iTunes and re-installing it with a fresh copy I'm getting this error message: "The required file was not found or has a permissions error. Correct this permissions problem and try again, or deauthorize this computer if the permissions cannot be changed."  And I have no idea of where or how to fix this issue.  Any help or suggestions will be greatly appreciated.  I even tried to deauthorize this computer and got the same error message.  HELP!

    I used Terminal to change the permissions on the folder in question.  I followed the instructions in this article:
    iTunes: Missing folder or incorrect permissions may prevent authorization
    In my case, the folder was there, so I needed the command to change permissions on the folder, not to create one.   I was hesitant to use Terminal b/c I know that if I made an error I could wipe out my hard drive or render my computer unusable.  So to be SURE I didn't make an error, I carefully copied the command from that page and *pasted* it into Terminal.  Also, before I could do anything in Terminal, I had to go change my admin password (it had been a blank password before and that's not acceptable for making changes in Terminal).  I was just super careful when entering my password or doing anything else while Terminal was open (making sure I didn't accidently hit the spacebar or another key, etc.)  And it fixed the problem right away.
    What was confusing for me was that the iTunes error message said to change permissions in the FINDER, which is what I was trying to do.  It didn't mention Terminal.  What would really be helpful is if Apple included a link to a page like this in their error message.

  • Sales Office and Sales Group cannot be changed

    Hi folks,
    when i create a sales doc. based on a billing doc./sales doc.,  the sales units - sales ortgn, dist. channel, division, sales office and sales group are copied onto the newly created doc.
    Sales orgtn, distr. channel and division are coming in grey mode or in disable mode which cannot be changed.
    But Sales office and sales group are changeable..
    Is there any way to make these two fields i.e Sales Office and Sales Group  also in grey mode / disable mode or unchangeable mode.
    thanx in advance,
    Sourav

    hello, friend.
    try using SHD0 to create your own screen variant for the sales order.  just follow the on-screen instructions.  look for Sales Office and Sales Group (if any) and check the box making manual entries not possible.  after you save the variant, assign this to your order type and test.
    regards.

  • I updated to os x 10.8.5 today and now I cannot publish changes to my web page through iweb.  iweb crashes every time I try to publish

    I updated to os x 10.8.5 today and now I cannot publish changes to my web page through iweb.  iweb crashes every time I try to publish

    First do the following:
    1 - delete the iWeb preference file, com.apple.iWeb.plist, that resides in your
         User/Home/Library/ Preferences folder.
    2 - delete iWeb's cache file, Cache.db, that is located in your
    User/Home/Library/Caches/com.apple.iWeb folder (Snow Leopard and Earlier).
    NOTE:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    Next, in Lion and Mountain Lion the Home/Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and press the Return key - 10.7: Un-hide the User Library folder.
    To open your domain file in Lion or Mountain Lion or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    You can download an already compiled version with this link: iWeb Switch Domain.
    Just launch the application, find and select the domain file in your Home/Library/Application Support/iWeb folder that you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.
    OT

  • Correct this permissions problem and try again, or deauthorize this computer if the permissions cannot be changed.

    I don't understand what to do. The required file was not found or has a permissions error. Correct this permissions problem and try again, or deauthorize this computer if the permissions cannot be changed.

    jackeskew wrote:
    I don't understand what to do. The required file was not found or has a permissions error. Correct this permissions problem and try again, or deauthorize this computer if the permissions cannot be changed.
    Can you explain a bit more about what you are trying to do or what you were trying to open? You need to add a lot more details.
    Thanks
    Pete

Maybe you are looking for