Deletion of purchase order condition type

hi gurus.
the situation is that-
the user has created a purchase order with some condition type ( freigts).and then he done the migo automatically material document generated with (gr document &
delivary cost document as po history).now the user realise that there should not be any freight so he canceal the material document.now when he want to delete the condition type the system did not allow him to do so.is this sap standard error or it's happening due to customisation.i am in ecc5.0 and ecc6.0
please help me out.
regards,atanu

Hi,
Unfortunately this type of issue don't get resolved even if after you cancel the material document . Experts can comment on this .
Either you create a fresh PO or make changes in MIRO level.
Thanks
Dipak

Similar Messages

  • Import Purchase order-Condition type and pricing procedure

    In purchase order (IMPORT) has 500 line items. For each line item having customs condition type (BCD, cess, HScess, CVD, cess, HScess, Additional duty). For this manual entry is very difficult to entry.
    By default condition type can pick default % or value like as
    BCD 5%
    Cess 2%
    HScess 1%
    CVD 10%
    Cess 2%
    HScess1%
    Additional duty 4%. at the time of PO creation level by default this values come to in PO
    For this anything maintain in condition type level or calculation schema level.
    Pls explain step by step.

    create a acess seq in tcode  M\07 with say table 044 for vendor
    assign this acess seq to ur condition type of customs ecess cvd etc
    create a cond record in MEK1 for all import vendor
    so when ever u create PO for any import vendor u will get all the value for all condition type from cond record.
    u can create acess seq as u woulds like to maintain  cond record may be on purchase org if u have created seprate for Imports
    or vendor plant comb etc
    hope this solves ur issue

  • Purchase order condition type

    Hello All,
    I have one requirement in which i want to show the total of three condition types of taxes section in one condition type in conditions tab.
    for eg in PO in invoice tab> taxes there are three condition of taxes like jm0p,jiex,jecp and there values are 100 200 and 300 rupees.now i want to show the sum of these three in conditions tab under jip9 condition type.
    Im using routine to calculate the same but not getting the desired result.
    Pls let me knw any information on this.
    Regards,
    Sunny

    Hi Friend,
    Did you have activated the routine?
    Through VOFM, after writing the condition value, select the routine; Edit -> Activate.
    Put the routine name agains the main condition type in pricing procedure.
    And i need to know how you are getting the value  for other three condition types. Take values through sub total (give value like D,E,F); then it will be stored in XKWORD, XKWORE, XKWORF variables.
    Hope it will solve the problem.
    Regards
    Krishnendu

  • Purchase order condition type price is changed

    Hi Experts,
    After the GR has completed.. through work flow batch job ,the main condition type ZRUP( Roll up price) is changed ....Now for invoice verfication system using the new price not the price in which GR has been done.
    Basically a subcontract PO ( SO - PR- PO - GR(Mb01)- Now trying to do MIRO)
    through ME22 T.ocde the work flow eent is triggered. in item changes i am able to check..
    But i am unable to under stand why ME22 has been trigerred..
    Any bosy if you have come acros such sittuation.. Please let me know
    Points are fully assured.....
    Regards
    Prabhat

    Hi,
    Thanks for the answer.
    My requirement is i am able to check that price is changed.. Now why the work flow event is triggered..
    Is there any standard task list is SAP which triggers ME22 through work flow.
    Regards
    Prabhat

  • Purchase Order - Condition TYPE FRB1 question

    Hello All,
    I have a Condition Type FRB1. The price comes from an external source. Once we recieve the price which is automatically sent into our system. We then continue on. But when we recieve the item is the problem:
    If the PO item Quanity is 45000 LBs and we just recieve 44, it still calculates the FRB1 price as if it is 45000 lbs.
    Is there a way to have the system check the FRB1 and quanity when we do the recieving? Someone on my team thinks it is Prorating, but I am not sure that is the correct term to use.
    Is there a config procedure possibly for the  FRB1 to calculate a different price based on the quanity and not the Quanity on the PO, or do I need to have a Developer code a validation check?
    any advise would be helpful
    thanks
    Walter

    strange - to my knowledge  SAP proportions the freight rate while doing GR with a different quantity.
    and SAP has released an OSS note 304178  telling that there is no other solution.

  • Retrieve the Purchase Order Condition Records Table

    Hallo!
    I have found this code right here:
    http://www.sap-basis-abap.com/sapab025.htm
    It is very useful particular for purposes which I need. Please can somebody
    try to fix the error to get it working. There is an internal table missing.
    Regards
    Ilhan
    Retrieve the Purchase Order Condition Records Table
    select * from ekko.
           select * from konv where knumv = ekko-knumv
               "Get all the condition records for the purchase order
           endselect.
    endselect.
    * Get the info record conditions record
    * First declare the record structure for the key
    data: begin of int_konp,
                 txt1(5),
                 lifnr(5),
                 matnr(18),
                 txt2(4),
                 txt3(1),
            end of int_konp.
    clear: konh, konp, int_konp.
    * data for the record key konh-vakey
    int_konp-txt1    = '00000'.
    int_konp-lifnr    = ekko-lifnr+5(5).
    int_konp-matnr = ekpo-matnr(18).
    int_konp-txt2    = 'ALL'.
    int_konp-werks = ekpo-werks.
    int_konp-txt3    = '0'.
    select * from konh where      kschl = 'PB00'            "Conditions (Header)
                                         and datab => p_datum.       "valid from date
          if konh-vakey = int_konp.                                  "Conditions (Item)
                 select single * from konp where knumh = konh-knumh.
                 continue.
          endif.
    endselect.

    Hi flora
    Just get through the sequence .
    see the table fields ...
    1. From EKKO table take an entry which is having pricing conditions.
    Now in the fields list check out for field EKKO-KNUMV(document condition number).
    2.Take this condition number and now goto table KONV.
    Give the document condition number in the field  KONV-KNUMV and execute .
    This will lead to a list of document condition numbers and some other fields .
    3.Now check for field KONV-KNUMH ,KONV-KAWRT(quantity) and note the value KONV-KWERT  .
    (Remember this is at header level).
    This is ur condition record number.
    **comments
    Now from document condition number we got the condition record number (KNUMH).
    4. now since u want the item level tax procedure go to table KONP and give the condition record number and execute .
    This will give u a list of details .
    Now concentrate on KONV-KAWRT (scale quantity) KONP-KBETR(rate) as this table will store “Pricing  per UNIT “ so product of these two will give u the total pricing tax, for a particular condition type say PR00  .
    For that particular condition item .
    Check the pricing procedure .
    See t-code VK13 and check the pricing procedure .
    From me23 check the same PO num select the item and check the pricing conditions applicable .
    Select a particular pricing and goto condition->analysis->analysis pricing  ,
    Better take help of a SD functional consultant in the process.
    regards,
    vijay.

  • GL Configuration Purchase order condition

    Gurus,
    Kindly let us know T-code to see GL Configuration of Purchase order condition.
    Condition type...is as under
    ZDEC
    ZJWC
    JEXC
    SKTO
    JEXS
    Condiation Use "The condition type indicates, for example, whether, during pricing, the system applies a price, a discount, a surcharge, or other pricing elements, such as freight costs and sales taxes. For each of these pricing elements, there is a condition type defined in the system"

    Hi,
    Check in account key OB40 and OBYC settings
    Regards,
    JA

  • Event : changing purchase order's type in transaction ME21N

    Hi all,
    I am looking for a user exit or an enhencement to set some abap code when a purchase order's type is changed by the user in transaction ME21N.
    Thanks.
    Regards,

    Hi,
    Please find the user exit list below for ME21N. You can try out.
    USER EXIT
    MELAB001 Gen. forecast delivery schedules: Transfer schedule implem.
    MEQUERY1 Enhancement to Document Overview ME21N/ME51N
    MEVME001 WE default quantity calc. and over/ underdelivery tolerance
    MM06E001 User exits for EDI inbound and outbound purchasing documents
    MM06E003 Number range and document number
    MM06E004 Control import data screens in purchase order
    MM06E005 Customer fields in purchasing document
    MM06E007 Change document for requisitions upon conversion into PO
    MM06E008 Monitoring of contr. target value in case of release orders
    MM06E009 Relevant texts for "Texts exist" indicator
    MM06E010 Field selection for vendor address
    MM06E011 Activate PReq Block
    MMAL0001 ALE source list distribution: Outbound processing
    MMAL0002 ALE source list distribution: Inbound processing
    MMAL0003 ALE purcasing info record distribution: Outbound processing
    MMAL0004 ALE purchasing info record distribution: Inbound processing
    MMDA0001 Default delivery addresses
    MMFAB001 User exit for generation of release order
    MRFLB001 Control Items for Contract Release Order
    AMPL0001 User subscreen for additional data on AMPL
    LMEDR001 Enhancements to print program
    LMEKO001 Extend communications structure KOMK for pricing
    LMEKO002 Extend communications structure KOMP for pricing
    LMELA002 Adopt batch no. from shipping notification when posting a GR
    LMELA010 Inbound shipping notification: Transfer item data from IDOC
    LMEQR001 User exit for source determination
    LMEXF001 Conditions in Purchasing Documents Without Invoice Receipt
    LWSUS001 Customer-Specific Source Determination in Retail
    M06B0001 Role determination for purchase requisition release
    MEFLD004 Determine earliest delivery date f. check w. GR (only PO)
    MEETA001 Define schedule line type (backlog, immed. req., preview)
    ME590001 Grouping of requsitions for PO split in ME59
    M06E0005 Role determination for release of purchasing documents
    M06E0004 Changes to communication structure for release purch. doc.
    M06B0005 Changes to comm. structure for overall release of requisn.
    M06B0004 Number range and document number
    M06B0003 Number range and document number
    M06B0002 Changes to comm. structure for purchase requisition release
    Thanks,
    Raj

  • I need output type NEU automaticaly for create purchase order document type

    Dear Experts,
    I need output type NEU automaticaly for create purchase order document type NB
    when transaction code MN04, I am doing the following:
    (1) I selected the third option Purchasing Output determination: Document type
    (2) I selected the output type NEU.
    (3) In condition records in document type , i have chosen NB.
    (4) In name its automatically coming as Purchase requisition
    Please suggest how Purchase Order NB will come

    Hi,
    Check & press F4, NB Purchase Order (for catagory F) will be there after entering PO output type NEU & then maintaion the condition record in MN04.
    Output type NEU automaticaly defaulted during purchase order creation with document type ,then just fine tune the output (message) type in following path:
    SPRO--->MM->Purchasing>Message>Output control->Message types> Define message type for Purchase Order----->Fine-Tuned Control: Purchase Order
    Now here select the check box corresponding to your output(message) type NEU to have print output automatically displayed & save.
    Now try to creating Purchase Order & you will have default message type NEU.
    Regards,
    Biju K

  • Authorization based on plant and Purchase order document type

    Hi
    My client has a requirement wherein a user will have authorization for transactions only in his plant. But only for Purchase order document type UB (Stock Transport Order) the user should be allowed to create for all plants.
    In short, if Purchase order document type is UB, should be allowed for all plants
                 if Purchase order document type is NB, should be allowed to only one particular plant.
    My Basis person says that such a restriction is not possible.
    Kindly suggest me on how to provide a solution to this.
    Thank U.

    Hi,
    This is possible.In this case you need to create two seperate roles.
    1)Create purchase order for all plants (This can be used in long text)
    2)Create purchase order for <plant no> plants.
    For case 1:--
    i)Populate field BSART of M_BEST_BSA with UB.
    ii)Populate field WERKS of M_BEST_WRK with '*'. SAP reccomends to fill up organizational data through organizational level tab only.So while doing this step you need to put * from organizational level tab only.
    For case 2:--
    i)Populate field BSART of M_BEST_BSA with NB.
    ii)Populate field WERKS of M_BEST_WRK with 'plant no'.
    Dont worry about the objects i mentioned those are maintained through SU24 and will be automatically pulled once you insert ME21 transaction code.
    Let me know if it helps.
    Thanks,
    Aveek

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

    Hi Friends ,
                 I'm facing a problem in identifying a data source for  Purchase Order's. On searching in SDN Forum i came to know that there is no standard Datasource for Purchase order conditions.
                 Can some one give me little clue of how to pick up the conditions from R/3 to my biw system.
    Thanks and Regards,
    Vijay

    Hi Anil ,
             Thanks for your response.
             On analysing the condition table KONV in R/3 one thing striked my mind.
             Either it's Purchase order or Sale Order the condtion table is one , that is KONV. So if the condition number is available for a PO i think very well we can pick it for po's.
             Can you give me your suggestion on the above...please.
    regards,
    Vijay

  • Purchase order Condition control tab?

    Hi,
    Here in the purchase order condition control tab I need to get Price Date and Price date category. Presently they are not appearing in my purchase orders. When I go to screen layout, I am not able to get those fields to configure.
    Could please anybody help me urgently?
    Thanks,
    Bhairav

    Hi
    GOTO----> OLME--> PO -> Define Screenlay out at Document level -> There Choose your Field Selection ( NBF  and ME21N)... and go into to details--> And select the field selection group  Quantity and Price and Double Click--> There you choose the field  <b>PRICING DATE CONTROL</b>    and  Check it as a Required Entry or Optional Entry and save . <b>DO IT FOR BOTH NBF and ME21N FIELD SELECTION.</b>
    Now when ever you make PO in ME21N.....You will get Pricing Date Category and  Price Date Fields in  PO-> Item Details---> Condition Control Tab.
    Reward if useful
    Regards
    S.Baskaran
    Message was edited by:
            baskaran srinivasan

  • 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 Document Type and Account Assignment

    Hi  ,
    We have a requirement to control Account Assignment in Purchase Order Item line based on the Document type selected on the Purchase Order header.
    Like if user selects Purchase Order document type "ZNB" (Customized created) , then he will only able to select "K" or Blank or "P" as account assignment and similary we want to limit other Account assignments based on the Purchase Document type.
    How can we make this Control settings?
    Regards
    Shrey

    Hi,
    You can't really limit the account assignment categories per document type, at least not directly.
    You can limit the item categories that can be used for a document type via configuration:
    Materials Management > Purchasing > Purchase Order > Define Document Types
    Within this transaction you can define which item categories are valid for a specific document type.
    You can then define which account assignment categories are valid for each item category
    Materials Management > Purchasing > Account Assignment > Define Combination of Item Categories/Account Assignment Categories
    BUT
    limiting the account assignment categories that are valid for an item category will affect ALL purchase order document types that this item category is valid for. And you can't create your own item categories as this is a SAP standard table that can NOT be altered.
    Regards,
    Monika

