Copy control invoice - order - KDMAT will not be there

Hi Experts!
we create customer orders (in this case credit notes) with reference to an invoice.
the problem is that the field vbap-kdmat is empty in the copy control and so it could not be filled into the new order.
in VTAF we use the copy requirement 153 Item from bill.doc.
in the PO tab of the invoice the customer material is filled (manually)
We don't have set up information in VD51 but we fill the customer material with some information and this should be copied into the returns.
does anyone have an idea how to get the copy control working?
I tried to change the 153 to 151 where the source says:
    vbap-kdmat = cvbap-kdmat.
but without the value in vbap (it is empty while executing this code) the field will remain empty.
Thank you in advance
Regards
Daniel Hermann

hi
billing level PO tab customer material number comes through order , here table also VBAP, so actually this PO tab all fields are display mode only ,
when enter the sale order item PO tab level enter the customer material number , then pass to same billing level ,
when billing level you enter manually this data fet at VBAP table only ,
so you assign the copy routine 151 then on kdmat copy billing to credit memo order OR we maintain same kdmat  in main order its copy to billing then also copy credit memo also
do this
regards
sankar

Similar Messages

  • ICloud Control Panel 2.1 will not install on Windows 7 x64

    iCloud Control Panel 2.1 will not install on Windows 7 x64. If I try the to run the install from the Apple Software Updater it the iCloud 2.1 crashes and I get a message that suggests I do a download only  and they run it locally. I do that and the install i.e. the exe file just seems to never start even if I try to "Run as Admin"
    I go int o task manager and there is no instance of the install running.
    What is the issue/work around to this?
    Thx to all for help.
    Michael

    I didn't try creating a new user profile. Not sure I completely understand what you're suggesting. I dont't want a new/different profile. I just want to be able to install the update.

  • After an update itunes will not open. there is a missing msvcr80.dll i tried to re install itunes and now it says check system services. I have full admin to pc

    after an update itunes will not open. there is a missing msvcr80.dll i tried to re install itunes and now it says check system services. I have full admin to pc

    turingtest2 post 01/2014: MSVCR80.dll missing, cannot install iTunes - https://discussions.apple.com/message/24618776
    iTunes for Windows: Missing MSVCR80.dll - https://sites.google.com/site/appleclubfhs/support/advice-and-articles/itunes-wi ndows-missing-msvcr80-dll - install as administrator.

  • PhotoShop external editor doesn't show up in Preset file application support. It is listed as the top external editor. But will not go there

    PhotoShop external editor doesn't show up in Preset photoShop file application support. It is listed as the top editor in the Light room preference. But it will not go there. You can use export to Photoshop CC but not as a editor. It stays there. I have OS10.8 and Photoshop CC not Photoshop CC2014 at this time. If I go to presets in Lightroom preferences and push restore export presets
    do I also lose my plugin presets and have to reload them ?

    Trakibounce:
    Glad you were able to resolve your issue. Thanks for posting back with how you did it.
    HAPPY HOLIDAYS!
    cornelius

  • So, I am travelling to Italy next week.  I am from the US.  VW's "Trip Planner" suggests my iPhone 5s will not work there.  Then, they suggest (via options below) that I can send Txt for $0.050/txt and Receive for $0.05/txt.  How can I confirm which is tr

    So, I am travelling to Italy next week.  I am from the US.  VW's "Trip Planner" suggests my iPhone 5s will not work there.  Then, they suggest (via options below) that I can send Txt for $0.050/txt and Receive for $0.05/txt.  How can I confirm which is true?

    We are here to help! Where are you traveling to? How long will you be there for? What kind of services are you looking to use?
    KarenC_VZW
    Follow us on Twitter @VZWSupport

  • Copy control Returns order to invoice or sales order

    Hi all,
    we are using Sold-to's with a variety of partners and partner types of which all are not being used in the sales order.
    Unfortunately when we create a returns order in refernce to either the original sales order or the invoice, we are bing presented with pop ups showing all partners. i.e the original invoice does not have a special partner we use (ZF) but when we create the returns order we are being asked to pick this partner or if there is only one it is populating the partners.
    We do not wish this to happen we wish only for the original partners to be copied, i.e. no additions and no requests for us to pick one if there is more than one.
    Can anbody advise on copy control settings to manage this we have tried various options but none have worked.

    Hello Greenbum
    1) You can use your own copy routine in the header  ( Copying Control: Billing Document to Sales Document) where for Copying requirements for partner data VBPA-  the bottommost Data Transfer routine- you may copy and modify routine FV45C001.
    If the above does not work
    1) Assign a Partner Determination Procedure with only requisite Partner functions to the 'Return' Order.
    2) In the procedure, populate  the 'Origin' filed for all the partner functions with X, Y or Z and devise user exit for partner determination- EXIT_SAPLV09A_003.
    Let me know how it goes.

  • Billing Copy control-invoice split by material document

    Splitting the invoice based on the material Document(ekbe-belnr). Suppose i have 3 material documents for one Purchase order. Based on the 3 material documents, it shpould create  3 invoices. So for this i created a routine. Its for  billing document copy control. But my routine is combining all the material document quantities and it creating only one invoice but i required multiple invoices based on no of material document. i wrote code like this. Its urgent..
    FORM daten_kopieren_901.
      TABLES:  kna1.
      DATA : v_kunnr TYPE kunag,
             v_katr2 TYPE katr2,
             v_belnr TYPE ekbe-belnr,
             v_bewtp TYPE ekbe-bewtp.
      DATA: BEGIN OF it_zuk1,
                modul(3) VALUE '904',
                vtweg LIKE vbak-vtweg,
                spart LIKE vbak-spart,
                belnr LIKE ekbe-belnr,
                vgbel LIKE vbrp-vgbel,
            END OF it_zuk1.
      TYPES:BEGIN OF t_ekbe,
               belnr TYPE ekbe-belnr,
               bewtp TYPE ekbe-bewtp,
               flag  TYPE c,  "Rajiv
            END OF t_ekbe.
      TYPES:BEGIN OF t_vbap,
               vbeln TYPE vbap-vbeln,
               posnr TYPE vbap-posnr,
           END OF t_vbap.
      TYPES:BEGIN OF t_vbep,
                 banfn TYPE vbep-banfn,
              END OF t_vbep.
      TYPES:BEGIN OF t_eban,
                ebeln TYPE eban-ebeln,
                ebelp TYPE eban-ebelp,
            END OF t_eban.
      STATICS:i_ekbe TYPE STANDARD TABLE OF t_ekbe.
      DATA: wa_ekbe TYPE t_ekbe.
      DATA: i_vbap TYPE STANDARD TABLE OF t_vbap.
      DATA: i_vbep TYPE STANDARD TABLE OF t_vbep.
      DATA: i_eban TYPE STANDARD TABLE OF t_eban.
      SELECT vbeln posnr FROM vbap INTO TABLE i_vbap
                              WHERE vbeln = vbak-vbeln.
      IF sy-subrc = 0.
        SELECT banfn FROM vbep INTO TABLE i_vbep
                        FOR ALL ENTRIES IN i_vbap
                         WHERE vbeln = i_vbap-vbeln
                         AND   posnr = i_vbap-posnr.
      ENDIF.
      IF sy-subrc = 0.
        SELECT ebeln ebelp FROM eban INTO TABLE i_eban
                        FOR ALL ENTRIES IN i_vbep
                         WHERE banfn = i_vbep-banfn.
      ENDIF.
      IF sy-subrc = 0.
        SELECT belnr bewtp FROM ekbe INTO  TABLE i_ekbe
                  FOR ALL ENTRIES IN i_eban
                       WHERE ebeln = i_eban-ebeln
                       AND   ebelp = i_eban-ebelp.
    endif.
      LOOP AT i_ekbe INTO wa_ekbe WHERE flag NE 'X'.
        IF ( ( wa_ekbe-bewtp = 'E' ) OR  ( wa_ekbe-bewtp = 'R' ) OR
                                            ( wa_ekbe-bewtp = 'Q' ) ).
          it_zuk1-vtweg = vbak-vtweg.
          it_zuk1-spart = vbak-spart.
          it_zuk1-belnr = wa_ekbe-belnr.
          it_zuk1-vgbel = vbrp-vgbel.
          wa_ekbe-flag = 'X'.
          MODIFY i_ekbe FROM wa_ekbe TRANSPORTING flag.
          vbrk-zukri = it_zuk1.
          EXIT.
        ENDIF.
      ENDLOOP.
      REFRESH: i_vbap,i_vbep,i_eban,i_ekbe.
    ENDFORM.

    Hi Ramana,
    I'm afraid this is not possible. Correct me if I'm wrong: You have a TPO scenario in which you create a purchase order for a sales order item. This purchase order may have multiple GR? As billing is based on the sales order position (which is only one) there is no way to split this one position into multiple lines for each GR. This would only work if there is a 1:1 relation between sales order item and GR!
    Regards,
    John.

  • Copy Control Invoice - Debit Memo

    Dear All,
    I have some typical problem when i creating the debit memo request with reference to Invoice.
    I have BOM Material in the Invoice i.e. with 2 sub items
    M001 TAQ
    S001   ZCRD
    S002   ZCRD
    i set the copy control to from Invoice to Sales document -- Item category
    If it is TAQ copy as L2W
    And ZCRD as L2W also
    But when i try to create the Debit memo request it is copying TAQ as L2w but not ZCRD as L2W it is copying same as ZCRD..
    Where ZCRD is is relevant for delivery so i didnu2019t want this item category to be copied can any one suggest why it is doing that???
    Thanks
    Sundhu

    Did you check Item category assignment?
    Sub items in BOM have different item category group (in material master record) and it appears you did not properly assign it.

  • COPY CONTROL: SALES ORDER WITH REFERENCE TO QUOTATION

    Hi.
    We are creating a sales orders with reference to a quotation. When copying, we'd like to be able to include another new position type in the sales orders.
    For example:
    QUOTATION:
    POSITION 10: TYPE ZTAB
    SALES ORDERS:
    POSITION 10: TYPE ZTAB
    POSITION 20: TYPE IRSS.
    Where could we place this change?. We suppose when saving the sales orders. Does anybody know how could we make this change?.
    Thank you very much!.
    Raú

    What do you mean by position type?
    Please use the language used by SAP so that it could be easily understood.
    What is ZTAB & IRSS. Are they materials?
    Regarding copying, this is a brief theory
    In copy control, you define control data for the document flow of sales documents.
    You can specify for a particular sales document type, which document type is to be assigned to copied reference documents, and which item categories or schedule line categories are to be copied.
    You must also make specifications for copying requirements and data transfer, as well as quantity and value updates in document flow.
    In precise, you are telling the system what data to copy from QT to sales order. It copies data from Quotation order type to Standard order type basing on settings you indicated in copying control.
    System won't do anything more than copying from preceding documents and it would transfer data based on copying rules in copy control.

  • I need to download a copy of CS5. Mine will not load.

    I purchased CS5 two years ago through download. I burned a copy of it in case I ever needed to reinstall. We got a new computer today, and when I went to install my Photoshop on it, the installer gets to the installation point and asks me to insert the CS5 disc.... so I don't know what I did wrong when I burned my copy... but I have no way of installing my CS5 on my computer. I have my serial number and know the date I registered it (I can see that online).
    Is there anywhere I can download a copy of CS5?

    You can download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    CS5: http://prodesigntools.com/all-adobe-cs5-direct-download-links.html

  • Running Windows Server 2008 R2 OS, just downloaded a free copy of Adobe X1? Will not open PDF File

    Running Windows Server 2008 R2 OS, just downloaded a free copy of Adobe X1 download completed successfully but will not open (or read) any PDF File...Help!

    You write "download", but did you also install it?

  • Copy control transport orders

    Hello Gurus:
    Quickly question: How we can modify the copy control between transport order and deliveries?
    I want add a conditions to copy the values of the field between the transport order and the delivery.
    Thanks in advance
    javier

    Hello Javier,
    If you are using SAP version 4.7 or below then you could configure it via OMGN.
    or if you are using ECC 6.0 ( I believe even 5.0 ) then you need to manually Browse from SPRO>MM>Purchase Order--> Set Up Stock Transport order.
    Here u can setup  all the relevant config pertaining to Transport orders.
    thanks
    Murtuza

  • What am I doing to make my screen zoom in while I  am using my mouse?  It zooms to about double size, and using the control key and mouse will not return it to its former size.

    When I am searching the internet and using my mouse, my screen will suddenly zoom in to about double size.  Clicking control and mousing will not return it back to where it was.  I have no idea what I am doing to cause this to happen or how to reverse it.

    Hi.
    If you're using a Magic Mouse, a double tap on the mouse with one finger will zoom.
    Double tap again to unzoom.
    Helpful?

  • Down load has control over my bookmarks will not leave when I pick another entry?

    this a down load for a bootcamp program, i did not download but left it on foxfire. i will not allow any thi the ng else on bookmarks or any thing else to be used.reboot nothing changes, don't know how delete it or move it to bookmark, will down loading program make it go away?

    On your iPad, go to [Settings > General > Reset > Reset Network Settings] Once that is done, re-connect your iPad to your wifi network.

  • Driver Scanner will not update, there is a problem with proxy sttings and the firewall

    Driver Scanner will not update. It says there is a problem in connecting to the Uniblue browser.
    Also there is a problem with the proxy set up and the firewall.

    With that one, let's try getting an installer log to the Apple engineers for a look.
    1. Open a command prompt window. (Start menu -> Run. Type in "cmd". Hit return.)
    2. Drag and drop iTunesSetup.exe onto the window so that the full pathname of the file is at the command line prompt.
    3. Type in a space, then the following line:
    /l*v C:\log.txt
    4. Hit return.
    5. The installer will create a log file:
    C:\log.txt
    Find that file and send it as an attachment to this email address: [email protected]
    in the email to Roy, be sure to include the following information:
    - A link to the thread on Apple Discussions where the issue is being discussed
    - The username you are using in the thread
    - The version of iTunes you are using or trying to use
    - the version of Windows you are using (mention service packs)
    - A concise description of the issue you are seeing
    - The exact text of the error message you are seeing

