Copying of manual conditions  from SO to Billing

Hi experts,
I am facing some problem in copying manually entered conditions from sales document to Billing document.
It is delivery related billing.Service entry sheet. I had checked copy control, ,- In header data Copying requirements   001  Header/order-related and in Item data are Copying requirements  set to 002  Item/order-related, Data VBRK/VBRP to 002  Ord-rel.credit memo, Billing quantity to C,Pos./neg. quantity to +
Pricing type- D, PricingExchRate type- nil, Price source- Nil i.e. order.
I had checked pricing procedure, condition types and billing document type too. could not get any solution. Kindly help.
Thanks in advance
Hrishi

Hi Colin,
Try following the next steps in Tx. VOTXN:
1. Delivery --> Header (Flag) --> Icon Text Types: create your text type in the VBBK object. Let's say Z01D - Text1Delivery
2. As the text types for delivery and billing are in the same object, you need to create (same as point 1) a second text. Let's say Z01B - Text1Billing
3.  Delivery --> HEader (Flag) --> Icon 'Change':
       3.1. Copy the text procedure '02' to 'Z02' to make the needed changes.
       3.2. Select your text procedure Z02 - Delivery Header and click 'Text ID in Textprocedure': add your Z01D text type without 
              access sequence.
4. Billing Doc. --> Header (Flag) --> Icon 'Change'
       4.1. Copy the text procedure '03' to 'Z03' to make the needed changes.
       4.2. Select your text procedure Z03 - Billing Header and click 'Text ID in Textprocedure': add your Z01B text type without 
              access sequence (we need to create the access sequence before assign here).
       4.3. Go back to Access Sequence folder:
               4.3.1. Create a new access sequence, let's say 9001.
               4.3.2. Select your access sequene 9001 and click 'Access Sequence for Text ID's': add at first position (10) Text
                         Object VBBK, and ID Z01D
       4.4. Come back to 'Text ID in Texprocedure' (point 4.2) and assign access sequence 9001 to your Z01B text.
5. Finally assign in 'Text procedure assignment' folder, your delivery type document and your billing tupe document to the Z02 and Z03 text procedures created.
Please let me know should it works.
Best regards,