Maybe you are looking for

  • PGI control in Proforma Invoice creation

    Hello, With standard copy control from Replenishment delivery(NL) to Proforma invoice system allows to do Proforma invoice without doing PGI, but to allow the creation of proforma invoice only after PGI what routine needs to maintain? I tried 034 at

  • HT2731 I would like to have a Canadian itunes account, and a UK one. Is this possible?

    I have a Canadian iTunes account, but now live in the UK so would like to have a UK one. I don't, however, want to give up using my Canadian one. Is it possible to have both at the same time?

  • How to read dynamic file names in RSEINB00?

    Hi, ABAP Gurus, actually I'm a PI Consultant. Now I have a scenario to use the report RSEINB00. In the Applicaton Server i put ASCII IDocs with the following name convension: <static name>+<time stemple>: SAPIDOC20111127-224128-952.txt SAPIDOC2011112

  • Diversity and trying to conver two different areas

    So the whole purpose of diversity is to provide/improve coverage in a same area.  Basically two antennas placed with a reasonable distance from each other and the concept is that one antenna might receive a better signal than other and then both sign

  • Officejet Pro 8600 + BT500 + iPad?

    Hi everyone,   I have an Officejet Pro 8600 Premium and I need to print from it using an iPad. I can easily print over wifi from the iPad however the POS software that I'm now running on the iPad will only print to a bluetooth printer. This led me to