Purchase order shipping data change exit in ME59N

Hi Experts,
While creating Purchase Order from purchase requisition I need to change the value in field unloading point in shipping tab of Purchase order item. I am coding in exit 'EXIT_SAPMM06E_013' and changing the value of XEKPV-ABLAD. Still the value is not updated in the Purchase Order. Please advise.

Hi,
You can update the delivery date , by an customer program in back ground.
This should be triggered for every PGI done with count in PO delivery date.
This delivery date should be changed before the shipment is triggered.
Ask your ABAPER to develop an custom program , based on input logic how to change the delivery date in PO.
He will develop the program as per your input given to him.
Rgds,

Similar Messages

  • Change Purchase Order : Document Date

    Hi Gurus,
    I would like to change Purchase Order: Document Date due to wrong input but I found out this field has been grayed out from change (ME22/ME22N) after save.
    Can anyone tell me how to solve this problem?
    Thanks & regards,
    Loi

    Dear Gurus,
    Is there is any effect of changing the PO's Document date? What is the usage of PO's Document date, in which area?
    If no effect, can I customize the PO: Document Date field through Application transaction variant function?
    Pls adivse.
    Thanks & regards,
    Loi

  • Purchase Ord delivery date changes SO schedule line date?

    Hi,
    I am purchasing a drop ship item as per sales order. The account assignment in the purchase order is the Sales order. 
    Why in some cases the schedule line date in the sales order changes when I change the delivery date in the purchase order? whereas in other cases it does not.
    Please help me out with this question.
    Sincerely.
    Puja

    Puja,
    The SO schedule line date should not change when you change the purchase order delivery date.
    However, if you change the PO del date, AND a user performs re-ATP against the sales order, OR if you are running backorder processing (rescheduling) of sales docs, then the SD item/schedule date may change to match the changed availability situation caused by the change of the delivery date of the PO.
    Look in the sales order in VA03, then Environment>changes.  Look to see if anyone or anything has 'touched' the SO item that is home to the schedule lines that were affected.
    Regards,
    DB49

  • Purchase order Document date in AP Downpayment invoice PLD

    Dear All,
    Is it possible to capture purchase order Document Date in AP Down payment invoice PLD.My client want like this.I have tried,but i am not able to capture this field in AP Down payment invoice PLD.please give me the solution for this,If it is possible.
    Thanks,
    Silpa.N

    hi silpa,
    Create a user defined field in row level of marketing documents.
    Apply formatted search using query
    Select $[OPOR.TaxDate]
    select auto refresh
    when changing field Document Date in header level.
    On copying purchase order to ap downpayment invoice Document date will copy to it.
    U can also bring it to PLD by creating database field with table DPO1,column U_XXX
    Hope it will solve problem.
    Jeyakanthan

  • HOW CAN I GET THE PURCHASE ORDER RELEASE DATE

    Dear All,
    HOW CAN I GET THE PURCHASE ORDER RELEASE DATE - any reprot is there?
    Thank you
    Ahmad

    Hi,
    u goto that PO and select Environment on top line .under that select header changes if u click on that u will get entire details who reased when released, date , time etc
    regards,
    Srinivas Kona

  • STANDARD PURCHASE ORDER에 대한 ARCHIVE DATA 읽는법

    제품 : MFG_PO
    작성날짜 : 2005-11-08
    STANDARD PURCHASE ORDER에 대한 ARCHIVE DATA 읽는법
    ==================================================
    PURPOSE
    Standard Purchase Order에 대한 archive data 읽는법을 알고 이를 issue
    해결에 사용할 수 있다.
    (R11 ~ R11i)
    Explanation
    Standard PO no 125가 생성되고, 이 PO는 하나의 line,shipment,distribution
    을 가지고 있다고 가정한다.
    User가 이 PO를 approve 했고 status는 'Approved' 상태라고 가정한다.
    또한 Standard PO document type이 'Archive on Approve'로 setting 되어 있
    다고 가정한다.
    아래는 Tables에서 data가 어떻게 보이는지를 보여준다...
    PO_HEADERS_ALL:
    PO_HEADER_ID SEGMENT1 REVISION_NUM
    888 125 0
    PO_HEADERS_ARCHIVE_ALL:
    PO_HEADER_ID REVISION_NUM LATEST_EXTERNAL_FLAG
    888 0      Y
    PO_LINES_ARCHIVE_ALL:
    PO_HEADER_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    888 777 1 0 Y
    PO_LINE_LOCATIONS_ARCHIVE_ALL:
    PO_LINE_LOCATION_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    555           777 1 0 Y
    PO_DISTRIBUTIONS_ARCHIVE_ALL:
    PO_DIST.ID PO_HEADER_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    222 888 777 1 0      Y
    이때 PO에 새로운 line을 추가하고 approve를 한다.
    관련된 tables의 변화를 볼 수 있다.
    PO_HEADERS_ALL:
    PO_HEADER_ID SEGMENT1 REVISION_NUM
    888 125 1 <- because we added a line
    PO_HEADERS_ARCHIVE_ALL:
    PO_HEADER_ID REVISION_NUM LATEST_EXTERNAL_FLAG
    888     0 N
    888 1 Y <-- latest rev on the header is now 1
    PO_LINES_ARCHIVE_ALL:
    PO_HEADER_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    888 777 1 0 Y <--note line 1 didn't change
    888      778 2 1 Y <--note line 2 was created in rev 1
    PO_LINE_LOCATIONS_ARCHIVE_ALL :
    PO_LINE_LOCATION_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    555 777 1 0 Y
    556 778 2 1 Y <--note line 2 was inserted
    PO_DISTRIBUTIONS_ARCHIVE_ALL:
    PO_DIST.ID PO_HEADER_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    222 888 777 1 0 Y
    223 888 778 2 1 Y <--note line 2 was inserted
    PO header만 변경 후 approve를 한다.
    PO_HEADERS_ALL과 PO_HEADERS_ARCHIVE_ALL tables 만 유일하게 영향을 받을 것이다.
    PO_HEADERS_ALL:
    PO_HEADER_ID SEGMENT1 REVISION_NUM
    888 125 2
    PO_HEADERS_ARCHIVE_ALL:
    PO_HEADER_ID REVISION_NUM LATEST_EXTERNAL_FLAG
    888 0 N
    888 1 N
    888 2          Y
    Line1의 수량을 변경한다. shipment나 distribution은 변경하지 않는다.
    PO_HEADERS_ALL:
    PO_HEADER_ID SEGMENT1 REVISION_NUM
    888 125 3
    PO_HEADERS_ARCHIVE_ALL:
    PO_HEADER_ID REVISION_NUM LATEST_EXTERNAL_FLAG
    888 0 N
    888 1 N
    888 2 N
    888 3 Y
    PO_LINES_ARCHIVE_ALL:
    PO_HEADER_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    888 777 1 0 N <---latest ext flag
    change to N
    888 777 1 3 Y <--this row inserted rev num matches header revision in which change was made.
    Lower rev for this line had latest external flag changed to N.
    888 778 2 1 Y <--no changes
    All other tables do not change.
    PO line에 세번째 line을 추가 후 다시 approve를 한다.
    PO_HEADERS_ALL:
    PO_HEADER_ID SEGMENT1 REVISION_NUM
    888 125 4
    PO_HEADERS_ARCHIVE_ALL:
    PO_HEADER_ID REVISION_NUM LATEST_EXTERNAL_FLAG
    888 0 N
    888 1 N
    888     2 N
    888 3 N
    888 4 Y
    PO_LINES_ARCHIVE_ALL:
    PO_HEADER_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    888 777 1 0 N <---didn't change
    888 777 1 3 Y <---didn't change
    888 778 2 1 Y <---didn't change
    888 779 3 4 Y <--line 3 added to lines archive.
    PO_LINE_LOCATIONS_ARCHIVE_ALL:
    PO_LINE_LOCATION_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    555 777 1 0 Y
    556 778 2 1 Y
    557 779 3 4 Y<--line 3 added to archive.
    PO_DISTRIBUTIONS_ARCHIVE_ALL:
    PO_DIST.ID PO_HEADER_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    222 888 777     1 0 Y
    223 888 778 2 1 Y
    224 888 779 3 4 Y<--line 3 added to archive.
    마지막 test로 2번째 line의 distribution 정보를 변경 후 PO를 다시 approve한다.
    PO_HEADERS_ALL:
    PO_HEADER_ID SEGMENT1 REVISION_NUM
    888 125 5
    PO_HEADERS_ARCHIVE_ALL:
    PO_HEADER_ID REVISION_NUM LATEST_EXTERNAL_FLAG
    888 0 N
    888 1 N
    888 2 N
    888 3 N
    888 4 N
    888 5 Y
    PO_LINES_ARCHIVE_ALL:
    PO_HEADER_ID PO_LINE_ID LINE_NUM REVISION_NUM LATEST_EXTERNAL_FLAG
    888 777 1 0 N <---didn't change
    888 777 1 3 Y <---didn't change
    888 778 2 1 N <--latest ext flag when to N
    888 778 2 5 .Y <--row inserted & latest ext flag set to Y
    888 779 3 4 Y <---didn't change
    PO_DISTRIBUTIONS_ARCHIVE_ALL:
    PO_DIST.ID PO_HEADER_ID PO_LINE_ID LINE_NUM REVISION_NUM
    LATEST_EXTERNAL_FLAG
    222 888 777 1      0 Y
    223 888 778 2 1 N <--latest ext flag set to N
    223 888 778 2 5 Y
    224 888 779      3 4 Y
    Reference Documents
    Note 251537.1

    the error might be that you are just executing programs and you dont know the correct chain.
    Better you do archiving always from SARA transaction
    there you enter the object MM_EKKO and hit enter.
    You get a button for each step.
    first you usually have a preprocessing step which sets the deletion indicators
    next step is the write step. you always have to check the log and the spool file to be certain that you had written records to an archive. A bigger archiving step may write several archives depending on the customizing of file size.
    In the delete step you have to select from against which archive you want delete the records from the table.
    SAP checks then if the archive can be read and deletes the corresponding tables entries in EKKO and EKPO and all other related tables.
    Depending on customizing the Delete step can be an automatic executed step when the write job has finished, and does not need to be executed manually.
    after the deletion you usually store the archive somewhere.
    The administer button can give you info about the archive  run and files that were created and the status.

  • Am I suppose to receive an e-mail when my ship date changes? I haven't heard ANYTHING.

    I haven't received anything about my order. I have had to call to get all information about my ship date changing.

    Yes, you were supposed to receive a confirmation email after you place your order with a 10 digit order # so you can check the status. Then after your status has been process (which could take days or weeks) you should received an email that your phone has been shipped with a tracking #. VZ should send out a notification if there is a delay with the order. If you have not received any type of email then i suggest to call VZ and find out changes were made that you don't know about. Hope that helps and good luck!

  • Purchase Order released date field and table name

    Hi,
    Please tell me the  Purchase Order released date field and table name.
    Regards
    Deepak

    Hi,
    Table : EKKO.
    Fields : FRGKE,FRGZU.
    You can get release date of PO from CDHDR  table.
    give object value as your po number and check.dont forget to give leading zeros.
    The udate will be date field and transaction will be me29n for relaesed po.

  • 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

  • Extracting Purchase Order condition data

    Hi All,
    I have requirement where as i need to pull the purchase order condition data, but i haven't found any datasources regarding that, can somebody guide me how to pull that data to BW.
    thanks
    Neel

    Hi Neel,
    Create view of EKKO ( Purchasing header ) and KONV  (Conditions (Transaction Data)) and link it on EKKO-KNUMV to KONV-KNUMV.
    Create Generic Extractor based on the View.
    Hope that helps.
    Regards
    Mr Kapadia
    Assigning points is the way to say thanks in SDN.

  • Purchase Order Condition Data

    Hi,
    Can anybody please explain what is Purchase Order Condition Data ( KONV ).
    What is the use of it in the report.
    Thanks,
    JB

    .

  • Purchase Order release date

    Dear Experts
    Can anybody give me table & field of Purchase order release date .
    which we can see in Version tab of ME23n
    thanks
    Nayan Lad

    hi,
    please refer to the following thread:
    TAble for PO Release date
    i hope it helps.
    arjun

  • Purchase order Confirmation data from SRM to MM

    Hi,
    I am trying to send Purchase order Confirmation data from SRM to MM via PI. In SRM portal i am able to see that the data has been send successfully. But i am not able to receive any data in PI nor iam able to any messages going from  SRM in SXMB_MONI.
    Please help me.
    Thanks & Regards
    Kasturika Phukan

    Hi,
      In SRM check in sxmb_moni is there any queue is blocked.
      If not then,
      Check your proxy settings.Select Go To and check connection Test.
      Go to sm59 and check H type RFC destination is maintained.
      Go to sxmb_adm check the Global setting value,
      Application system,dest://RFC destination is maintained.
      In XI,
      Go to SLD.
      Check Technical system (client with logical system) maintained.
      Check Business System maintained with role of application system,Related integration engine
      maintained.
    Regards,
    Prakasu.M

  • BBP purchase order cannot be changed in R/3. Can only be displayed.

    Hi,
    (1) I am trying to changes the Payment term in the PO from 0012 to 0000.
    But getting error as "BBP purchase order cannot be changed in R/3"
    (2) As Invoice is already booked against this PO. I feel the change Payment terms will not come in the picture.
    If I want to change the payment terms as well as it should come in the consideration for payment. Then what can be done? what is the way forward?
    Thanks in advance.
    Pradeep S Yekunde

    plz check the settings in spro > material management > purchasing > purchase order > define screen layout at document level.
    here you plz check the settings for aktv and me22n for "terms of delivery and payment".
    check whther it is optional entry or not.
    regards
    jash

  • MRP and purchase order delivery date

    Hello
    Question about MRP
    we would like that the MRP run takes into account purchase order with a delivery date in the future
    Say the MRP run 10th of Oct we want that all purchase orders open with a delivery date in the future takes into account the quantity that needs to be ordered TODAY
    EXAMPLE
    Minimum stock 5
    Wse stock 0
    Purchase order delivery date D+1 10
    Lead time is 5 days
    So if you run MRP the systems proposes 5 to order today but they do not want  to order 5 because there is a coming purchase order D+1 of 10
    Does anyone knows how the pruchase order of 10 is taken into account in the MRP run ?

    Unfortunately, one of the weakness of SAP MRP is if a purchase order and/or production order is late, MRP will tell you to order it again instead of expediting.
    We have overcome this and other issues with our own economical planning enhancements. If you are interested you can contact me with your contact information