Similar Messages

  • Copy the pricing conditions from Sales Order to Delivery

    Hi all,
    I have to send the princing conditions from the delivery trough Idoc.
    That's the reason why I need the princing conditions in the delivery. But I can't redetermine the pricing procedure in the delivery creation. I need to copy the pricing conditions from order to delivery.
    Because if there is any manual modification of a condition in the sales order, If I redeterminate the pricing procedure in the delivery, I would lost the changes.
    Anybody knows any User Exit or anyway to copy the pricing conditions from SO to Delivery?
    Thanks in advance

    I think pricing will not determine in delivery, if any shipmentchanges will copy to delivery, not standard pricing.
    Logically, when you create delivery by that time your pricing need to finsh, no changes, so send pricing infor from order to customer, as its standard process in any client.

  • Material exchane ,copy pricing and conditions from main item to sub item.

    Hi All,
    We are using parts exchange/interchangeability in the transaction ME22N,
    While using ME22N we are exchanging  main item with interchangeable part and while doing so we want to copy pricing and conditions from main item to sub item.
    But its not happening.
    As per sap help its possible, details describe below.
    http://help.sap.com/erp2005_ehp_04/helpdata/en/c2/0a5288b77d11d3bcce00105ab03aee/content.htm
    Price Determination by Copying from Main Item
    In the case of price determination by copying from the main item, the net price of the originally ordered part is still used for the superseding part in a part exchange.
    The system copies all conditions from the main item to all sub-items and takes into account the order quantity for the main item when calculating scale prices. It does not take into account the conditions and scale prices that exist for the interchangeable part.
    You cannot change the conditions, which have been copied from the main item, at sub-item level. It is possible, however, to define additional conditions for each sub-item.
    Prerequisites
    A calculation schema, which can be altered on an individual basis in Customizing, has been supplied for the price determination.
    In the vendor master record, you have set the schema group 09 (interchangeable material).
    But in customizing I didnu2019t find value 09 for schema group .
    Can any buddy through some light on missing pieces which need to be set?
    Thanks
    Regards
    Ritesh

    Hi,
    Can you check few more things and tell me?
    - In this exit, does XVBPA and XVBAP contains all the line items. ( main and sub items ).
    - In Sales order creation time, do these table have VBELN populated when this exit triggers.
    - If you modify XVBPA or XVBAP in this exit, do they get overwritten after that.
    Try this code. See if it works.  Let me know if you still have a problem.
    DATA: wa_hvbpa LIKE vbpa,
          wa_xvbpa like vbpa.
    CLEAR: wa_hvbpa, wa_xvbpa.
    * check if HVBAP and VBAP line items are not same
    IF vbap-posnr <> hvbap-posnr.
    * read the ****-to partner from main-item
      READ TABLE xvbpa INTO wa_hvbpa WITH KEY posnr = hvbap-posnr
                                              parvw = 'WE'.
      IF sy-subrc = 0.
    *   read the line item data for sub-item based on main item
        READ TABLE xvbap WITH KEY posnr = vbap-posnr
                                  uepos = hvbap-posnr.
    * See if current line is the child of that BoM parent
        IF sy-subrc = 0.
          MOVE wa_xvbpa-kunnr TO xvbpa-kunnr.
          MOVE xvbap-vbeln TO wa_xvbpa-vbeln.
          MOVE xvbap-posnr TO wa_xvbpa-posnr.
          MOVE 'WE' TO wa_xvbpa-parvw.
          MODIFY vbpa FROM wa_xvbpa.
        ENDIF.
      ENDIF.
    ENDIF.
    Regards,
    RS

  • How to copy the Pricing conditions from one Distribution Channel to another

    Generally we use VK11 transaction to create conditional records .
    but I Need to Know whether is it Possible to copy the Pricing conditions from one Distribution Channel to another with same name and same internal Characteristics .
    Since we have around 70+ of Condition type with different parameter Sequence.So Instead of Going for BDC whether is there any standard Funct Modules/programs/BAPIs to do this?
    How to make a copy Condition types from One Distribution Channel to another.
    since SAP has already provided to copy conditions from Customer to customer.
    Likewise i need to know whether SAP is facilitating for these feature also.
    Iam Dubious in this issue.
    Hope Fully looking for the answers.
    Harish.N

    - IDOC_INPUT_COND_A (you can create IDOC, but also call directly)
    - call transaction / batch input (use transaction XK15, as used by LSMW)
    - use group of function modules RV_CONDITION_COPY, RV_CONDITION_SAVE, RV_CONDITION_RESET + commit.
    if you search SDN on 'RV_CONDITION_COPY' you'll find more info I believe.
    Someone mentioned BAPI_PRICE_CONDITIONS as well.

  • Copy Control settings : Copy Only Manual conditions

    Hi,
    I have following configuration in SPRO for 'copying control of item categories':
    Source item category- ZSPP
    Target item category - ZPQL
    Copying routine - 900004
    Copy Conditions - Only Copy Manual conditions
    This copy control configuration will be used in 2 scenarios :
    1. When creating service contract quote as follow-up to service contract
    2. When creating service contract as follow-up to some other document type which is custom
    My copying routine is required only for first scenario. So, I have put one conditions in my copy routine(CRM_COPY_BADi) and it is working fine. This copying routine is getting triggerd only for first scenario.
    However, my another requirement is,
    Copy conditions - should be "Copy Manual conditions" for scenario 1 and
    Copy Conditions - should be "Copy All Conditions" for scenario 2.
    So, could you please let me know, how can control this, sinca same item categories are used in both the scenarios. I can't create or change the item categories since already they are in use.
    The baseliine is : I am able to control the copying routine by keeping a condition in CRM_COPY_BADI. But, at the same time I should control "COPY CONDITIONS" also.
    Is there any way to control through config or coding?
    Please help me.
    Thanks,
    Sandeep
    Edited by: Sandeep Reddy on Aug 17, 2010 1:37 PM

    Dear,
    1 )Use TCODE -- VTFA  and maintain between OR ( source doc)TO F2 (Target Doc.) for ORDER RELATED BILLING
      If u want Z Document type then copy OR and make ur OWN SALES DOC like ZMFG and also copy F2 and create like ZFGR
    and maintain as suggested above.
    At Header Level -- COPYING REQUIREMENT (001)
    At ITEM Level-- COPYING REQUIREMENT (001)
                              DATA VBRK/VBRP (003) SINGLE INVOICE OR (001) SPLIT INVOICE
                             Billing quantity (A) / Pos./neg. quantity (+)/ Pricing type (C)
    2) Use TCODE -- VTFA  and maintain between OR ( source doc)TO F5(Target Doc.) for ORDER RELATED  PROFARMA BILLING in similar way u can maintain for ur Z Documents
    At Header Level -- COPYING REQUIREMENT (007)
    At ITEM Level-- COPYING REQUIREMENT (008)
                              DATA VBRK/VBRP (003) SINGLE INVOICE OR (001) SPLIT INVOICE
                             Billing quantity (A) / Pos./neg. quantity (+)/ Pricing type (C)
    need further help revert back.
    Regards
    AJIT K SINGH
    HAPPY TO HELP U

  • How to restore deleted manual conditions from sales order?

    Hello Experts,
    I have a situation where one of the users did a mass change on many sales orders. As part of this mass change, re-pricing was done and that deleted all manual conditions which are applied on each sales order item level.
    Is there a way I can restore deleted manual conditions?
    Please let me know and appreciate any help!
    Thanks!
    PL.

    hi
    peter
    you find the sale order  manual deleted condition types  in AUT10 t code level
    go to AUT10 t code here enter the sale order number and give the date time, then execute now its showing  condition types and amount also
    pl check below screen
    regards
    sankar

  • Copying of freight conditions from billing document to return order

    Hi,
    I have a scenario of returns with reference to the billing document. In earlier billing documents the conditions like freight, insurance etc., are maintained. While creating the return order with reference to the preceding billing document, system is copying the freight, insurance conditions also, which I donu2019t require in case of returns scenario. Can anyone help me to come out from this problem?
    Thanks
    Srinivas

    Hi
    In VTAF choose your source billing type and target sales type and choose your item category
    In that i think in your case D is set
    You can define a new pricing procedure for your return order and make the necessary settings in OVKK by leaving out all freight conditions
    After this In VTAF choose your source billing type and target sales type and choose your item category
    In pricing type you can set it to B so that a new pricing is carried out without the unwanted condition types when you make the return order referencing the billing doc
    Alternatively you also try with pricing type H in that pricing type that is freight gets redetermined
    Regards
    Raja
    Edited by: ramanathan raja on Nov 20, 2008 8:57 PM

  • STO Conditions not flowing to Billing

    Hai,
    I havec created STO-ME21N, & VL10B
    VF01-
    doc type:JEX maintained Copy controls & at item level - Price source- A=Pruchase order. NLN item cat.
    still conditions from STO to Billing doc_VF01
    can anyone have any idea?

    I have done all those- basic settings.
    able to create delivery (NL- Intracompany STO)
    n billing- VF01
    billing rel- A delivery related billing-
    I have to create Commercial billing, bcoz receiving plant settles the invoice to issuing plant.

  • Copying Freight condition from delivery, on order related billing line

    Hello,
    Greetings!
    My client use Pitney Bowes interface to calculate freight on outbound deliveries, Interface creates condition ZPFR on delivery; It works well, however scenarios such as milestone billing and phantoms are order related billing; I couldn't find standard way to read those delivery conditions and bring over to order related invoice.
    Appreciate your thoughts,
    thank you,
    Hetal

    Hi Mukund,
    As mentioned, Milestone orders and phantom parts are order related billing.
    Components (for phantom) and lines on milestone order are shipped, therefore freight is calculated on delivery.
    At this moment,
    1. Workaround is to manually add freight condition on sales order, after PitneyBowes calculated freight on above delivery.
    2. Write some custom solution to copy freight condition from delivery to sales order (may not be best solution, but to avoid manual workaround)
    Therefore, freight would carry over to invoice and finance flow works as other delivery related invoicing.
    thank you for reply.
    Hetal

  • Freight Condition not getting copied from order to billing

    Hi,
    Here at my clients place, i have created new condition type for freight(which will be calculated after excise duty and VAT).This conditon type should not increase the order value but increase tax amount in sales order item level.
    For this i have created new conditon type ZFRI-Manual Condition
    Condition Class- D (taxes)
    Calculation Type- B (Fixed amount)
    Condition Category-F (Freight)
    In sales order i have maintained this condition manually and done PGI,
    Now when i am going to create billing that condition is not displaying in billing-VF01.
    Kindly suggest...where to check...
    thanks in advance...

    Dear Ullas,
    In your Billing document go to Item Condition detail screen & there would be a button on bottom of the screen - Update.
    Double click on this update button & select G - Copy pricing elements unchanged and redetermine taxes.
    This would solve your problem.
    If not, then check copy control setting between your Sales, Delivery & Billing Documents.
    Hope this helps.. .
    Give points if useful...
    THanks,
    Jignesh Mehta

  • Copy condition from sales order to invoice ?

    Sorry for this very general question, but i need a starting point for my development. It is partly functional and partly technical. Data transfer or copy requirements are probably needed.
    The situation is :
    Sales order with a condition type and value (manual entry)
    -->
    Delivery without that condition type
    -->
    Invoice (Intercompany) should get the condition type (with same value) from the related sales order
    I think that the condition type also should be added to the pricing procedure of the invoice ?
    How can i arrange that if the condition type exists on sales order is copied to the invoice at creation ?
    regards,
    Hans

    Hello saurabh,
    thanks for your reply, as you said, I can create the same PP in SD and determine in IV, but the issue which I am facing is I am capturing mkt mvg price from material master in my PO.  Once the PO is raised, IV can be done after some time, whereing there is a huge chance, that mvg avg price from MM can be changed.  Now if I determine a PP in billing, the price in billing doc and PO will be different.
    So, I have to have capture the value from PO to billing.....
    Any help is much appreciated.
    Thanks in advance
    AKASH

  • Copy of conditions from PO, even if in price adoption - do not copy is ther

    Hi all,
    Even if i have the settings like in default value for buyers - in price adoption tab - copy of conditions from previous PO - do  not copy is there. then also previous PO value is copying , every time when i create a PO.. because of this I am really confused to find out the solution for this.. kindly let me know the possible solution for this..
    regards,
    Archana

    No here no info record requirement, PO should be created manually each and every time since the price changes each time that has to be entered manually only while creating PO..
    Since we are creating PO through BAPI.. it is always copying old po price.. and hence it is giving problem like whatever price manitained in excel sheet is not copying into the PO
    kindly let me know possible solution to resolve this
    regards,
    Archana

  • Copying control from Delivery to Billing

    Hi Experts,
    I created a new requirement for Copying control from Delivery to Billing. And it works in our develop server.
    But when I transport it to our test server, it dumps with message can not find the include which my new requirement in.
    But I go to SE38, there is the include.
    I really have no idea about this. Any advice will be a help.
    Thank you in advance.
    Richard

    Hi,
    Please follow the step mentioned below it will solve your problem.:::
    1)The first step for correcting this type of short dump is to execute the RV80HGEN utility  program to re-generate all VOFM routines. Unfortunately, running this program does not always solve the problem. executing RV80HGEN did not work.
    The output report for RV80HGEN denotes that all routines were activated, but the parent include was not repaired.
    2) Since RV80HGEN did not solve the problem, the next step is to manually regenerate the program index of the program that contains the VOFM routine. For billing data transfer routines, the program is SAPFV60C
    3) From the program editor, navigate using the menu to Utilities>Update navigation index.Executing this function will solve the problem.
    Hope your problem is resolved !!!
    Regards,
    Krishna O

  • Tracking manual condition types in billing document

    Hi,
    I need to track changes in manual condition types in billing docs over a period of time. These changes are not maintained at Change doc tables (CDHDR,CDPOS).
    Please suggest whether there is any other way to solve this issue.
    Thanks.

    Hi,
    Check with KONV table
    Enter the Condition record number in field KNUMV of table KONV (This you can get from VBRK table for the Billing Document), and check with the field KMPRS in KONV.
    Reward point if it helps !!!!!
    Harsh

  • Copy pricing conditions from R/3 to CRM

    Hello,
    I am using Function Module CRM_ORDER_MAINTAIN to copy pricing conditions from R/3 sales order to CRM complaint document.
    I am fetching R/3 conditions with the help of RFC call to R/3 and then passing these condition records to the FM CRM_ORDER_MAINTAIN.
    I am populating the importing parameter - IT_PRIDOC of this FM. And filling following internal table of this importing parameter:PRIC_COND, COND_ADD, COND_CHANGE and COND_DELETE.
    I am not sure if filling table PRIC_COND would be needed.
    Could you please guide me about the exact use of these tables? Do you have any documentation for this function module?
    Many thanks in advance,
    Sandhya.

    Dear Sandhya,
    I am facing the same problem.
    Could you please explain me (in case you finally implemented this), how you did it?
    Thanks in advance.
    Regards,
    Yolanda

Maybe you are looking for

  • Strange Things are Happening...

    Hello, Whenever I turn on or restart my Mac mini v. 10.4.3, it successfully logs in until it reaches the desktop. Then everything disappears, leaving only my background, and then reappears. However it disappears again and goes into an endless loop of

  • Locating backed up files

    When I was updating the ipad a couple of days ago, the ipad required me to restore it. icloud worked on some files  however not other such as apps and pictures. When i go to the icloud tab on the ipad the press storage and backup then press manage st

  • Theme Transport

    Hey I've been working on a Look and Feel project for the past few weeks , and my theme is nearly done (just missing some minor changes). we are now tryng to transport the theme to other portal. we have some errors mainly on the following areas:    -

  • My G62-340US, I just had to replace the hard drive. My recovery discs seem compromised. HELP

    On my G62-340US, I just had to replace the hard drive. I made the 4 recovery discs when it was new. Now restoring it 3 of the recovery discs ran but the 4th disc won't. Can the info on the 4th be found anywhere without having to buy a new set? Or can

  • Changing smtp port on NS 3.5

    Is there a way to change port for smtp on NS 3.5 (yes I don't want to upgrade to v.4)