Update BP name in open documents - not in Deliveries

Hi all,
today I experimented the new function that lets you update open documents when a Business Partner name is changed. I did this in SBO 8.81 PL04. In OEC Computers, I picked a customer with the following open documents: 2 Deliveries, 2 POs and 6 Opportunities. I changed the BP name and said Yes when asked if I want to update open documents. The POs and Opportunities where all updated, but not the Deliveries.
I was wondering why the Deliveries were not updated. I went across Note #1529237, which states that this function was corrected in 8.8 PL18. The note does not talk about Deliveries. Is it a bug or a feature ?
Thanks

Hi,
Welcome you post on the forum.
It is not a bug but a feature. Delivery will affect financial data. That is why you can not update.
Thanks,
Gordno

Similar Messages

  • I save and closed my Keynote presentation and it just won't open. Message : Can't open document «Not a valid ketnote document»

    I just finished a keynote presentation and saved and closed it. Now it just won't open. Message : Can't open document «Not a valid keynote document»
    I recreated a new one. And it does the same. Impossible to reopen any of my keynote presentations.
    What can I do!!! My presentationis tomorrow morning!!!
    Keynote '09 version 5.0.5 with MAC OS 10.6.7

    Have the same issue. Use the same version and OS. I get sometimes the message 'Could not save the document. No such file or directory. What happens is that the file is corrupted and not usable anymore.... Sorry i can not help, but this is a serious error and we get crazy here since we have several stations with the same problem....
    Come on Apple... help!

  • Loop through all open documents not performing some actions

    I have a loop that imports XML, then Exports each page individually, then has a SaveAs dialog for the indd, then closes the active document.
    The import XML works, the SaveAs works, and the close works but the loop skips over the PDF part. Is it because I need to define myCounter in the for loop within the ExportPDF function? I just included the part from Choose XML to the end of ExportPDF.
    //choose XML
    var FilterXML = "XML File: *.xml";
    var myXML = File.openDialog("Choose XML File", FilterXML);
    //loop for each action below
    for(myDocumentCounter = app.documents.length; myDocumentCounter > 0; myDocumentCounter--){
    //import XML
    app.activeDocument.importXML(myXML);
    //PDF by page to settings; preset must be "dailies_x1a"
    function myExportPages(myFolder){
    var myPageName, myFilePath, myFile;
    var myDocument = app.activeDocument;
    var myDocumentName = myDocument.name;
    var myBaseName = myBaseNameField.editContents;
    for(var myCounter = 0; myCounter < myDocument.pages.length; myCounter++){
    myPageName = myDocument.pages.item(myCounter).name;
    app.pdfExportPreferences.pageRange = myPageName;
    //The name of the exported files will be the base name + the page name + ".pdf".
    //If the page name contains a colon (as it will if the document contains sections), then remove the colon.
    var myRegExp = new RegExp(":","gi");
    myPageName = myPageName.replace(myRegExp, "_");
    myFilePath = myFolder + "/" + myBaseName + "_" + myPageName + ".pdf";
    myFile = new File(myFilePath);
    myDocument.exportFile(ExportFormat.pdfType, myFile, false, "dailies_x1a");

    Nevermind, I found my error. Code should read...
    for(myDocumentCounter = app.documents.length; myDocumentCounter > 0; myDocumentCounter--){
    if(app.documents.length != 0){
    var myFolder = Folder.selectDialog ("Choose a Folder to Save the PDFs");
    if(myFolder != null){
    myExportPages(myFolder);
    else{
    alert("Please open a document and try again.");
    function myExportPages(myFolder){
    var myPageName, myFilePath, myFile;
    var myDocument = app.activeDocument;
    var myDocumentName = myDocument.name;
    var myDialog = app.dialogs.add();
    with(myDialog.dialogColumns.add().dialogRows.add()){
    staticTexts.add({staticLabel:"Please Modify the Base Name if Necissary:"});
    var myBaseNameField = textEditboxes.add({editContents:myDocumentName,
    minWidth:160});
    var myResult = myDialog.show({name:"ExportPages"});
    if(myResult == true){
    var myBaseName = myBaseNameField.editContents;
    //Remove the dialog box from memory.
    myDialog.destroy();
    for(var myCounter = 0; myCounter < myDocument.pages.length;
    myCounter++){
    myPageName = myDocument.pages.item(myCounter).name;
    app.pdfExportPreferences.pageRange = myPageName;
    //The name of the exported files will be the base name + the
    //page name + ".pdf".
    //If the page name contains a colon (as it will if the
    //document contains sections),
    //then remove the colon.
    var myRegExp = new RegExp(":","gi");
    myPageName = myPageName.replace(myRegExp, "_");
    myFilePath = myFolder + "/" + myBaseName + "_" + myPageName + ".pdf";
    myFile = new File(myFilePath);
    myDocument.exportFile(ExportFormat.pdfType, myFile, false, "dailies_x1a");
    else{
    myDialog.destroy();

  • Cannot update customer name in R12.0.6

    We are experiencing one issue where we cannot update the customer name in the customer form in AR. When we try to update a customer name we get an error message. "Error Page
    You have encountered an unexpected error. Please contact the System Administrator for assistance.
    Click here for exception details.

    Hi,
    Please post the complete error message, or check the log files for details about the error.
    Also, review these documents and see if it helps.
    Note: 739040.1 - Not Able To Update Customer name - Null pointer exception thrown
    Note: 779028.1 - R12 - java.lang.NullPointerException Error When Update Customer Name in Customers Screen
    Note: 745545.1 - R12 Customer Profile Page Produce Error When Insert Update
    Regards,
    Hussein

  • How to find list or folder name from SharePoint document URL

    I'm implementing the SharePoint client object model in my VSTO application in .NET framework 4.0(C#).
    Actually we open MS Word files from SharePoint site, we need to create a folder inside the opened documents list/folder and after it we want to upload/add some files to that created folder.
    My problem is that how to get list name/title and folder name of opened document by using the documents URL or Is there an another option to find the list or folder name of opened document.
    Any help will be appreciable.

    In document Library you can get the name of document library directly in URL. for folder name you can try below:
    using System;
    using Microsoft.SharePoint;
    namespace Test
    class ConsoleApp
    static void Main(string[] args)
    using (SPSite site = new SPSite("http://localhost"))
    using (SPWeb web = site.OpenWeb())
    if (web.DoesUserHavePermissions(SPBasePermissions.BrowseDirectories))
    // Get a folder by server-relative URL.
    string url = web.ServerRelativeUrl + "/shared documents/test folder";
    SPFolder folder = web.GetFolder(url);
    try
    // Get the folder's Guid.
    Guid id = folder.UniqueId;
    Console.WriteLine(id);
    // Get a folder by Guid.
    folder = web.GetFolder(id);
    url = folder.ServerRelativeUrl;
    Console.WriteLine(url);
    catch (System.IO.FileNotFoundException ex)
    Console.WriteLine(ex.Message);
    Console.ReadLine();
    http://msdn.microsoft.com/en-us/library/office/ms461676(v=office.15).aspx
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/801d1a06-0c9b-429b-a848-dd6e24de8bb9/sharepoint-webservice-to-get-the-guid-of-the-folder?forum=sharepointdevelopmentlegacy
    You can also try below:
    http://blogs.msdn.com/b/crm/archive/2008/03/28/contextual-sharepoint-document-libraries-and-folders-with-microsoft-dynamics-crm.aspx
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/d2d5d7cf-9bbd-4e0f-a772-ecdce4e6149f/how-to-fetch-document-guid-from-sharepoint-document-library-using-sharepoint-web-service?forum=sharepointdevelopmentlegacy
    http://stackoverflow.com/questions/2107716/how-to-get-guid-of-a-subfolder-in-a-document-library-programmatically

  • Update vendor name in oracle ebs r12

    Hi,
    I am using pos_vendor_pub_pkg.UPDATE_VENDOR API for update Vendor Name but it can not update it.
    Can I update vendor name using update command such as:  
    UPDATE ap_suppliers
    SET VENDOR_NAME = 'SUDIPTA ROY'
    WHERE segment1 ='1057145'
    Please suggest on this.
    Thanks,
    Nitin

    If the profile option HZ: Change Party Name is set to No the update to vendor name is not allowed.
    You will get the following error.
    Failed to update party: TCA: Return Status:E: Error : Organization name cannot be updated because the HZ: Change Party Name profile option is set to No.

  • New tabs are not updating the names of the sites they have loaded. When I open a new tab and load a site, the tab simply stays named "New Tab". When I open a link in a new window, it shows "Connecting..." even while its fully loaded.

    New tabs are not updating the names of the sites they have loaded. When I open a new tab and load a site, the tab simply stays named "New Tab". When I open a link in a new window, it shows "Connecting..." even while its fully loaded.

    This issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * [[Troubleshooting extensions and themes]]

  • Why does my iPad 1 not open documents in pages from my mac after downloading update on pages on mac?

    Why does my iPad 1 not open documents from my updated mac-pro laptop pages since i updated the mac. Have updated latest pages for iPad 1 it could and still not able to open docs as i could before update on mac-pro

    The most recent version of Pages that you can run on the iPad 1, running iOS 5.1.1, is not compaible with the newest version of pages on the Mac.
    If you had the old version of Pages on your Mac, and off hand I can't remember what version it was, you should still be able to use that version and then it will be compatible with the Pages app on the iPad. I updated to the newest version of Pages some time back but was able to keep the older version as well.

  • Hi My name ali from iran  IDi I opened my iPad in China because the Chinese did not notice but I update my information  Unfortunately, due to the country's name to Iran sanctions not Sbn I chose to make Iraq  Now I'm able to take my Mastercard and softwar

    Hi
    My name ali from iran
    IDi I opened my iPad in China because the Chinese did not notice but I update my information
    Unfortunately, due to the country's name to Iran sanctions not Sbn I chose to make Iraq
    Now I'm able to take my Mastercard and software applications I buy from iTunes
    But I do not know how?, Please help me to register your MasterCard

    Dear Hi
    I would also be in itunes and App Store Get into English
    I've opened all of IDI in China is Chinese and I do not understand Software
    Program
    Please advise me please
    Thank you
    Ali

  • Wouldn't be a handy update if at the top of the open Pages document, next to the Apple and Pages menu option, it showed the open document name or file name?

    Just as the title says, really.

    I'm not sure where the Apple and Pages menu option is.  When I'm editing a document in iCloud Beta the name of the document is in the window caption (below).
    But your suggestions should be sent directly to Apple and you can do that via the Send Us Feedback button at the top of the document list page:

  • Word Viewer will not open documents from Sharepoint 2013 in IE11

    I've run into an issue while trying to open documents from SharePoint 2013 after upgrading to IE11. My organization uses Word Viewer with the compatibility pack and all other Word documents (local files, intranet hosted) will open with no problems. When
    trying to open a Word document from SharePoint the Word Viewer will open, but the file does not. We have verified that all Windows Updates are installed. We have tried opening SharePoint in Compatibility View and Enterprise Mode. We have re-downloaded the
    latest version of Word Viewer and reinstalled it along with the compatibility pack. If we open the SharePoint site in Explorer view and then open a Word document it will open in Word Viewer with no problem. Excel and PowerPoint documents open from SharePoint
    with no problem. This is only affecting Word documents with Word Viewer. When using the full version of Word the documents open fine. Within SharePoint we have tried activating the site collection feature "Open Document In Client Applications by Default"
    but it made no difference. We're completely at a loss how to make this work as there doesn't seem to be much information specifically pertaining to issues with Word Viewer.

    Hi Victoria.
    1. The PCs do not have Microsoft Office installed, nor are we using the Office Web Apps. "Word Viewer" means the Microsoft Word Viewer application available here (http://www.microsoft.com/en-us/download/details.aspx?id=4) that is available
    free for read-only viewing of Word documents.
    2. There are no errors when I open Word docs in Word Viewer. The Word Viewer application launches after clicking a Word document link in Sharepoint, but there is no file open in it. When that happens the IE11 Sharepoint window on the taskbar is flashing
    yellow, but when I click back to it there are no messages or alerts to click on.
    3. This issue does occur with all Word documents (.doc, .docx) in SharePoint. However, it does not occur when opening Word documents in the Word Viewer when they are local files or through IE11 from a non-SharePoint website like our local intranet.
    Those files will open with no problem in Word Viewer.
    4. I will try to get a screenshot, but we are working on creating images for deployment and I don't currently have a machine configured the same way. I'll work on reconfiguring one and post a screenshot.
    Thank you for your help!

  • Office 2013 Will not open documents in a shared folder but 2007 will.

    Hi,
    Recently we are testing office 2013 and have noticed a problem. When office attempts to open an Excel or Word document that is stored on a shared drive on the file server it will not open it. When you double click on the document, either word or
    Excel, the appropriate Office app opens, but it opens on the start screen, i.e. the one with the templates displayed.
    There are no error messages displayed , and it appears that the office app opens twice, i.e you see the splash screen with the app name on it two times in quick succession, however you cannot find two instances of the app open.
    If you simply copy the document from the shared drive to the users desktop and then double click the file , the appropriate app opens and the file also opens without a problem.
    Also if you go to a client machine with office 2007 loaded on it then the document on the shared drive opens without a problem at all.
    The client machine with office 2013 is a Dell E7440 with windows 7 Pro 64bit.
    Thanks in advance

    I think its working now.
    Here is what I had to do.
    Delete Office from the machine once again, this time using the Microsoft tool to remove all remnants of the office software , then manually check the registry to see all the referenced keys had been removed.
    Reboot.
    Copy all the users data to another location on the same machine.
    Delete the users profile.
    Reboot.
    Reload office using the link Dell sent me.
    Reboot.
    Log in as a domain admin and check that office would open the documents on the file share and it did.
    Reboot.
    Log in as the user who’s profile I had deleted so that the profile was recreated.
    Attempt to open documents on the file share and it was successful.
    Move most of the users data back to the users folder so that his system looked the same as before.
    Reboot.
    Try again to use office applications and open documents from the file share and it continued to function correctly.
    Waited a day for the user to see how it went and it is still working now.
    I have no idea what could have been causing this problem or why doing what I did above fixed it.
    I hope the problem does not return.
    Now we can move on with more testing to see its suitability to our field service engineers, remote connections and connections to our customer systems will be checked next.

  • No longer able to open document after changing name.

    Under 10.5 you could change the name of a document and than do a ‘Command + O’ and it would open.
    Under 10.6 this no longer works. You now have to first do a carriage return (or Enter if you want). Anybody out there who can confirm this? I want to know if this is my machine or a 10.6 bug (like some others I have found).
    Thanks.

    David.Austin.Allen wrote:
    Have you updated to 10.6.2? Did you apply the update with Software Update?
    yes I did
    Sometimes manually downloading and applying the Combo solves issues;
    http://www.apple.com/downloads/macosx/apple/macosx_updates/macosxv1062updatecomb o.html
    thought about it, will try tomorrow.

  • Pages 5.1: refuses to open documents, insisting needs update

    Help! Over 200 page document, not to mention thousands of pages of work that I cannot access... is it locked down by some glitch?
    Pages 5.0.1 has been on my macbook for a while now.  I'm not in love, but have adapted. Last night, admittedly after the most recent 10.9.1 update, it refuses to open my Pages created documents. Error message says, "You need a newer version of Pages to open this document"..."You can download the latest version of Pages from the Mac App Store."  The problem is, that when you follow the link, the app of course says "installed", and there is no waiting update. It's like a maniacal little cycle to drive me crazy. 
    I have tried the Command + I trick, and the control + click, but it will not open with an earlier version either. Yes, a restart was done. I'm on a 8GB macbook pro with miles of memory left, like 500GB out of 749 says the Storage info, graphics card, 2.2 GHz
    As a possibly related (but not likely) for the past week or two I have been getting a message that kept prompting me to sign into an old appleID. I figured it was related to the update I was dragging my feet on. When I went to sync it all up, of course it made me change my other apple ID's and passwords. Grr.
    I am a teacher, not a tech person...
    I just want to open my docs... so any help (especially written in dunce) would really be appreciated.
    The kids will thank you too.
    Feeling very frustrated.

    I have 3 Macs .... all on OSX 10.9.2 and all upgraded to Pages 5.1 ... so it is reasonable to assume that I can create a document on one laptop ... save to the iCloud .... and open it on another laptop to work on later on.
    WRONG!
    Like you - I get this message that I need the new version of Pages to open the document ...... but I am already on the latest one.
    It is driving me crazy!!!!!!!!
    It defeats the purpose of having iCloud if I cannot access the document on any other laptop except for the one that created ti!
    Forget about trying to work on it on the iPad. The alignments are all out and images don't download ........ it's a mess!!!!!!!!
    Apple please fix this problem before you loose your once loyal users.

  • Automatically update the date on opening a document in Pages 5

    I can't find how to automatically update the date on opening a document. I could in Pages 4.

    Indeed. That seems to be the only answer to all the "improvements". At least now I can do a word count with or without spaces. Phew. (Note the sarcasm)

Maybe you are looking for