LIS copied S012 and added cost center as characteristic

I have copied S012 (Purchasing) and added the characteristic costcenter to it. (S901)
I can choose the " Invoice verification chars" MCRSEG-KOSTL or own made MCEKKN-KOSTL.
But i see difference in amount of records when i compare S012 and the new S901.
S901 has much less records then S012.
I compare one artikel from S012 and i have 13 records . In S901 i have 1 record.. Only the record who has a costcenter.
The others i dont see in my table.
Do i have to make a formule to get result or is it impossible to add Costcenter to characteristics.
Please help. I can't find the problem.
Regards Rob

Hi Steve ,
Any suggestion or thought on this ?
Thanks
kiran

Similar Messages

  • Mandatory fields for creation of FB60(vendor invoice),and FK01(cost center)

    Hi all,
    can u plz send me the mandatory fields(along with discription) for creation of FB60(vendor invoice),and FK01(cost center).
    thank u,
    Srinivas Reddy.

    The FK01 is the transaction used to create a Vendor.
    The mandatory fields are:
    a. NAME1: For Name
    b. SORT1: For CUIT number.
    c. SORT2: For alternative CUIT number.
    d. CITY1: For city.
    e. STCD1: Tax Number.
    f. Others depending the case.
    For FB60 (Vendor invoice) the mandatory fields are:
    a. ACCNT: Number of Vendor Account.
    b. BLDAT: Date.
    c. XBLNR: Reference Number.
    d. WRBTR: Invoice Amount.
    e. HKONT: G/L Account Number.
    f. WRBTR: Invoice Amount. The same as d but in the item.
    g.MWSKZ: Tax Type. Depending the case.
    h. KOSTL: Cost Center. Depending the case but is highly probable that the field were mandatory.
    i. Others. Depending the case.
    I have given to you the most probably fields that are mandatory for those transactions.
    Your Sincerely
    Leonardo Lopez
    FI Consultant

  • How to design and develop Cost center with SAP BPC 5.1 ?

    Hi all,
    Can any one tell me how to design and develop cost center planning (what are the steps to follow) using SAP BPC 5.1?
    Thanks,
    Sandy

    Hi Sandeep,
    1:We need to look at whether cost center planning is tied to a profit center level and/or to a company code level
    2:We could have dimensions like Account(which in this case would reflect cost element),category,entity,time with additional dimension s like profit center(cost centers can have a direct mapping to profit center,usage of properties would help in here),WBS ,projects,investment position id's etc.
    3:We could look at different applications like HR(pay roll related expenses),admin,capex(to bring in depreciation values) etc to bring in data to pull in data to different cost centers either directly or via script logic(usage of destination_app)
    4:For those values not tied up to profit centers ,we would look at allocating/distributing the expenses to different cost elements
    5:We need to decide whether we do the planning on a monthly/periodic vs yearly level where in we would look at actual values and incrementing at a certain % to fill in as the base for our planning(using category=actual/plan plus timeperiods).We could look at Top down vs botton up approach as well to segregate the planned costs
    6:Consideration should be made at security level to identify/restrict different users who needs to access specific cost centers
    Yes,this is just a small jist of structure,there are 100's of other considerations which would come into picture from a business requirement level.
    regards
    shyam

  • Adding cost center on OKB9 with cost element company code with valuation ar

    hi ,
    can anybody help me out with the Adding cost center on OKB9 with cost element company code with valuation area configuration.
    i have to do this configuration but do not know the detailed steps for that one.
    Good points will be awarded.

    Hi Prem
    Select the 1 in column acct assignment details column then in the left side in detail per business area/valuation area enter your valuation area.
    Thanks
    Ashok

  • Controlling Area and Responsible cost center

    Hi,
    is it possible to find out "Controlling Area" and "Responsible cost center"to SAP USER
    Friendly regards
    Alexander

    I finf out :
    DB Table -> CSKS

  • Adding cost center in RABEST_ALV01 from ANLZ node - ADA Logical database

    Hi,
    I am trying to display cost center in output list of RABEST_ALV01 ALV report (Copied it to ZRABEST_ALV01).
    I was able to include fields which are there in ANLAB and ANLAV in FIAA_SALVTAB_RABEST structure - CI_REPRABEST inlcude. And have included cost center field also in the include (KOSTL).
    This ALV report RABEST_ALV01  is reffering to ADA logical database. I included a node explicitly in the program along with other node declaration :
    NODES: anla0,
                 anlav,
                 anlz ,
                 anlb,
                 anek,
                 anepv,                    
                 anlcv.             
    and added a GET statement in the program GET ANLZ before moving the values to final internal table.
    Here, the the issue is that the values of ANLZ is getting displayed as "#".
    Kidnly suggest.
    Thanks and Regards,
    Rashmi

    Hi Rashmi,
    Please make sure the order of the nodes should be same as the order in which they are there in LDB or else they will be overwritten
    Thanks
    Bala Duvvuri

  • Adding cost center range in KS05

    Hi,
    I want to add range for cost center field and from change Date in KS05. Can anyone
    guide me on this issue.
    Orelse If there is any function module to achieve this keeping select-options in KS05
    by preparing our own report also will be helpful for me.
    Regards
    VEnk@
    Edited by: Venkat Reddy on Nov 18, 2009 12:49 PM

    Hi, Venkat!
    I haven't found any standard transaction for mass handling of changedocs, but i suppose there is something universal tool for this purpose in the system. I think it is not difficult task to realize it yourself. Check this code please:
    program zjdtest.
    tables: RKMAA.
    select-options: so_kostl for RKMAA-KOSTL obligatory.
    parameters    : p_kokrs type RKMAA-KOKRS obligatory.
    data: lt_objclass type CDOBJECTCL_RANGE_TAB,
          lt_objid    type CDOBJECTV_RANGE_TAB,
          ls_objid    type CDOBJECTV_RANGE,
          lt_tabname  type CDTABNAME_RANGE_TAB,
          lt_editpos  type TABLE OF CDRED.
    start-of-selection.
      append 'IEQKOSTL' to lt_objclass.
      append 'IEQCSKSB' to lt_tabname.
      loop at so_kostl.
        ls_objid-sign       = so_kostl-sign.
        ls_objid-option     = so_kostl-option.
        ls_objid-low+4(10)  = so_kostl-low.
        ls_objid-high+4(10) = so_kostl-high.
        ls_objid-low(4) = ls_objid-high(4) = p_kokrs.
        append ls_objid to lt_objid.
      endloop.
       CALL FUNCTION 'CHANGEDOCUMENT_READ_RANGES'
          EXPORTING
            objectclass_tab                  = lt_objclass
            OBJECTID_TAB                     = lt_objid
            TABLENAME_TAB                    = lt_tabname
          tables
            editpos                          = lt_editpos
          EXCEPTIONS
            NO_POSITION_FOUND                = 1
            WRONG_ACCESS_TO_ARCHIVE          = 2
            TIME_ZONE_CONVERSION_ERROR       = 3
            OTHERS                           = 4
        IF sy-subrc <> 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        CALL FUNCTION 'CHANGEDOCUMENT_DISPLAY'
          EXPORTING
            i_applicationid                = sy-cprog
          tables
            i_cdred                        = lt_editpos.

  • Account-based COPA and having Cost Center as Real Object in Sales Order

    Hi,
    We have recently activated account-based COPA and in our SO, we realized the Profitability Segment being populated- that is not a problem in normal scenarios.
    However, in some cases, we would like to charge to a cost center instead of COPA. We have tried the 2 ways mentioned in the forum/on the web to include Cost Center in Sales Order:
    1. Go to OVF3 t-code and configure a default cost center for the order reason
    2. Change the SD Document Category under 'Define Sales Document Types' to 'I- Order w/o charge'.
    However both ways only open the Cost center field but still populates the COPA. At accounting entries, cost center will become a statistical object and COPA, the real object- which is not what we want.
    Is there a way to stop the auto-populating of Profitabiltiy Segment in SO when cost center is being entered?
    Thanks very much in advance for any suggestions.
    Regards,
    Huimin

    Solved by myself, with help of OSS Note: 44381 - Profitability Segment Not Required in SD Postings. Have a CO substitution rule to clear away the Profitability Segment number based on certain conditions. Thanks!

  • Link between plan position and master cost center

    hi guys,
    i have the plan position number and i don't know how to determine the master cost center.
    do you now the infotype/table that has the link between the two?
    regards,
    emilia

    hi,
    thanks for the function.
    i know that when a position plan is created it is assign to an org. unit and thus it will inherit its master cost center.
    the problem is that more often than not the master cost center of the position plan is changed manually and so it will not match the one of the org unit.
    this is indeed an intricate issue

  • Sender and Receiver Cost Center

    Hi Experts
    I have to assign CC as sender and receiver for all Employees.
    I assigned the Sender CC in IT315; Need to know where to enter the receiver CC. Will it be the one in IT0001?
    Please Confirm
    Thanks

    Hi,
    Yes, you are right. Costs from sending cost center are consolidated at receiving cost center that can be stored in IT 0001.
    Please have a look at SAP's brief explanation of cost accounting (last page) http://help.sap.com/bp_bblibrary/500/Documentation/N71_Scen_Overview_EN_DE.ppt
    Cheers!

  • How to use LSMW using the IDOC to upload and maintain cost center group

    Hi Everyone,
    Is there anyone who knows how to use LSMW using the IDOC functions instead of the recording. I wanted to upload the alternative cost center group I created in the system. 
    reply would be greatly appreciated
    Warm Regards

    Hi Praveen,
    There is a risk trying to migrate data directly into standard tables because this can generate database inconsistences or wrong inserted data according to what is customized in the target system. I do not recommend migrate like this. 
    With LSMW you use objects like direct input programs, idocs, bapis and recorded batch input. Try to create a project and use an standard object for your data. Also, check in SXDA transaction (Goto-->DX programs) if there is a standard program for your data.
    Anyway, if you want to upload data directly to tables, read below thread:
    ["UPLOAD  CSV  FILE";
    [how to upload .csv file into a custom table;
    Regards,
    Roger

  • Adding Cost Center to existing account

    We found out that we need to add a cost center to an existing account that has a couple journal entries posted to it. 
    What is the correct way to go about this?

    Hello,
    I'm worried but you can not assign cost center to posted items. There is one way I thought that, If you don't create a cost element for this account yet, please transfer amount to a dummy account without cost center(if cost element created for this account please use DUMMY cost centers) and then you can create a cost element for this account. After that you can transfer amount from dummy account to cost element with correct cost center.
    Regards,
    Burak

  • Ad-Hoc Query for OU's and their Cost Center

    Cost Centers are often inherited from parent OU's. If I try to make an Ad-Hoc query, select some OU's and show the Cost Centers via the relationship A11, the fields are empty unless the Cost Center is hardcoded for the OU.
    Is there a way to create an Ad-Hoc query that shows the Cost Centers even if they are inherited? I can't make any changes to system tables or other customizing.
    Thanks in advance!

    Unfortunately I'm not authorized to use SE16.
    This is my selection:
    Object ID: xxx (Selection)
    Object Type: O (Selection)
    Plan Version: 01 (Selection)
    Relationship Between Objects: 011 (IT1001)
    Relationship Specification: A (IT1001)
    Type of Related Object: K (IT1001)
    Output:
    Object ID (IT1000)
    Object Abbreviation (IT1000)
    Object Name (IT1000)
    ID of Related Object (IT1001)
    Any other way?

  • BAPI_GLX_GETDOCITEMS and no Cost Center Data

    Hi,
    i'm using the BAPI "BAPI_GLX_GETDOCITEMS" to extract all documents from General Ledger. This BAPI returs the structure "ITEMSLIST" which contains a field for the Cost Center. I took a look at several Documents via FB03 and there are many documents with a specified Cost Center.
    When i use the BAPI to extract all documents for a specific Company Code, the Cost Center field is always empty.
    Does anyone know what the problem might be and how i could fix this?
    I am using Pentaho Data Integration (and it's SAP Plugin) to connect to a SAP R/3 System.
    Thanks in advance!

    Hi Hugo,
    thanks for the answer. You were right, i am in New GL and I just checked the table "FAGLFLEXA" and there is really no Cost Center saved at any table entry.
    Is there another possibility to get Cost Center Data without activating the Cost Center Scenario (FIN_CCA), perhaps extracting documents from SAP CO? I've heard, that New GL supports a real time integration of CO with FI.
    Thanks a lot in advance!

  • VA01 Sales order (line items) and different Cost center assignment

    Hello gurus,
    im searching for solutions how to assign different cost center to sales order line items, but only thing that i found is the substitution (Using Substitution (GGB1) to change Cost Center assigned in (OKB9))
    Trying to do this i was unable to create something that could work, since there was no Logistic.
    Could somebody explain me the Line item in SO assignment to Different cost centers?
    I know alot about OKB9, VKOA and other transactions, but still cant find anything suitable to solve this issue
    Best regards
    Laurynas

    What i mean is that, on the end of every month we are gathering information for Statistical Key Figures (from Controlling) entering as CO document and then distributing the costs using KSV5 TC on Internal Orders according those entered statistical key figures.
    i.e. we got INCOME 1000000 from 10 internal order, which we distribute on even percentage parts like 10 cost center, each getting 10% of the income.
    I tried to create the SO, but the Profit center field, after i entered a number, was changed automatically into another.
    And the posting didnt reach Controlling and the assigned Cost center. I think it is a lack of configuration.
    Regards
    Laurynas

Maybe you are looking for