Central Contract Distribution - line items creates many contract in the BE

Hi SRM Gurus,
We are in SRM 7 ECC 6 Ehp 4 PPS.  Ext Classic.
First of all, CCTR - Central Contract can't be distributed as per SAP for PPS impl. 
But we have a workaround. 
We made snote 1354971 read with 1423994 implemented. Made the process work.
Means Assign distribution on the item level was enabled and Distribution reached BE.
But when we have multiple line items in the Central Contract, and we assign distribution, it creates one contract per line item in the Backend which is really absurd.  Which means if you have 100 line items, its creating 100 contracts.  When we do the call-off against this central contract, we have multiple contracts.
Gurus, Can you guys throw some light on this entire issue.
with regards,
Freemind

We are having nearly exactly your scenario and CCTR works fine with 1 distributed contract containing multiple items. Check if all the items are distributed to the same purchasing org and location. If all is the same, debug BBP_PD_CTR_TRANSFER with your SRM contract GUID to see when and how multiple contracts get created in ECC.

Similar Messages

  • Error when adding line items in a Contract

    Hi All,
    Need your help regarding the following issue.
    The business user is trying to edit (to add more line items/materials) a contract with customized T.Code ZGME31K.
    Getting error "Enter rate USD / rate type M for 11/24/2009 in the system settings" MSG No. SG105.
    However, the Vendor, Material all are maintained in the same currency i.e. USD.
    So, not finding a scope of rectification in OB28.
    Please advice.
    Regards,
    Milan.

    Hi,
    I closed
    Re: SBWP attachment link not diverting to Contract/P.O
    as my problem got resolved.
    And I put it "unanswered" as no one gave me the correct answer.
    It came out as a result of several testing in Quality by our team. Anyway, thanks to everyone who contributed.
    Regards,
    Milan.

  • Mulitple line items for a contract in SAP

    Hello Experts,
    I am uploading a file which has the same contract number (EKKO-EBELN) for multiple records (line items). How to do BDC recording by looping thru the internal table. Right now, I am using the below code which takes only two records for the same contract and rejecting the remaining two records for the same contract. Can anyone help me to modify this code. The tcode is ME31K
    data: l_n type i.
    loop at gt_contract_temp.
      AT NEW ebeln.  
          CLEAR l_n.
    *start bdc recording
          PERFORM populatebdc USING:
          'X' 'SAPMM06E' '0200',
          ' ' 'BDC_CURSOR' 'RM06E-KZABS',
          ' ' 'BDC_OKCODE' '/00',
          ' ' 'EKKO-LIFNR'  l_lifnr,
          ' ' 'RM06E-EVART' p_bsart,
          ' ' 'RM06E-VEDAT' l_bedat,
          ' ' 'RM06E-EVRTN' gt_contract_temp-ebeln,
          ' ' 'EKKO-EKORG'  gt_contract_temp-ekorg,
          ' ' 'ekko-ekgrp'  gt_contract_temp-ekgrp,
          ' ' 'RM06E-WERKS' gt_contract_temp-werks,
          ' ' 'rm06e-lgort' gt_contract_temp-lgort,
          ' ' 'RM06E-KZABS' 'X',
          'X' 'SAPMM06E' '0201',
          ' ' 'BDC_CURSOR' 'EKKO-INCO1',
          ' ' 'BDC_OKCODE' '/00',
          ' ' 'EKKO-EKGRP' gt_contract_temp-ekgrp,
          ' ' 'EKKO-PINCR' '10',
          ' ' 'EKKO-UPINC' '1',
          ' ' 'EKKO-KDATB' l_kdatb,
          ' ' 'EKKO-KDATE' l_kdate,
          ' ' 'EKKO-SPRAS' gt_contract_temp-spras,
          ' ' 'EKKO-KTWRT' gt_contract_temp-ktwrt,
          ' ' 'EKKO-WAERS' gt_contract_temp-waers.
          l_n = l_n + '01'.
    ENDAT.
        CLEAR: l_ematn, l_ktmng1, l_meins,
               l_netpr1, l_peinh, l_bprme,
               l_werks, l_lgort, l_evrtp.
        CONCATENATE 'RM06E-EVRTP' '(' l_n ')' INTO l_evrtp.
        CONCATENATE 'EKPO-EMATN' '(' l_n ')' INTO l_ematn.
        CONCATENATE 'EKPO-KTMNG' '(' l_n ')' INTO l_ktmng1.
        CONCATENATE 'EKPO-MEINS' '(' l_n ')' INTO l_meins.
        CONCATENATE 'EKPO-NETPR' '(' l_n ')' INTO l_netpr1.
        CONCATENATE 'EKPO-PEINH' '(' l_n ')' INTO l_peinh.
        CONCATENATE 'EKPO-BPRME' '(' l_n ')' INTO l_bprme.
        CONCATENATE 'EKPO-WERKS' '(' l_n ')' INTO l_werks.
        CONCATENATE 'EKPO-LGORT' '(' l_n ')' INTO l_lgort.
        PERFORM populatebdc USING:
         'X' 'SAPMM06E' '0220',
         ' ' 'BDC_CURSOR' l_evrtp,
         ' ' 'BDC_OKCODE' '/00',
         ' '  l_evrtp         gt_contract_temp-ebelp,
         ' '  l_ematn         gt_contract_temp-matnr,
         ' '  l_ktmng1        gt_contract_temp-ktmng,
         ' '  l_meins         gt_contract_temp-meins,
         ' '  l_netpr1         gt_contract_temp-netpr,
         ' '  l_peinh         gt_contract_temp-peinh,
         ' '  l_bprme         gt_contract_temp-bprme,
         ' '  l_werks         gt_contract_temp-werks,
         ' '  l_lgort         gt_contract_temp-lgort,
         'X' 'SAPLMEKO' '0501',
        ' ' 'BDC_CURSOR' 'T685-KSCHL(01)',
         ' ' 'BDC_OKCODE' '=PICK',
         'X' 'SAPMM06E' '0220',
         ' ' 'BDC_CURSOR' l_netpr1,
         ' ' 'BDC_OKCODE' '/00',
         ' '  l_netpr1      gt_contract_temp-netpr.
        l_n = l_n + '01'.
        AT END OF ebeln.
          PERFORM populatebdc USING:
             'X' 'SAPMM06E' '0220',
         ' ' 'BDC_OKCODE' '=BU'.
    *--Calling the transaction 'ME31K'
          CALL TRANSACTION 'ME31K' USING gt_custbdc MODE 'A' UPDATE 'S'
          MESSAGES INTO gt_custmsg.
       ENDAT.
    Can anyone help me out to modify this program to upload all the line items of a contract?
    Thanks
    Ricky

    Hi,
    Has anyone worked on this kind of scenario? Pls lemme know before i start changing the whole program logic for reading the line item. Thanks
    Ricky

  • Not able to display line item 20 in contract

    I could not able to display line item 20 in the contract document.
    line item 10 and 30is there however there is no line item 30. What could be reason and how to enable the same.
    MRS

    It may also possible if user forgot to enter the line item 20 and jump to line item 30 after 10 as below.
    Then system will show as like this

  • MM: Purchase requisition line Items - How many line items can we use

    Hi all,
    1. Purchase requisition Line items  (How many line items can we use?), is there any restrictions.
    2. While creating PO with only one tax code for the related PR to input Tax code (without selecting  line Items).
    Regards,
    Sudheer

    Hi
    There is no limitation for number of items in PR.
    Tax code is always applicable for individual item only.It cannot be selected form the whole PO.
    Regards
    Dev

  • Two line items created while doing sales excise invoice

    Hi all,
    I have created an excise invoice through J1iin. But when I do so, there are two line items created for BED on excise paid. where as ideally there should only be one line item created.
    The standard entry should be as follows :
    Excise Duty BED Paid     617.00           
    Excise Duty SEC Pay     6.00-
    Basic Excise Duty  p     599.00-
    Excise Duty ECSPay     12.00-
    In my scenario the entry is as follows :
    Excise Duty BED Paid     181.00     here there are two line items created.
    Excise Duty BED Paid     436.00      
    Excise Duty SEC Pay     6.00-
    Basic Excise Duty  p     599.00-
    Excise Duty ECSPay     12.00-
    can anyone help on this?
    Thanks
    Priyanka
    Edited by: Priyanka Patwardhan on May 19, 2011 12:35 PM

    HI,
    Check the below settings are exist or not at your order to delivery copy controls.
    Order requirements     001    Header
    Combination requirmt   051    Combination
    Header Data            001    Header
    Header Data Ext. Sys   0
    Handling Units         000
    check and revert
    Regards
    Ram

  • How to Get Each line item Create and Approval dates for a SHOPPING CART in SAP SRM (ABAP Programming)

    Hi All,
    I have to Get Each line item Create and Approval dates for a SHOPPING CART in SAP SRM. Either a table, or any Function module, Method, please let me know ASAP. Same i can use in my Program.
    Thank you Very much.
    Regards,
    Ramesh J.

    Hi,
    Refer the below wiki link it may help you.
    Product catlog configuration for ECC - CRM - SCN Wiki

  • Sales order costing error found in quotation 2 order line items created in

    Sales order costing error found in quotation 2 order line items created in quotation 5000562
    1st line item with third party
    2nd line item with PTO
    Purchase price was entered in the configuration screen
    1st item : 2,000 EUR
    2nd item: 1,200 EUR
    Purchasing info record was created with variant condition for EUR
    Error in sales order costing:-
    System does not take the purchase price in the configuration screen to
    calculate sales order costing. It incorrectly took 1 EUR from variant
    condition in sales order costing for both items.
    By right, it should take purchase price from configuration screen.
    Pls advise
    Thanks

    no replies and my thread was dead.

  • Few line items are not coming at the time of creation of delivery

    Dear Experts,
    When the user creating the delivery few line items are not picking in the delivery document
    the following checks i verified,
    Stock is available
    shpping condition is differ from sold to party and sales document
    Plants are same for all the line items
    why the few line items are not coming in the delivery document creation,
    please help me to sort out this issue
    Thanks and Best Regards,
    Muralidharan S

    Hi,
    Check below points.
    Point 1:
    When you create a delivery document, you create it for a Shipping Point.
    So whatever the line that came in to one delivery has determined same shipping point that you entered in VL01N screen.
    Others got a different shipping point and that's why it didn't come to the same delivery document.
    Shipping point determined based on below criteria
    - Shipping Condition - From customer master
    - Loading Group - Material
    - Plant  - Delivery Plant of the sales order line item
    You assign a proffered shipping point for above combination in configuration.
    If that combination is not find, those line items are not going in to the delivery.
    You can check the log of the delivery document for more information as well.
    Point 2:
    Check the line item Requested delivery date and the "Selection Date" you entered in the VL01N screen.
    Al  Requested delivery dates has to be on or before the  "Selection Date" you entered in the VL01N screen.
    Those line items which has a date more than that will dropped in the delivery.
    Best regards,
    Anupa

  • Line item and header records in the same infopackage

    Gurus,
    I wanted to check how can I make sure that I get all the line item documents in the same package with the header document record in the same infopackage? Is there some setting for that? If I am writing a custom extractore how can I make sure of this in ABAP?
    Thanks
    AK

    Dear AKBW,
    This is not very clear why you want to use same infopackage for line-item as well as header data. Normally there are 2 different datasources for line item and for header data.
    Say you are woking with Sales Order Data in ECC.
    So Line-item datasource for sales order data - 2LIS_11_VAITM
    and Header datasource for sales order data - 2LIS_11_VAHDR.
    Now as they are 2 different datasource, so you must need 2 different infopackages.
    Now if you have created one custom datasource in ECC, then just check if its extracting line-item level or header level data. Normally when we create any custom datasource, we try to make it line-item level, to have all the itemwise detail. Though its not mandatory.
    So if you have 2 different datasources (SAP or Custom), you definitely need 2 different infopackages.
    Please let me know, if you still have any more doubt. You can also give me the other detail of the custom datsource you are creating.( type, fields, what it is supposed to extract etc)..

  • Display number of line items in my report at the title bar

    hi,
    i would like to ask, how am i going to add in the number of line items to be display under the title bar above of the SAP. example similar to SE16, where it will show you the number of lines under the bar above.
    may i know how am i going to program it for my report? thanks

    Hi,
               check out the following code........copy-paste....and then....................
    data : it type STANDARD TABLE OF vbak,
           wa type vbak.
    data : ctr TYPE sy-dbcnt.
    data : str(20) type c.
    select * from vbak into table it UP TO 10 ROWS.
      ctr = sy-dbcnt.
      move ctr to str.
    set titlebar 'LIST' OF PROGRAM sy-repid with str.
    loop at it into wa.
      skip 1.
      write wa-vbeln.
    endloop  .
    ................create the title-bar 'LIST' as 'List Details : &'.
    (double-click on 'LIST' ....... 
    give 'TITLE' as 'List Details : &'. ).
    run.....& get solved !!!!!
    Rewards points if helpful..............

  • How to create many user in the same database

    hi
    my question is "How to create many user in the same database(application)?"
    for example, i have students, teachers, and staffs user using my application.
    i can create many users to use the same application right?, how ^^''' ???
    (right now i can only create application and then it shows every data in my DB
    but i want it to show only the data for the user who login to that application)
    Thanks.
    ps. i'm newbie, please help T^T

    You need to create a user table within your application that maintains their privileges. If you have LDAP you could use this for authorisation otherwise the table would handle that as well (store passwords etc). Your reports etc would then be filtered on information from this table.
    Check out some of the sample applications to see how authorisation and access is implemented (Online store is one). The how-to on the issue tracking system should also have some useful pointers.
    http://download-west.oracle.com/docs/cd/B31036_01/doc/appdev.22/b28839/issue_track.htm#BABBGBJG
    cheers,
    Ron

  • PO Line item attachments going along with the PO o/p to Vendor!

    Hi all,
    We are on SRM 5.0 ECS SP 13.
    I had one question regarding the attachments in the PO line items.If I attach documents at the PO Line item and sent the PO o/p to vendior through e-mail,then all the attachments at the PO line item also go along with the o/p..Is this is  a  std behaviour in SRM 5.0?
    Also if i need to avoid sending of the PO line item attachments along with the PO o/p to the vendor,then I guess the "Internal" indicator for the documents need to be set rt?Is there any way the documents at the PO line item can be set as "INTERNAL"?
    I know this is achived in SRM 6.0 and above and there is an OSS note which mentions that.
    Has anybody worked on something similar?Please share your eperiences/suggestions.
    Thanks!

    HI,Rads:
         I think you should do the inhancements in this situation. I met this question in my last case .Follow is my suggestions ,maybe helpful .
        The   BADI NAME:BBP_OUTPUT_CHANGE_SF(Document Output)
      YOU should chage the code .If you do 't  send the attachment to the vendor ,you should set "Space ",jut like this :
      WHEN 'BUS2200'.
          CV_SMARTFORM = 'ZBBP_BID_INVITATION'.
          CV_SMARTFORM_MAIL = 'ZBBP_OUTPUT_COVER'.
          "exclude attachment
          CS_PARAMETERS-ATTACH_IND = SPACE.
       Then  the attachment will not been sent out ,you can try .
    Alex !
    Bestregards

  • Line item attachments were missing for the documents in FB03

    Hi all ,
    i had an issue that within the transaction FB03,  attachments for line items were missing for all the documents that were posted from zprogram (artist statement) but attachments for the header items were displayed .
    Is there any clue why these attachments are missing.
    help me out of this.................!

    Check that that document key has been specified correctly. How are you storing the attachments??

  • The new ibook app and ibook update is designed for iPhone 5 operating system.   When my iPhone4 recently updated the ibook app, it created many problems using the ibook to download and read my books.    Can I get the previous ibook app back on my phone.

    The new ibook app and ibook update is designed for iPhone 5 operating system.   When my iPhone4 recently updated the ibook app, it created many problems using the ibook to download and read my books.    Can I get the previous ibook app back on my phone.

    Check your trash can on the desktop. The old version is automatically moved to the trashcan. You should be able to move it from the trashcan back to the Apps folder within the iTunes folder. The update that was pushed out was for iBooks to work with iOS 7 not iPhone 5. iOS 7 was released today.

Maybe you are looking for

  • How can I use Face Time with my phonr number?

    I can´t use my phone number to be my recipiant to iMessage and Face Time, it just puts the label "Verifying" and my number. Does anybody knows if this is a carriers problem or an iPhone problem? PLEASE IT'S URGENT!!!!!

  • Bounded vs. Unbounded task flows

    I have read the appropriate doc (Ch 13 in the Fusion Dev Guide for OADF) regarding bounded vs. unbounded task flows. Am still somewhat confused by the differences. For a bounded task flow the doc says: 'Has a single entry point.' When I build a bound

  • Oracle.ifs.clients.webui

    When I try using the following import statement my jsp will not display: <%@ page import = "oracle.ifs.clients.webui.resources.JspResourcesID"%> (I can use <%@ page import = "oracle.ifs.clients.webui.resources.WebUIResources"%> with no problems.) Any

  • Encrypt - decrypt [ help ]

    this code is my chat aplet cryption modules. please make a DEBUG in .txt file or DDE command by mIRC thnx. encrypter modul. package conferenceroom; public class BCEB     private static String a(byte abyte0[], int i1, int j1)         j1 &= -2;        

  • White photos/ Camera/ IG Crashing

    After upgrading to iOS 7 on my iPhone 4S - at times- I will see the photo in the preview window but selecting it the photo just displays white.  Also my camera/ Instagram app crashes- has anyone else had this issue? I have upgraded my IG app and all