Item Pricing date from ref. Invoice not copied into Credit memo request

Hi SAP experts,
If a reference invoice includes several pricing dates on item level
only the first pricing date will be copied into the credit memo request.
Example: Invoice includes three items. First item has pricing date
2007-03-01 and item 20/30 have pricing date 2007-03-03. When creating
a credit memo request with reference to this invoice,
Pricing date 2007-03-01 will be copied to VBKD-PRSDT field
on header/item level.
When the customer has a foreign currency in use, the exchange rate
in the credit memo request will be from 2007-03-01 and not from
2007-03-03 for items 20/30. This is wrong.
Can you help in finding a solution? Copying routines?

Hi,
Yes data transfer routine is the solution for this.You can create and assign a new routine in the copy control at item level for Invoice to Credit memo request.Here you can write the code as to transfer the data of pricing date field form billing document to credit memo request.
This should work.
Reward points if useful.
Regards,
Amrish Purohit

Similar Messages

  • All items are copied into Credit Memo request

    *Dear All*
    *Suppose I have created one scenario in which there is material code with one free goods and run uto the billing.*
    *I just need to know while creating Credit memo request wth reference to Billing,All items are copied into the sales order.My concern is that we can not hide free goods item in return order through Item selection.*
    Plz suggest on that issue

    Hi
    Yes you can set it up in the copy control of the item category so that it is not copied in the return order. But there is a specific reason why SAP would copy it into a return order. Suppose you sell goods and give something free, then based on the principle that the goods which were free were sent with the charged goods, it is expected that if the charged goods are sent back the free goods should also be returned.
    Thanks
    Indranil

  • Line item text field from MIGO are not copied into FI line item text field

    Hi all on SCN, please, I need a help.
    It was created as required by the user a field status group with the text field required.
    This field status group was assigned to some accounts, in order to make my unit tests.
    u2003
    In development envirionment was made some tests directly in FI area, and it works properly.
    u2003
    But the user made a test using MIGO transaction, choosing in this transaction an account that he changed its field status variant to the one created in development environment, that make the text fiels required. So, to start, he donu2019t fill the text item of MIGO, and a message error appear stating that he needs to enter values in this field.
    After fill in the text fiels, he can save his work.
    u2003
    But the FI document generated donu2019t receive the line item text typed in MIGO, but receives the values on Reference document and Document Header text entered in the header of MIGO, what is missing, donu2019t is automatically copied MIGO text line items to FI documents line Items, does there is some additional configuration missing?
    Hope someone help me with this issues.
    Thanks in advanced!

    Hi,
    Material document will get updated in reference field in FI by default.  If for any reason, want to get this updated in text field, you need to define a subsititution in GGB1.
    Best Regards,
    Madhu

  • PR00 Not editable in Credit Memo Request, when copying from Mile stones

    Dear,
    PROO condition type is not editable in Credit memo request(VA01-CR) when iam creating with ref to Mile stone related invoice.
    Requirement:
    Mile stones maintained in Sale order at  line item level -
    >Invoice created with ref to sale order Miles stones-----> Now I would like to create Credit memo with ref to Invoice, the data is copying but the PROO condition type is not changeble.. I would like to change the amount in credit memeo.
    can  i know the reason why it is not changable???
    Thanks  in advance.

    Its a standard functionality.
    Take a help of an ABAPer for following userexit.:
    USEREXIT_PRICING_PREPARE_TKOMP in the include MV45AFZZ.
    The following code will make the condition type PR00 modifiable for user XXXX and non-modifiable for all other users.
    >FORM USEREXIT_PRICING_PREPARE_TKOMP. DATA : i_T685A TYPE STANDARD TABLE OF T685A WITH HEADER LINE. IF SY-UNAME = 'XXXX'. LOOP AT XKOMV. IF XKOMV-KSCHL = 'PR00'. SELECT * FROM T685A INTO TABLE I_T685A WHERE KSCHL = 'PR00'. READ TABLE I_T685A WITH KEY KSCHL = XKOMV-KSCHL. I_T685A-KMANU = 'C'. MODIFY I_T685A INDEX SY-TABIX. MODIFY T685A FROM TABLE I_T685A. REFRESH I_T685A. ENDIF. ENDLOOP. ELSE. LOOP AT XKOMV. IF XKOMV-KSCHL = 'PR00'. SELECT * FROM T685A INTO TABLE I_T685A WHERE KSCHL = 'PR00'. READ TABLE I_T685A WITH KEY KSCHL = XKOMV-KSCHL. I_T685A-KMANU = 'D'. MODIFY I_T685A INDEX SY-TABIX. MODIFY T685A FROM TABLE I_T685A. REFRESH I_T685A. ENDIF. ENDLOOP. ENDIF. ENDFORM.
    Thanks & Regards
    JP

  • Free goods are not copying in credit memo from invoice

    Dear Gurus,
    I have made a invoice having two line items 1.normal goods with sale price and 2.free sample goods(part of promotional scheme) without any sale price.
    but while making credit memo for receiving goods back in cancellation of invoice , i am facing problem for free goods. system is not copying the free goods in credit memo and copying only normal goods.
    what can be problem for not copying? whether i am following some wrong procedure or some configuration is missing.
    please advise me with your valuable suggestions.
    Thanks in advance
    Parag

    hello, friend.
    first of all, the free goods are not relevant for credit memo since the customers never paid for these in the first place.
    however, i observed that after cancelling the invoice, you still issued a credit memo?  this may not be the proper process.  when you cancel the invoice, entries into the customers Accounts Receivables are reversed as well (we are assuming no payments are posted yet).  so there is no need to issue credit memos. 
    if you are referring to another process, please clarify the same.
    regards.

  • Single Credit Note for multiple Credit memo request

    Hi Experts,
    I have a scenario where I want to create a single credit note w.r.t multiple credit memo request.
    I have tried to change the copy controls for Sales order --- Billing, but still the system is creating individual credit memo for respective cedir requests.

    Hello,
    Please review the Note 11162.
    Regards,
    Raghavendra

  • Data from SOAP response not getting into Flex object

    I'm trying to get data from an ALM application we use(Collabnet TeamForge) using a SOAP webservice, and am running into a problem.  I should mention that I am new to both Flex, and webservices.
    I used the "Import Web Services" option in Flex Builder 3, and had it generate code for all operations in the WSDL.  Some of them work just fine.  However, there are several where the data from the SOAP response does not get into the Flex object. The senario that doesn't work is when the response contains a data type that extends another datatype.  In TeamForge, they have a type called TrackerSoapRow.  It extends FolderSoapRow, adding 3 fields.  The problem seems to be that in the response from TeamForge, the 3 fields defined in TrackerSoapRow are in the middle of the fields defined in FolderSoapRow.  I've debugged into it, and the problem occures in mx.rpc.xml.XMLDecoder.getApplicableValues( starting at line 2204 of XMLDecoded.as).  As I read the code, the only way a match can be found is if the fields in the response are in the exact same order as in the definintion.  When its processing the extended data type(  by a call to XMLDecoder.decodeComplexExtension ) at some point, one of the derived type's fields is encountered, and the process stops.
    I have called the service using soapui and verified that all the data I expect is in the response.
    As I mentioned, I'm new to web services.  So, I suppose its possible that the format of the data being returned from TeamForge is incorrect.  That they are not supposed to intermingle base and derived fields.  If thats the case, then I need to report this as a bug to Collabnet.
    All help is appreciated.
    Marc Robertson

    Not knowing any of the details about how you call a web service from OAF myself - I'd suggest you post on the proper forum for OA Framework questions: {forum:id=210}
    John

  • COPA - Account assignment is not green in Credit memo Request

    For regular sales orders ( not credit memo reqs), acct assignment is turning green, but not for credit memo reqs. when I get into account assignment and hit continue it turns green. When a credit memo is created (VF01), acct assignment / characteristics are all getting posted normally into COPA.
    I don't have value flow from Sales order active in config, if this is the reason even for normal sales order it shouldn't turn green. Whats wrong with cr memo reqs? any ideas ?
    Thanks
    Chris

    As already suggested, go to OVA2, Select "B - Sales item", Double click on Procedures, Select "20 - Standard item", Double click on "Fields" and finally maintain the following:-
    Table   Fldname           Description             Scr.    Status
    VBAP    PAOBJNR    Profitab. Segmt No.            PKNT    01
    Now try the process
    thanks
    G. Lakshmipathi

  • Condition types from Central Contract not copied into Purchase Order

    Hi,
    When creating a central contract from SRM to ECC, all the condition types are copied well.
    But when creating a shopping cart from SRM or a PO in ECC referencing the created central contract, the condtion types are not displayed in the conditions tab. (Only Condtion type PB00 is displayed.).
    What can I do to assure, that all the condition types from the contract are displayed in the PO.
    Do I have to do some customizing, or is there a SAP Notes to resolve this.
    Regards,
    Alexander

    Dear Poster,
    As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
    Best Regards,
    SDN SRM Moderation Team

  • Weight from Handling Unit not copied into outbound delivery weight field.

    Hi,
    We create handling units with hupast and with a weight interface. If we select the HU in the outbound delivery, we need the total weight of all HU displayed in the outbound delivery. This is not happening. The total weight which is shown is the weight of the material master.
    How can we put HU weight in the outbound delivery?
    Thank you,
    Eric van Zundert.

    hi Eric,
    you habe to do this with a user exit.
    In the deliveries, there is only one good userexit at the time save dcoument prepare. -- there is a oss - note for it.
    I copy at every save the sum of the HU-weights in the fields of likp.
    Additionally at time of goods out - boocking, i collect the LIKP-weight upon all positions of the lips, so that the sum of lips-weights will give the likp-weight.
    You need to do this, because in invoice, the weight is taken as sum of the positions and the following processes of export will also take the weight of the invoice-position.
    hans

  • Credit Memo Request already exists for item & 1 , & 2, etc

    Hi SD guru's,
    I am trying to create a credit memo request in reference to my sales order invoice and i am getiing this warning message "Credit Memo Request already exists for item ".
    How is this possible,when i am creating the credit memo request only for the 1st time. Message number displayed is V1498, can you please help me solve this issue.
    Also when i manage to enter into the credit memo request document by pressing enter to all those warning's, i am asked to enter the target quantity. How do i handle this? since i have maintained order quantity in my sales order and my sales invoice.
    Message number displayed is V1498, can you please help me solve this issue.
    Waiting for your kind help.
    Regards
    Ravi.D.Mansharamani

    Hi,
    You can control the quantity to be copied into Credit memo request through Copy Controls Quantity Update.
    The the same quantity will be copied from the reference document into target document.
    You are getting error as Credit Memo Request exists , because you have created the Credit Memo request for full Sales Order Qunatity.
    Regards
    Krishna

  • Header data (VBAK- OID_MISCDL) is not copied to order items (VBAP-OID_MISCD

    Hi Team
    When I create an order with reference to another document then header data (VBAK- OID_MISCDL) is not copied into the sales order items (VBAP-OID_MISCDL) for all the copied items. But if I add a new item to this order then the value of VBAK- OID_MISCDL is copied into the new item (VBAP-OID_MISCDL) only.
    Also if I create an order without any reference document then value of VBAK- OID_MISCDL is copied into the sales order item(VBAP-OID_MISCDL) if the header data VBAK- OID_MISCDL  is entered before line items are added to the order.
    Thanks for your help
    Javed

    Hi Paul
    Thanks for your reply. The issue is not with the copy control. The issue is that data is not copied from a header field in sales order into line item within the same document. So while in create mode of the sales order, if I enter line item details like enter material codes and quantities and then I enter value in a header field in the same sale order then that value is not copied across to those line items that were entered before. However during creation of sales order, If I enter value in the header field first and then enter line item details in the same sales order then that header value is copied across to the line items.
    Thanks
    Javed

  • Problem while doing invoice for Credit memo request

    Hi all
    I very well known that Out boud Delivery is not needed for Credit memo request but after saving the CMR and when i raise the Credit Memo (VF01) system is showing a error message saying "PGI not done for Outbound Delivery 30047402"
    In CMR document type i have set the order related billing and i have removed the billing block also
    I have raised the CMR based on Invoice
    Kindly help me in this regard
    Regards
    BMS

    Hi Raj Aryan Malhotra, Thanks for ur reply
    The setting which u said are already there
    The second one that is, change the copying requirement of header to 11. i did this but this time the message was different "The document is not relevant for billing" . After checking the log i could the follwoing info
    Client                                                   240
    Group Number
    Sales Document Number
    Item Number of the SD Document         000000
    Schedule Line Number                         0016
    Counter in Control Tables                     00
    Message Identification                         VF
    System Message Number                    016
    Output Type                                        I
    Message Variable 01
    Message Variable 02
    Message Variable 03
    Message Variable 04
    Group Type                                         F
    Kindly help me to resolve this also
    Regards
    BMS

  • Zero item quantity in value credit memo request

    Hi ,
    I am creating a value creit memo request with the reference to the invoice. From that invoice items are copied. First Item is the header one with item quantity zero (0). when it is copied on the memo request, system gives error that item quantity cannot be zero (0). Do you know how to make it possible ?
    Rgs
    Arek

    Check the Copy Control setting.
    Regrds,
    Rajesh Banka

  • New pricing procedure for Credit memo request

    Hi All,
    I used pricing procedure ABC01 for sales and billing.
    I want to use new pricing procedure ( ABCO2) at the time of creating credit memo request, this credit memo req is with reference to Billing document.
    If I dont use with ref to billing document I can able to create credit mem req with pricing procedure ABC02,
    but if I am trying to create credit mem req with ref to billing document the pricing procedure in the billing document is being picked which is ABCO1.
    Can any one suggest where I am doing wrong.
    I maintained all the relevant copy controls.
    Thanks & Regads
    BVDV

    Hi
    Assign Document pricing procedure Z in VOV8 for CR document type , Now do the pricing procedure determination in OVKK with sales area + Cupp+Dupp=new pricing procedure
    Example :
    In OVKK, determine with 1000 + 10+ 10 + A+ 1 = standard pricing procedure for normal sales
    For credit memo in OVKK determine with 1000 + 10+ 10 + Z+ 1 = New pricing procedure for Credit memo
    Then when you create a sales order (with document type CR ) with reference to billing document then the new pricing procedure will get copied.
    Regards
    Srinath

Maybe you are looking for

  • How to make artificial delay in pl/sql  on forms

    hi gurus, I am using Forms [32 Bit] Version 10.1.2.0.2 (Production) Oracle Toolkit Version 10.1.2.0.2 (Production) PL/SQL Version 10.1.0.4.2 (Production) Oracle Procedure Builder V10.1.2.0.2 - ProductionActually I am making Bulk SMS sending program u

  • Registration Service is unavailable (500); Oracle Configuration Manager

    Getting error while installing OCM in red hat 4 linux server. setupCCR -R ocm.rsp ** Registering installation with Oracle Configuration Manager server(s) ** Failure in registering with Oracle Configuration Manager server Error encountered in register

  • Can anyone help with a table problem?

    Hi, everybody! (ID CS5 -- Windows 7) I have a zillion tables to prepare for a very long document. The tables are in Word. I placed one of them and tried to do a table style. Everything works but I am not able to record in the style the row height of

  • Payment file formats CDFF and DFT russia

    Hi All, We are trying to implement APP for oru russian client. Our  client uses CITIBANK formats DFT and CDFF. These are not supported by the standard system. We use R/3 4.6C Any ideas about this?? Thanks, Ashok Edited by: Ashok Palla on Mar 28, 2008

  • ABAP MAPBOX Issue/question

    Iu2019m working on the CRM/Outlook integration and appear to be having a problem with implementing the ABAP MapBox component.  Based on the documentation Iu2019ve found for the ABAP version there isnu2019t much to do.  The configuration below has bee