Maybe you are looking for

  • ME29N Shortcut Attachment send to Mail with PO number

    Hi Experts, I am using FM 'SWN_CREATE_SHORTCUT' to send mail to PO approver with attachment, when the PO approver clicks the attachment in his mail it should open the transaction 'ME29N'. It is working fine...ME29N Default screen is getting opened .B

  • Replace With After Effects Composition... What's the Point...???

    Hi... So I have a timeline that I want to CC in AE.... I select all the clips and choose "Replace with After Effects Compostion" PPRO correctly initiates an AE launch which then correctly makes a Composition with all my clips in it... Now, ALL the cl

  • System delta pull config

    Hi, I get an error when testing my BW system connection that the delta pull might not be configured for my system. where and how do I configure system delta pull in the portal? Thank you! Kr, hilde

  • After I update itunes, it will not open.

    For the past year I have been trying to fix this problem. After I try to update my itunes, it will not open on my computer. Sometimes it says my quicktime is not updated or it says my windows is not compatible. I have no idea how to fix this problem!

  • Oracle Grid Agent

    Hello Experts, I am new to Oracle 10g Grid. I have installed Oracle10g Grid enterprise manager suceesfully on one server. and Grid Client on other server which already have oracle 10g database. All services are runninf fine on both the ends. But stil