Maybe you are looking for

  • Home sharing does not work as standard windows user

    I have two computers in my home network - Windows 7 Professional Desktop and a Windows 7 Professional Laptop. Both running latest itunes 11 software. Win7 Desktop has two accounts: Administrator and JB (a standard user) Win7 Laptop has two accounts:

  • Failed to retrieve the data source in Business Objects Explorer

    I have built a universe with Designer suits and separate measurements of paramentros and bound by, ran on Web Intelligence, but when I try to use the Business Objects Explorer is reported the following message: Failed to retrieve the data source deta

  • New computer, itunes backed up on portable hard drive,  how to transfer?

    I have just received a new laptop. I connected my portable hard drive on which i had backed up my itunes library from my old pc. On the new computer i used the "add folder to library" function in itunes. All the songs from my hard drive appear in the

  • ICal doesn't subscribe to timed events and doesn't refresh

    In our office we each have a calendar which each person publishes on .Mac, and which others in the office subscribe to. We're experiencing the following problems: -- "Refresh all" on some machines doesn't refresh calendars; each must be refreshed ind

  • Outlook 2010 Slow Access to Shared Calendar

    We have a small 100 user domain running Exchange server 2010 and outlook 2010 clients.  When an admin opens a shared calender from within Outlook 2010 it often takes 30 seconds or more to display the calender.. When using OWA the calendar display alm