Stat. del. dte. past than the document dte of PO

Dear experts,
I have referred many discussions on this but not a constructive solution.
We have a situations where the statistical delivery date in the purchase order is past than the Document data as well as the delivery date of PO- see attached.  ?
one recommendation was to convert the available warning message (ME 589) to error but that could jeopardize the process of AUTO PO as it will fail all of the PO's  that has PR dates in the past.
in our case mostly the stat del dte is going exactly a year back to the delivery date in the PO (no history of such item change in PO) and that is making it difficult for vendor evaluation.
please advise.

what is the delivery date  in the purchase requisition?
SAP does not write change documents in case the date was changed/entered when the PO was created.
Since the field works like this:
if delivery date is changed prior to output of PO then the statistical delivery date is automatically adjusted to  equal the delivery date.
if the delivery date is changed after the output of a PO message, the statistical delivery date does not change automatically, and it is the user who has to care actively, evaluating which is the correct delivery date for vendor evaluation. e.g. change of delivery date wanted by you, then change the statistical delivery date too. Change of delivery date because the vendor cannot meet your desired date, keep the statistical delivery date with the old date and the vendor will get a bad evaluation.

Similar Messages

  • How do I move multiple fields from the end of the document to another section?

    For some reason when I click Cntrl+V, it pastes the multiple fields at the end of my form rather than at the point of paste within the document.

    Select all of the fields that you wish to copy then use Ctrl-C.  Scroll to the part of the form where you want to paste the copied fields.  Select the field that you want the paste to occur after (ie, the pasted fields will appear after/below the selected field) and use Ctrl-V.
    Jeff Canepa
    Software Quality Engineer
    Adobe Systems, Inc.
    [email protected]

  • CS5 - Standard Screen Mode - Hand Tool don't move the document

    Hi all
    In PS CS5 -> Standard Screen Mode -> Hand Tool don't move the document unless you zoom the document so it became bigger than the working area!
    Is it possible to use the hand tool (move the document arround) while the document is smaller than the working area?
    Thanks

    Why not just shrink the window border and move the Window around to where you want it, as has been described above several times?
    because that will make the working area much smaller. You'll be able to move the Window around, but if you zoom in, you will lose working area and you'll have to use the scrolls.
    Maybe it would help to describe WHY you want to move the image within the window/tab?
    There are many reasons for that and I don't have the time to describe all of them right now. I'll give you just one: if you paste an object that is bigger than the document size and you want to transform the object (scale down for example) - you press Ctrl+T and the top, bottom and middle right points are no visible (they are outside the area). Then you have 2 options if you want to scale down:
    1) scale the image with the left side point, and then move the image back to the document
    2) zoom in the document -> so it became bigger than the working area -> so you can move it with the Hand tool (spacebar) -> so you can see the right points -> so you can transform the object -> and then you zoom out again
    both ways are just very slow
    if you can move the document inside the working area (inside the window) then you can perform the task much quicker:
    move it with the Hand tool (spacebar) -> grab some of the right point and transform as simple as that. And you still can see all of your document, and you can still reach the right points
    this is just one example, I can tell you more

  • Modify HTML of the document of the rendered page and reload

    Currently i am loading a url in javafx through webengine.load(url). My requirement is to keep the styling in tact with the original page. However, once the page is rendered, the fonts are not loaded and i am unable to increase the font sizes. I worked through the following steps to achieve this.
    1. Add a listener through getLoadWorker method for web engine and get the document object when the state is SUCCEEDED.
    2. Transform the document to a html string which gives me the whole HTML of the page in a string including the css.
    3. Then i do a replace on the css part with the actual location of the font files (absolute path url) and reload the html through loadContent method.
    With this, i am able to get the fonts loaded properly.
    Problem:
    1. I end up with a infinite loop when i use the "webEngine.loadContent(string, "text/html")" inside the getLoadWorker method.
    2. I tried to do that outside the getLoadWorker method before the webEngine.load(url) but in this case the replace html body string is coming as null.
    Any help on how to achieve this?? Below is my code:
          webEngine.getLoadWorker().stateProperty().addListener(new ChangeListener<Worker.State>() {
                String htmlBody = null;
                @Override
                public void changed(ObservableValue<? extends Worker.State> observableValue, Worker.State prevState, Worker.State newState) {
                    //To change body of implemented methods use File | Settings | File Templates.
                    //String htmlBody = null;
                    int count = 0;
                    if (newState == Worker.State.SUCCEEDED) {
                        browser.requestFocus();
                        // Get the document object from Engine.
                        Document doc = webEngine.getDocument();
                        try {
                            // Use Transformer to convert the HTML Object from the document top String format.
                            Transformer transformer = TransformerFactory.newInstance().newTransformer();
                            transformer.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "no");
                            transformer.setOutputProperty(OutputKeys.METHOD, "html");
                            transformer.setOutputProperty(OutputKeys.INDENT, "yes");
                            transformer.setOutputProperty(OutputKeys.ENCODING, "UTF-8");
                            transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");
                            StringWriter outWriter = new StringWriter();
                            transformer.transform(new DOMSource(doc),new StreamResult(outWriter));
                            StringBuffer sb = outWriter.getBuffer();
                            htmlBody = sb.toString();
                            // Replace the font-family attribute in the style section to the actual URL of the font being used.
                            htmlBody = htmlBody.replace("font-family: medium", "font-family: url(http://1.10.30.45:8080/fonts/Md.ttf)");
                            // Load the new HTML string to the Engine.
                            //webEngine.loadContent(htmlBody, "text/html");
                        } catch (Exception ex) {
                            ex.printStackTrace();
            webEngine.load(url);
            //add the web view to the scene
            getChildren().add(browser);

    James,
    I tried the document manipulation but was unable to override the css that was already applied. I downloaded and used jdk 8 which has the latest version of javaFX which fixed the font loading issue. Now i can see all the custom fonts and everything getting loaded as part of css.
    However, when i try to capture the state of the worker, it stays in the running and not changing to success. First few instances, the page was loaded successfully but then it stopped. Any idea if this is due to the new javaFX version of jdk8? Below is the code snippet:
           webEngine.getLoadWorker().stateProperty().addListener(new ChangeListener<Worker.State>() {
                @Override
                public void changed(ObservableValue<? extends Worker.State> observableValue, Worker.State prevState, Worker.State newState) {
                    //To change body of implemented methods use File | Settings | File Templates.
                    System.out.println(newState);
                    if (newState == Worker.State.SUCCEEDED) {
                        browser.requestFocus();
                        // Get the document object from Engine.
                        Document doc = webEngine.getDocument();
                        System.out.println(doc.getDocumentURI());
            webEngine.load(url);
            //add the web view to the scene
            getChildren().add(browser);
    The output is
    SCHEDULED
    RUNNING
    and nothing after that...

  • Cannot perform rounding for invoices with a currency other than the documen

    Hi all,
    I need some one to help me
    I want to process the incoming payment.
    The AR Invoice is using USD
    In Incoming Payment i want to pay using SGD,
    I already set the BP in all currency
    I also set the Bank account in Bank transfer payment mean in all currency.
    But when i add the document i saw the message like this
    "Cannot perform rounding for invoices with a currency other than the document currency.  [Message 3524-31]"
    What should i do ?
    Thanks in advance
    Regards
    KK

    Hi gordon,
    Thanks for your respon.
    I still do not understand, what you mean.
    I test it in SBO DEMO Au which is the local currency is AUD and the system currency is also AUD.
    Is the any special setting for this issue?
    Or Do i miss the settings in SBO
    My version is 8.81 pl 9
    Thanks in advance

  • How to multiple/ parellal sets of books to generate more than one financial statement based on different (or the same) accounting principles.

    How to multiple/ parallel sets of books to generate more than one financial statement based on different (or the same) accounting principles.
    My Client needs Parallel Ledger in SAP B1 similar like SAP ECC. Is this functionality available ?

    Dear Mr. Nagrajan,
    Thank you for your response. I have already gone through documents but not able to understand. Is there any setup for this ? or its just work around i.e. using template and special field in JV i.e. Ref. 1 /2
    My doubts :
    I understand that Chart of Account structure is one and common for IFRS and other accounting method. We need to create only those account separately ( 2 times with prefix like IFRS revenue account, GAAP Revenue account).
    Now at time of entry, Assume some entries / adjustment are specifically for IFRS and not for other ledger. In this case, What need to do ?
    You have mentioned about DTW approach but do we need to insert all JV's again with other ledger ?
    Someone suggested that if any entry which are specific to IFRS Ledger, We need to user Ref.1 /2 column or Transcation code column and in which we can put IFRS
    Based on this, Need to create 2 seperate template for IFRS and other ledger for all report.
    This is my understanding of Solution in SAP B1. Please help me to clarify my though process
    Please do needful.If you have done implemenation and if you can share doucment, it would be great help.
    Email :[email protected]

  • Font in Illustrator prints different than the same font in a different document

    I created two pdfs in Illustrator and on the monitor they look the same because they are the same font, character size, both with the same black fill with no stroke but when they are printed it looks different. One version looks grey while the other looks normal. I have double checked settings, cut and pasted the text into the document that prints correctly and nothing seems to fix this error.It's the second file that doesn't print properly aka BuyzFrontv2 copy.
    Am I missing something?
    Thanks in advance.

    One of the problems is that much of the text is in 4-color black, probably as a result of cutting pasting from Word. There is less of it in the second one than the first. You might want to clear this up and then retry.

  • Attempting to download a wmv file. I keep getting the message: "You cannot save this document with extension ".wmv" at the end of the name. The required extension is ".webarchive" --if I save it this way, i just get a web address rather than the wmv

    Attempting to download a wmv file. I keep getting the message: "You cannot save this document with extension “.wmv” at the end of the name. The required extension is “.webarchive” --if I save it this way, i just get a web address rather than the wmv

    Find the URL for the WMV, paste it into Safari's address bar, and press the Option and Enter keys.
    (66873)

  • How do you highlight multiple documents rapidly, rather than having to click on the document and on "command" one at a time?

    How do you highlight multiple documents rapidly, rather than having to click on the document and on "command" one at a time? Right now, when I'm trying to highlight documents to export, I have to click on each document individually. Is there a way to highlight one document while scrolling down the list until all desired documents are highlighted? I would like to rapidly be able to do this to save time when I am exporting or saving multiple files from my documents to an external drive, CD-Rom or cloud storage.

    Click on the first item
    Hold the Shift key
    Click on the Last Item.
    All the items in between will be selected.

  • TS3899 Hi. How do I attach more than one document to an email on the iPad, especially if they come from different apps? When writing an email on the iPad there's no option for attachments.

    Hi. How do I attach more than one document to an email originating from my iPad, especially if the documents come from different apps? When starting an email there's no option for attachments, unless you send the document from inside an app like iBook and then you can only send one at a time.

    How to add, send and open iPad email attachments
    http://www.iskysoft.com/apple-ipad/ipad-email-attachments.html
     Cheers, Tom

  • My setup: iMac hardline to Canon i960 printer. Issue: endless printing of the same document. The printer window states that the pinter is in use and there is nothing listed in the Print Queue.  How can I stop printing the document?

    My setup: iMac hardline to Canon i960 printer. Issue: endless printing of the same document. The printer window states that the pinter is in use and there is nothing listed in the Print Queue.  How can I stop printing the document?

    Soution: Delete the printer and add the same printer back in, therefore creating a new print queue.

  • Every time I open a second document the 1st one slides off the screen and I have to reopen everything.  I want to view more than 1 document at the same time.

    How can I view and work on more than one document at a time?  I've never had a problem with this but suddenly every time I open a new document the 1st one slides over out of sight.  How do I get that to stop?

    Hi bbd,
    Here is a screen shot of two documents open side by side. Drag the first document to the left of the screen. Open another document and drag it to the right of the screen.
    I have not had an open document slide from view. Puzzling!
    Regards,
    Ian.

  • Whenever you try to save a PDF file to a location other than the default location ('My Documents'), Firefox freezes & you have to go to the 'Task Manager' to exit Firefox and stop the error, so you can load Firefox again.

    Whenever you try to save a PDF file to a location other than the default location ('My Documents'), Firefox freezes & you have to go to the 'Task Manager' to exit Firefox and stop the error. I have Windows XP (Media Center Edition) and all updates (Firefox, Adobe PDF, Microsoft, virus protection, etc) are installed. This has only been a problem since Firefox 4, and isn't a problem in Internet Explorer.

    Hi David,
    Thank you for your detailed question. It sounds like the real issue is pdf files. Are there any antivirus/firewalls that might be blocking this specific file type? or are there any preferences in your control panel that might be blocking this?
    Do you have any stored preferences for PDF files in Firefox?
    *[[Applications panel - Set how Firefox handles different types of files]]

  • When I paste a Pages document into an email it looks totally different.  Even when I export it too Microsoft Word the Word document looks different.  Apparently this does not happen if you have Word on your computer.  Does anyone have experience?

    I need to be able to copy/paste documents into the body of an email and have them look exactly like the original document.  I could always do this on my PC using Microsoft Word.  And all writers submitting work to agents do this.   I just tried it with Apple's Pages and when I pasted it into the body of the email, the document looked totally different . . . no double spacing, no paragraphing  etc.  Even when I exported the document to Word, I copy/pasted it into an email and it looked totally different.  I suspect Apple's version of Word does not perform like the real Word in all circumstances . . . Before I go out and buy Word and put it on my Apple, I would like to know if anyone else has had this issue and how they may have dealt with it.  Thanks.

    Drag and drop the file into the email, the formatting will be retained when it is opened by the recipient.

  • How can I have a topic name different than the filename of a linked Word document?

    I've encountered multiple issues with linking to Word files ...here's another one: If a Word document is entitled Feature_ABC, then upon generating the HTM after linking it, the HTM's filename and topic name are both Feature_ABC. As underscores are ugly in topic names and features can be renamed, I would hope that I could rename the topic to be different than the filename.
    The Help documentation suggests this is possible by editing the Topic Name Pattern in the Word Conversion Settings dialog of Project Settings. However, reagardless of the Pattern entered, every time I generate or update from the context menu of a linked Word document the topic name remains the same as the filename.
    Because the topic name is shown in the Search panel and browser tabs, it will be a little ugly and may even be confusing. It is possible to edit the HTML directly, but then the HTML is overwritten each time the Word documents are update and the great advantage of using linked documents is lost.
    Is there a way to solve this problem?
    Thanks in advance for any help you might be able to provide.

    Thank you for your quick reply - just checked Multifox out.
    It seems it still forces me to open a new window, while preventing the need for a new profile.
    Why isn't it in the addons.mozilla.org ? Looks dangerous ...

Maybe you are looking for

  • Reporting service point

    HI I have bacis questtaion . I install in the one machine sccm 2012 and in the second sql 2008 r2 SP1 CU9 . All work ok , but after I try add Reporting service point role the reports is not in the sql machine not created :-( . I look to report site f

  • How to add a petty cash payment in journal entry

    HI, I was just wondering if anybody could help me with regards to making a petty cash payment, for example if i went to the shop for and spent £15.00 on stationary etc, how would i post this payment in the journal entry screen? many thanks.

  • Handling property name with spaces in SQL query

    Hello, I have some JSON that looks like this:     "SystemId": "112234",     "Parameter": {         "Total Hours": [                 "timestamp": "2015-03-15T15:20:00Z",                 "itemValue": "0"                 "timestamp": "2015-03-15T15:15:0

  • Error in Precalculation.

    Hi Gurus, I am getting a eror while broadcasting the reports.Below is the error wmessage while Precalculation. "The precalculation server call to precalculate workbook XXXXXX ended with return value 3." I din understand why this is occuring.This is f

  • How do we have a distinct DB for production & staging?

    Hi all; We can push our cloud service up as staging or production. When we do, each needs to hit a different Sql Azure database. Otherwise our staging system will be mucking with the accounts of our users in the production system. How can we do this?