Purchase Order - I need change subject E-mail

Hi All,
When I create an e-mail trough the transaction code ME23N and I try to send the e-mail trough the transaction code ME9F the e-mail arrives with a default subject (PROGRAM NAME + CURRENT DATE), I need change the subject according the necessity of the project.
Can someone help me, please ?
Thanks a lot !!!

Hi,
Check out what Dhruba has suggested below first, but if the program has been set up to do this instead try the following
Go to transaction OMFE and look down the list to see which program has been allocated to the Output type and medium that you are using (probably NEU and 5 or 7? if you are using the standard oputput condition types).
Then get your ABAP programmer to check and change the code of that program.
Steve B

Similar Messages

  • 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

  • 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

  • While creating Purchase Requisition we need to send a mail for approvers

    Hi All,
    While creating Purchase requisition we need to send a mail to approvers.
    Dowe  need to create Function module ?
    if You know the steps can you please give me the steps.
    Thanks In advance
    Sriman.

    Hi Sriman
    Here we can try for 2 approach
    one is workflow and other his sending emails via user exit.
    I am not much aware about workflow, but you can explore for user exit.
    Try for enhancement component 'MEREQ001'.
    let me know, if you need further help
    Regards
    MD

  • Purchase order description needs to be changed

    Hi
    We have a generic material database for particular type of materials. This material is then mapped to a huge database of unique materials. (We are a retailer and sell 30 milllion plus articles (materials). Hence this mechanism). Those that we maintain through generic numbers mapped to unique numbers..are all sold through third party vendors.
    Now, the return purchase order to these vendors needs to have the unique description maintained in a ztable instead of the generic material and description from the material master.
    Any BADI that can help us overwrite the material master description pls?
    Thanks
    Priya

    Hi
    Thank you for your link.
    However I am not to change the description in MM02. Material master has to retain the original description. I need to change the description only in the purchase order.
    This is because while in our records it would suffice to know the material by its generic name..for finance and for the vendor they need to know the ztable description.
    Hope that clarifies.
    T
    Thanks
    Priya

  • Purchase order Personalization- Need Help

    Hi friends
    Good Day , i have created an alert in the Purchase Order creation screen to notify the buyers when the PO Price entered for the item is different from the standard cost. so i have have set the profile option 5% .I have set this profile option X % as setting that can be changed if needed in the future.
    so that when the price for the item differs +/- 5% .it alerts the buyer that Po price differs from standard cost > or < 5 % .and now it gets over and the po is also created for the purchase order +/- 5% .
    And now if i have created po order for item giving some 4% difference from the standard cost.so what it happens is i wont get the alert since it differ only by 4% and the po is created. lets take an example that PO order no is some 123456
    Now i have a requirement that is the user wishesh to change the PO profile option to 3 % .And if they query back the PO no 123456 .what it happens i ll get the alert that Po price differs from standard cost > or < 3 % since i have given the item cost is 4%.
    My Requirement
    ==========
    what is my requirement is i should not get this alert since i have have created the PO:123456 for the item when it is 5%. when i query back the old record which i have created for 5% it should not give me an alert unless the item cost is changed ..
    please give me any suggestion what can be done for this ..
    Thanks in advance
    Thilib
    Edited by: AT on Feb 8, 2011 2:02 AM
    Edited by: AT on Feb 8, 2011 2:43 AM

    Hi Friend
    yes ur right iam in when-validate-record personalization only in the condition i have used this script
    :PO_HEADERS.STATUS = 'Incomplete' and
    :SYSTEM.RECORD_STATUS <> 'QUERY' and
    :PO_LINES.UNIT_PRICE <=
    (select (MATERIAL_COST *(100-${ps.xx_ppv_percentage.value}))/100 from cst_item_cost_type_v where cost_type='Frozen' and
    organization_id=64 and inventory_item_id=:po_lines.item_id)
    OR :PO_LINES.UNIT_PRICE >=
    (select (MATERIAL_COST *(100+${ps.xx_ppv_percentage.value}))/100 from cst_item_cost_type_v where cost_type='Frozen' and
    organization_id=64 and inventory_item_id=:po_lines.item_id )
    And in my Action i have used this
    =select 'Material Cost : '|| MATERIAL_COST || chr(10)
    ||'Price entered varies from frozen Material cost by more than profile option '|| ${ps.xx_ppv_percentage.value}||' % value.'
    from cst_item_cost_type_v where cost_type='Frozen' and organization_id=64 and inventory_item_id=:po_lines.item_id and rownum <2
    Note :here this is the profile option:${ps.xx_ppv_percentage.value} it can changed in the system profile
    In my script were should i want to use this
    po_lines.CREATION_DATE > to_date ('20110211','yyyymmdd')
    the user may change the profile option whenever he required.so instread of giving the paricular date what can be the alernative one
    once the profile option changed and queried back the same PO number i should not get the alert message unless a modifaction done in material cost..since it is created for the previous profile option
    Thanks in adavnce
    your help will be highly appreciable
    AT
    Edited by: AT on Feb 8, 2011 7:54 AM

  • 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,

  • Block Purchase Order to be changed once Service Entry Sheet is created

    Hi All,
    I need help, i want to know how can i block the PO not to be changed once the service entry sheet is created. For example : Once the user create a service entry sheet with a released PO it must not allow her / him to change the PO.
    Thanks,
    Rosina

    Set the Release Indicator for Purchase Order Release Strategy such that it will not allow to change once Released.
    Else Configure Version Management for Purchase Order.

  • Print Purchase Order (R12) , need to identify template assigned to Print PO

    Hi,
    I see three versions on Purchase Orders in R12, How will i know which template of these is assigned to Print Purchase Oder (sent out to supplier for communication in pdf).
    I need to customize the Print PO, add additional fields and change the layout, so i need to download related files from XML Publisher and modify.
    Could you let me know how to identify which template is assigned to Print Purchase Oder
    Thanks..

    855902 wrote:
    Hi,
    I see three versions on Purchase Orders in R12, How will i know which template of these is assigned to Print Purchase Oder (sent out to supplier for communication in pdf).
    I need to customize the Print PO, add additional fields and change the layout, so i need to download related files from XML Publisher and modify.
    Could you let me know how to identify which template is assigned to Print Purchase Oder
    Thanks..Hi,
    Go to Document type setup and search for the respective PO type. Find the template name attached to it. It is actually based on XSL stylesheet.
    Note that, there are following underlying views who drive the PO Print.
    PO_HEADERS_XML
    PO_LINES_XML
    PO_LINE_LOCATION_XML
    PO_RELEASES_XML
    If you need to add any field, you may need to add it to one of the above first.
    Thanks,
    PS.

  • Unable to Delete PO (Purchase Order) due to changed Invoiced value. Helppp.

    If you create a service entry sheet, process the service entry
    approval,post an invoice for an amount greater than the Service entry
    then, cancel
    the entry sheet and add a new service specification (i.e. same entry
    sheet), the following problem occur:
    1. You can no longer cancel the invoice if the services of the entry
    sheet are deleted.
    2. After changing the entry sheet and renewed acceptance of services
    performed, a posting takes place where the value differs from the
    value of the entry sheet.
    Steps to Reproduce:
    1. Create a Service Purchase Order of $2,000.00
    2. Create a Service Entry against the Purchase Order for $2,000.00
    3. Approve Service Entry against the Purchase Order for $2,000.00
    a/c postings Dr Expense $2,000.00
                         Cr GR/IR $2,000.00
    4. Create an Invoice against the Service Purchase Order for $5,000.00
    a/c postings Dr Expense $3,000.00
                        Dr GR/IR $2,000.00
                        Cr Vendor $5,000.00
    5. Revoke the Service Entry
    a/c postings Dr GR/IR $5,000.00
                        Cr Expense $5,000.00
    I am expecting the Reversal of the Service Entry figure is $2,000.00, but instead, the Reversal of the Service Entry figure is $5,000.00. Why is that so? I need to be able to Reverse/Delete the PO.

    If you create a service entry sheet, process the service entry
    approval,post an invoice for an amount greater than the Service entry
    then, cancel
    the entry sheet and add a new service specification (i.e. same entry
    sheet), the following problem occur:
    1. You can no longer cancel the invoice if the services of the entry
    sheet are deleted.
    2. After changing the entry sheet and renewed acceptance of services
    performed, a posting takes place where the value differs from the
    value of the entry sheet.
    Steps to Reproduce:
    1. Create a Service Purchase Order of $2,675.00
    2. Create a Service Entry against the Purchase Order for $2,675.00
    3. Approve Service Entry against the Purchase Order for $2,675.00
    a/c postings Dr Expense $2,675.00
                         Cr GR/IR $2,675.00
    4. Create an Invoice against the Service Purchase Order for $6,452.50
    a/c postings Dr Expense $3,777.50
                        Dr GR/IR $2,675.00
                        Cr Vendor $6,452.50
    5. Create Credit Memo $1,537.00
    6. Revoke the Service Entry against the Purchase Order for $2,675.00
    I am expecting the Reversal of the Service Entry figure is $2,675.00, but instead, the Reversal of the Service Entry figure is $1,537.00. Why is that so? I need to be able to Reverse/Delete the PO. Please help...
    Thank you.

  • Purchase Order Smartform as attachment in step mail through workflow

    Whenever user create a PO, mail should trigger in Microsoft Outlook, with the purchase order form as attachment.
    I am able to send mail to Microsoft Outlook whenever PO is created.
    But kindly advice how to attach PO smartform in th mail.
    Regards,
    Rahul.

    Hello,
    Please find below link. There is lot of stuff in google regarding this.
    smartform as work item attachment
    Re: PDF attachment in mail
    Regards.
    Edited by: vikram singh on Jan 30, 2012 2:00 PM

  • Report where Purchase Orders have been changed

    Hi,
    I am looking for a report which shows me all the purchase orders in which the prices have been changed by the supplier.
    Does a report like this exist?
    Thanks for your help!

    check with AUT10.
    i dont think so there is any specific transaction exists
    Thanks
    Raghavan R Iyengar

  • Purchase order GR need to post to Quality inspection stock

    Hi all,
    How to post stock to Quality inspection directly for a PO. Even though in GR i make sure that its posting in Quality inspection, by default it is going to Urestricted stock. How to fix this by posting stock to Quality inspection directly?
    Thanks,
    Avani.

    Hi Avani,
    Pre-requesite:-
    QM should be live at plant level.
    Data toeb maintained in QM view.
    You need to activate inspection type 01 (For GR against Purchase Order) and 04 (For GR from Production, against Process Order) in QM view of Material Master. Doing this all the GR quantity will be posted in Quality stock automatically.
    If QM is not live, you need to activate the "Post to insp. Stock" inidicator in Materail master QM view.
    Update us to help you more, reward points to help you better!!!
    Regards,
    Shyamal

  • Technical mapping incomplete for Purchase Order when we change address.

    Hello Experts,
      When we change the delivery address manually in the Purchase Order item we are getting the message 'Customs Business Partner Required'.  In the GTS system the PO status as Technical Mapping Incomplete. 
      Our system is configured to take the delivery address from the plant automatically.
      If we don't change the address manually in the PO we are not having any issue. 
      Please help me with this, this is very ungent.  Thanks in advance.
    with best regards
    K. Mohan Reddy

    Hi Mohan,
    Please counter check your configuration/mapping  per the SAP Configuration guide.
    This message is very clear, and points to the communication problem between your feeder system and the GTS Server/client.
    Check the following:
    System Communication
    Connecting the Feeder System to SAP Global Trade Services
    Defining a Logical System
    Assigning the Logical System
    Defining RFC Destinations for RFC Calls
    Defining RFC Destinations for Method Calls in Feeder Systems
    Defining the ALE Distribution Model
    Connecting SAP Global Trade Services to the Feeder System
    Defining the Logical Systems of the Feeder Systems in SAP GTS
    Assigning the Logical System
    Defining Groups of Logical Systems
    Assigning Logical Systems to Logical System Groups
    Defining the Target System for Remote Function Calls
    Defining RFC Destinations for Method Calls in SAP GTS
    Thanks,

  • Purchase order Account Assignment changes

    Hi Guys,
    May you please share the light?
    Weu2019ve deleted Purchase order Account Assignment & entered the new one but the PO Item changes tells us old Account Assignment was deleted and the new one was entered but the system doesnu2019t tells us what was the old value on the item changes. I tried to check the old value on table EKBZ, CDHDR, CDPOS but I couldnu2019t find what the old Account Assignmnent was. Please let me know if there is a table I can use to find the old Account Assignment Value
    Regards,
    Sandile

    HI
    In ME22n in check the changes in header check
    Environment: Item changes.
    Here you can find the changes , as well as the old and new values.
    Regards
    Girish

Maybe you are looking for