Report  for cost center balance

Hi
is there std report through which i can view the balance of all the posting to a cost center for each company code, per cost element or where in a cost element, all the postingsfor all cost centers in a particular comapny code
Regards
Sanil Bhandari

Sanil:
Try S_ALR_87013611/12/13
Or try T-Code > SAP1 > Controlling > Cost Centers >......to view a list of other reports that might helpd you.
Assign points if info helps
Vj

Similar Messages

  • Report for Cost Center Changes Collectively

    Hi,
    I need a report to see the cost centers changes. For individual cost center, I can see in KS05 - Display Changes
    I tried to search the SAP reports, but could not find any
    Regards,
    Bhavesh

    Hi,
    I donu2019t think there is any standard repot available for it.
    You can develop your own report or query based on the Tables CDHDR and CDPOS, OBJECTCLAS = 'KOSTL' for cost center
    Regards,
    Gaurav

  • Function module for custom report for cost center group

    Hello all,
    I wonder, if there is any SAP function module for following query:
    We have got a custom program, which evaluates cost centers. We would like to evaluate a cost center group, like it is available within the report painter - the output screen is splitted into two parts, on the left part there is the cost centre group hierarchy and on the right side, there are the values for the node, which is selected within the hierarchy.
    Is there any standard function module od do we have to program it ourself?
    Thanks in advance

    Hi Peter,
    You have a BAPI which gives you the details of cost centre group, if this is what you are looking for:
    BAPI_COSTCENTERGROUP_GETLIST
    Regards,
    Eli

  • Interactive report for Cost center

    Can any body tell me what are tables involved in creating a cost center reports for department wise data and cost center category wise data.

    *& Report  ZFI_ASSIGNED_FUNDS
    REPORT  ZFI_ASSIGNED_FUND.
    TABLES: FMIT,FMCIT.
    TYPE-POOLS: SLIS.
    *ALV data declarations
    DATA: FIELDCATALOG TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
          FIELDCATALOG1 TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
          GD_TAB_GROUP TYPE SLIS_T_SP_GROUP_ALV,
          GD_LAYOUT    TYPE SLIS_LAYOUT_ALV,
          GD_REPID     LIKE SY-REPID.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS: RFISTL FOR FMIT-RFISTL,
                    FIKRS  FOR FMIT-FIKRS,
                    RYEAR  FOR FMIT-RYEAR.
    SELECTION-SCREEN END OF BLOCK B1.
    DATA: BEGIN OF IT_FMIT OCCURS 0,
            RYEAR LIKE FMIT-RYEAR,
            FIKRS LIKE FMIT-FIKRS,
            RFISTL LIKE ZREV_BUDGET-KOSTL,
            RFIPEX LIKE ZREV_BUDGET-KSTAR,
            TSL01 LIKE FMIT-TSL01,
            TSL02 LIKE FMIT-TSL02,
            TSL03 LIKE FMIT-TSL03,
            TSL04 LIKE FMIT-TSL04,
            TSL05 LIKE FMIT-TSL05,
            TSL06 LIKE FMIT-TSL06,
            TSL07 LIKE FMIT-TSL07,
            TSL08 LIKE FMIT-TSL08,
            TSL09 LIKE FMIT-TSL09,
            TSL10 LIKE FMIT-TSL10,
            TSL11 LIKE FMIT-TSL11,
            TSL12 LIKE FMIT-TSL12,
            TSL13 LIKE FMIT-TSL13,
            TSL14 LIKE FMIT-TSL14,
            TSL15 LIKE FMIT-TSL15,
            TSL16 LIKE FMIT-TSL16,
         END OF IT_FMIT.
    DATA: BEGIN OF IT_FMIT1 OCCURS 0,
            RYEAR LIKE FMIT-RYEAR,
            FIKRS LIKE FMIT-FIKRS,
            RFISTL LIKE ZREV_BUDGET-KOSTL,
            RFIPEX LIKE ZREV_BUDGET-KSTAR,
            TOTAL LIKE FMIT-TSL01,
         END OF IT_FMIT1.
    DATA : BEGIN OF IT_BUDGET OCCURS 0,
             GJAHR LIKE ZREV_BUDGET-GJAHR,
             KOSTL LIKE ZREV_BUDGET-KOSTL,             " COST CENTER
             KSTAR LIKE ZREV_BUDGET-KSTAR,
             APR_B LIKE ZREV_BUDGET-APR_B,
             MAY_B LIKE ZREV_BUDGET-MAY_B,
             JUN_B LIKE ZREV_BUDGET-JUN_B,
             JUL_B LIKE ZREV_BUDGET-JUL_B,
             AUG_B LIKE ZREV_BUDGET-AUG_B,
             SEP_B LIKE ZREV_BUDGET-SEP_B,
             OCT_B LIKE ZREV_BUDGET-OCT_B,
             NOV_B LIKE ZREV_BUDGET-NOV_B,
             DEC_B LIKE ZREV_BUDGET-DEC_B,
             JAN_B LIKE ZREV_BUDGET-JAN_B,
             FEB_B LIKE ZREV_BUDGET-FEB_B,
             MAR_B LIKE ZREV_BUDGET-MAR_B,
         END OF IT_BUDGET.
    DATA : BEGIN OF IT_BUDGET1 OCCURS 0,
             GJAHR LIKE ZREV_BUDGET-GJAHR,
             KOSTL LIKE ZREV_BUDGET-KOSTL,             " COST CENTER
             KSTAR LIKE ZREV_BUDGET-KSTAR,
             TOTAL1 LIKE FMIT-TSL01,
           END OF IT_BUDGET1.
    DATA: BEGIN OF IT_FINAL OCCURS 0,
           FIKRS LIKE FMIT-FIKRS,
           RFISTL LIKE FMIT-RFISTL,
           RFIPEX LIKE FMIT-RFIPEX,
           TEXT LIKE FMCIT-TEXT1,
           ALLOC LIKE FMIT-TSL16,
           USED LIKE FMIT-TSL16,
           REMAIN LIKE FMIT-TSL16,
         END OF IT_FINAL.
    *START-OF-SELECTION
    START-OF-SELECTION.
      PERFORM GET_DATA.
      PERFORM PROCESS_DATA.
      PERFORM BUILD_FIELDCATALOG.
      PERFORM BUILD_LAYOUT.
      PERFORM DISPLAY_ALV_REPORT.
    *&      Form  GET_DATA
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM GET_DATA .
      SELECT RYEAR
             FIKRS
             RFISTL
             RFIPEX
             TSL01
             TSL02
             TSL03
             TSL04
             TSL05
             TSL06
             TSL07
             TSL08
             TSL09
             TSL10
             TSL11
             TSL12
             TSL13
             TSL14
             TSL15
             TSL16
             INTO TABLE IT_FMIT FROM FMIT
             WHERE RYEAR IN RYEAR
             AND   FIKRS IN FIKRS
             AND   RFISTL IN RFISTL.
      LOOP AT IT_FMIT.
        MOVE-CORRESPONDING IT_FMIT TO IT_FMIT1.
        IT_FMIT1-TOTAL = IT_FMIT-TSL01 + IT_FMIT-TSL02 + IT_FMIT-TSL03 + IT_FMIT-TSL04 + IT_FMIT-TSL05 + IT_FMIT-TSL06 + IT_FMIT-TSL07
                         + IT_FMIT-TSL08 + IT_FMIT-TSL09 + IT_FMIT-TSL10 + IT_FMIT-TSL11 + IT_FMIT-TSL12 + IT_FMIT-TSL13.
        IT_FMIT1-TOTAL = IT_FMIT1-TOTAL * -1 .
        COLLECT IT_FMIT1.
      ENDLOOP.
      LOOP AT IT_FMIT1.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            INPUT  = IT_FMIT1-RFISTL
          IMPORTING
            OUTPUT = IT_FMIT1-RFISTL.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            INPUT  = IT_FMIT1-RFIPEX
          IMPORTING
            OUTPUT = IT_FMIT1-RFIPEX.
        MODIFY IT_FMIT1.
      ENDLOOP.
      SELECT   GJAHR
               KOSTL
               KSTAR
               APR_B
               MAY_B
               JUN_B
               JUL_B
               AUG_B
               SEP_B
               OCT_B
               NOV_B
               DEC_B
               JAN_B
               FEB_B
               MAR_B
               INTO TABLE IT_BUDGET FROM ZREV_BUDGET
               FOR ALL ENTRIES IN IT_FMIT1
               WHERE GJAHR IN RYEAR
               AND   KOSTL EQ IT_FMIT1-RFISTL
               AND KSTAR  EQ IT_FMIT1-RFIPEX.
      LOOP AT IT_BUDGET.
        MOVE-CORRESPONDING IT_BUDGET TO IT_BUDGET1.
        IT_BUDGET1-TOTAL1 = IT_BUDGET-APR_B + IT_BUDGET-MAY_B + IT_BUDGET-JUN_B + IT_BUDGET-JUL_B + IT_BUDGET-AUG_B
                            + IT_BUDGET-SEP_B + IT_BUDGET-OCT_B + IT_BUDGET-NOV_B + IT_BUDGET-DEC_B + IT_BUDGET-JAN_B +
                            IT_BUDGET-FEB_B + IT_BUDGET-MAR_B.
        IT_BUDGET1-TOTAL1 = IT_BUDGET1-TOTAL1 * 100000.
        COLLECT IT_BUDGET1.
      ENDLOOP.
    ENDFORM.                    " GET_DATA
    *&      Form  PROCESS_DATA
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM PROCESS_DATA .
      LOOP AT IT_FMIT1.
        IT_FINAL-FIKRS =  IT_FMIT1-FIKRS.
        IT_FINAL-RFISTL = IT_FMIT1-RFISTL.
        IT_FINAL-RFIPEX = IT_FMIT1-RFIPEX.
        IT_FINAL-USED   = IT_FMIT1-TOTAL.
        READ TABLE IT_BUDGET1 WITH KEY KOSTL = IT_FMIT1-RFISTL KSTAR = IT_FMIT1-RFIPEX.
        IF SY-SUBRC EQ 0.
                IT_FINAL-ALLOC   = IT_BUDGET1-TOTAL1.
        ENDIF.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
          EXPORTING
            INPUT  = IT_FMIT1-RFIPEX
          IMPORTING
            OUTPUT = IT_FMIT1-RFIPEX.
        SELECT SINGLE TEXT1 INTO IT_FINAL-TEXT FROM FMCIT WHERE SPRAS EQ 'EN'
                                                          AND   FIPEX EQ  IT_FMIT1-RFIPEX.
        IT_FINAL-REMAIN = IT_FINAL-ALLOC - IT_FINAL-USED.
        APPEND IT_FINAL.
    CLEAR IT_FINAL.
      ENDLOOP.
    ENDFORM.                    " PROCESS_DATA
    *&      Form  BUILD_FIELDCATALOG
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM BUILD_FIELDCATALOG .
      FIELDCATALOG-FIELDNAME   = 'FIKRS'.
      FIELDCATALOG-SELTEXT_M   = 'Functional Mng Area'.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR  FIELDCATALOG.
      FIELDCATALOG-FIELDNAME   = 'RFISTL'.
      FIELDCATALOG-SELTEXT_M   = 'Fund Center'.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR  FIELDCATALOG.
      FIELDCATALOG-FIELDNAME   = 'RFIPEX'.
      FIELDCATALOG-SELTEXT_M   = 'Commitment Item'.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR  FIELDCATALOG.
      FIELDCATALOG-FIELDNAME   = 'TEXT'.
      FIELDCATALOG-SELTEXT_M   = 'Commitment Item Text'.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR  FIELDCATALOG.
      FIELDCATALOG-FIELDNAME   = 'ALLOC'.
      FIELDCATALOG-SELTEXT_M   = 'Allocated Budget'.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR  FIELDCATALOG.
      FIELDCATALOG-FIELDNAME   = 'USED'.
      FIELDCATALOG-SELTEXT_M   = 'Used Budget'.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR  FIELDCATALOG.
      FIELDCATALOG-FIELDNAME   = 'REMAIN'.
      FIELDCATALOG-SELTEXT_M   = 'Remaining Budget'.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR  FIELDCATALOG.
    ENDFORM.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM BUILD_LAYOUT .
      GD_LAYOUT-NO_INPUT          = 'X'.
      GD_LAYOUT-COLWIDTH_OPTIMIZE = 'X'.
    ENDFORM.                    " BUILD_LAYOUT
    *&      Form  DISPLAY_ALV_REPORT
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM DISPLAY_ALV_REPORT .
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM = GD_REPID
          IS_LAYOUT          = GD_LAYOUT
          IT_FIELDCAT        = FIELDCATALOG[]
          I_SAVE             = 'X'
        TABLES
          T_OUTTAB           = IT_FINAL
        EXCEPTIONS
          PROGRAM_ERROR      = 1
          OTHERS             = 2.
      IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " DISPLAY_ALV_REPORT

  • How to run GR55 reports in background for cost center hierarchies

    1.  I have been asked by our users to create batch jobs to run in the background for some GR55 reports, that can then be sent directly to cost center managers via email.
    I have figured out the process to do this as long as the cost center manager only needs to see a single cost center at a time.  However, if they are in charge of multiple cost centers, we also want to send them a summarized report using the hierarchy we have set up.  I can't seem to make this work, as the job only seem to recognize the last cost center in the group and the report is for that cost center.
    Example.  cost centers 100, 200 and 300 belong to hierarchy abc.  If I run the job just for cost center 100 it is fine.  But if I have a variant to run hierarchy abc, or even if I use the range 100 to 300, all I get is a report for cost center 300.
    We cannot use BW because we only have revenue in BW.  I am being asked to make this work from standard R/3 within the GR55 realm of reporting.
    2.  In addition, the report selection criteria includes two separate plan/forecast versions.  They need to update these each month prior to running the reports and sending them out.  I looked at the variables associated with the versions and tried to set them up with default values that I hoped would update automatically so that they don't have to manually change 50 or so variants each month.  But I don't see any dynamic variables that I can use to have the system make that change without going into each variant individually.
    3.  There is another piece to this equation as well.  There is another report they want sent out in batch, but it is several pages wide in SAP and several pages long.  So when you run it in batch and either spool it or get it sent as an email, it is very ugly in the formatting due to all the page splits horizontally and vertically.  If anyone knows how to get the report to stay together like it would if you had excel integration turned on, it would be very helpful.  I have tried running it with that integration turned on, but the jobs are set up with user batch_mgr and not my id, so it isn't working well.  The batch_mgr id is just a system id, not a dialog id.  We also don't want the jobs set up with a regular user id because if people leave, then the jobs all need to be changed.

    Kim,
    I may have options for issues 1 and 2. In case of 3, what I can tell you is I understand the concern, but this is what  typically happens in some standard CO reports that are not ALV compatible, I don't think there is not much  there to do unless you add some custom code for the output.
    In regards to point 1, yes,  I have noticed that this happens in some standard and custom reporting, not sure what is going on. I came up with a work around that  made the trick for my client in a similar scenario; which is editing the cost center groups. For instance, instead  of having the group set as a range from 100 to 300,  the groups are have  listed the cost centers, 100, 200 and 300. Obviously, the disadvantage of  this option is  that it would require a bit of more cost center group maintenance.
    In regards to point 2,  I understand from your note  that your users already have set up selection variants for the report. One option for you is to get the help from a developer to create a custom period variable and tiny program that runs in batch every month that would update that variable accordingly. Once that's done, you may have to update at least once, the selection variant  attributes to change the period to a selection variable, so everytime from that point of time forward that the variable gets updated,  it will be ready with the right value for every selection variant that uses it.
    Hope this helps.
    GG

  • Report Writer Missing Data for Cost Center+Investment Internal Order

    Hi Gurus,
    I have met a problem on Report writer. T-code KSBB -> Report for Cost Center Group by Cost Elements in diff months.
    The report can be drilled down to call KSB1 to give line items on the cost element by cost center/group.
    The problem is the drill-down report missed the line items for investment orders. ( Compared with manually use KSB1)
    The overhead internal order line items are fine.
    For example, document 001-Apr:
    Dr. Cost Element 1009                 $900  -- BA 90  Cost Center 90000 Investment order 9001
         Cr. Other cost elements.                  $900
    Document 002-Apr
    Dr. Cost Element 1009                 $800 -- BA90 Cost Center 90000 Overhead order 7001
         Cr. Other cost elements                      $800
    In KSBB report, the cost center group for 90000 in cost element 1009 in Apr only has $800.
    And the drilled down report which called KSB1 has the line item for docuemnt 002.
    However, when I run KSB1 directly, the total amount for cost element 1009 in cost center 90000 is $1700.
    Here is what I checked:
    1. I have my ABAPer checked the KSBB program and KSB1 program to debug them in DEV ( DEV and PRD has the same problem). The different to get the data is that in KSB1, it has selected a value type 11 ( Googled: field name is WRTTP, Down payments as expenses. In program: WRTTP means Statistically Actual ) and 04 ( Googled: Actual True Posting. In program: 04 in WRTTP means Actual posting).
    But in KSBB, it only select 04 when I clicked the drill down report to call KSB1.
    2. I am thinking that the cause was on different types of internal order:
    Overhead internal orders are statistical orders.  Investment orders are actual orders.
    Could you help to throw some light on the problem?
    Thank you very much.
    Emma

    Hi,
    Cost Centre vise Report you can take from KSB1
    Internal Order Vise Report you can take fro KOB1
    Regards,
    Sridhar Sha

  • Cost center balances

    i need to read period wise balances in a cost center.
    is dere ny fm/bapi to do so?
    is dere ant table which contains cost center wise balances?
    points 'll b rewarded
    Edited by: abapuser on Mar 3, 2008 7:42 AM

    Hi
    Yes you can use S_ALR_87013611 for multiple periods..... if you want to see only one period  you can see S_ALR_87013614. In the left side you can see the cost centers list click on each cost center .. on the right side you can see the cost centers balances with cost element wise.
    Path for the above reports ... SAP easy access> accounting>controlling> cost center accounting>Information systems --> Reports for cost center accounting >Plan/Actual comparisons>
    Radha

  • Line item actuals report for Profit center group

    I am looking for a Line Item Actuals report for a Profit Center Group  on the lines of KSB 1 report for Cost center /groups.
    I tried report "KE5Z but only profit centers can be selected, not profit center groups.
    Any help on this

    Try out the following report
    S_ALR_87013326 - Profit Center Group: Plan/Actual/Variance
    Call up Actual line items, here we go you would get the profit center group reports in similar lines as KSB1.
    Award points so as to say thanks.
    Regards,
    Suraj

  • BAPi for Cost Center

    hi all
    I am looking for a BAPI/Functional module  for the below mentioned SAP stan report for cost center
    S_ALR_87013611 - Cost Centers: Actual/Plan/Variance
    S_ALR_87013625 - Cost Centers: Actual/Target/Variance
    Regards
    Praveen

    hi all,
    If there is no BAPI/BADI/Functional module avaible  for cost center report ( Planned /Actual comparision)
    can you please tell me the relative CO table  from where i can get the Planned and Actual values,so that i can prepare a report based on the CO table.
    Revert
    Regards
    Praveen

  • Add Range Selection for Cost Center in Report Painter

    Dear Gurus,
    I had a report painter which had Cost Center selection, may I know how to change the cost center selection become in range like shown in below picture?
    [Report Painter - Cost Center in Range|http://www.pikipimp.com/pp/pimped_photo/s/image/42/231/888/range-compiled.JPG?ts=1236930732343]
    Thank you very much!

    Hi,
    Thanks for your guide, is really detail ~
    I had follow your step, create a new variable set for the cost center at GS11.
    When I want to include the set (KOSTL2) into the general data selection it prompt this [error|http://www.pikipimp.com/pp/pimped_photo/s/image/42/314/153/ErrorGS12-compiled.JPG?ts=1237172967140] may I know how should I correct it?
    Is it my setting was wrong?
    Please guide if possible.
    Thank you very much!
    Warm regards

  • Report Painter Report for Profit Center

    Hi All,
    I am creating a report for profit center in GRR1.I was using library 8A3,& ledger 8A.which uses for PCA line i tems and table used is GLPCT.which shows profit center totals by period.I ran GLPCT in SE16 and found  out No data selected.I see that profit center accounting is not active  in my system ECC6.0
    and I didn't see any line records for profit center in any of the profit center tables.GLPCA.Now if someone  knidly suggets me how to achieve this report, can I still do it profit center wise or  not? which library should i use in GRR1.The layout of my report is as under.Thanks
    CURRENT MONTH*                                                                               
    Current Yr      Current Yr    Prior Yr
    Actual            Budget        Actual          Variance          
    YEAR TO DATE 
    Current Yr      Current          Prior Yr        Annual
    Actual            Budget        Actual           Budget    Variance
    Regards
    Shaun

    Thanks Abhijit , I can now see my report group at the bottom of the list .I assigned you full points.I posted another question regarding report painter .If you could also give me some guidance on that.When I was creating rows and updating cost elements with account numbers.I set up 3 revenue accounts and then ran the report to see if I get any data for profit centers.I did get data but when I double clicked on one of the account,it displays this messsage.I read the msg. but could not make any sense with it.for example in definning row I put account number from/to  400000- 400000    Explode. and thats a characteristic.
    No valid master data for characteristic 'Account Number'
    Report MEG1 does not contain any data pages.
    No valid master data for characteristic 'Account Number'
    Message no. GR633
    Diagnosis
    No valid master data within the specified interval was found for the characteristic 'Account Number'.
    Explanation:
    For each characteristic that is processed in a report, the Report Writer optimizes the interval limits which are relevant for selecting data from the database.
    Example:
    A report contains the characteristic 'account', for which an account interval from 100000 to 200000 has been entered.  However, if the master data validation shows that the lowest/highest account in this interval is 110000/190000, the selection will be limited to accounts 110000 to 190000 only.
    The system returns this error message if no master data exists for the interval.
    This error is typically caused by an invalid version.  In FI-SL Special Purpose Ledger, for example, versions are assigned to the ledger and are defined in configuration.  The report definition can then contain a non-defined version.  A similar situation applies to controlling (cost center accounting): here, versions are assigned to the controlling area and fiscal year and can be defined in planning.
    Another cause of this error is a ledger that is not assigned to the table for which the report was created.
    Technical information:
    The field name for 'Account Number' is 'RACCT'.
    System Response
    The system cancels processing.
    Procedure
    Check the report definition, or the specified master data, or the intervals.
    Regards
    Shaun

  • Table for Cost Center Data

    Hello Experts,
    We are customizing a financial report and having a strange requirment, where we need to sum up the total value(Debit+credit) of a particular cost element from cost center report S_ALR_87013611.
    For example, Cost element 600000 is having debit value 5000 and credit value 2000 in the report S_ALR_87013611, so we need to bring the value of 3000 (Sum of debit and credit value)  in customize financial report for cost element 600000.
    I have checked the table COSS with value type 4, but  I am getting there 2000 debit and 2000 credit, 3000 debit is got missing.
    Please can any one tell me which table should I check for getting the proper data?
    Your early feedback will be highly appreciated.
    Regards,
    Mohammed Kalim

    Hi Ajay,
    Thanks for your prompt response.
    COSS and COSP are not serving my purpose.
    COSSA & COSPA are the structure table.
    I am not able to find cost center field in COEP table.
    Hi Mahesh,
    Thanks for your valuable inputs.New GL is not active in our client.
    Hi Raman,
    Thanks for showing interest in this issue. COBK is Document Header table.
    Regards,
    Mohammed

  • Customized report for cost centers by different cost centers

    Hi All,
    Customized report for cost centers by different cost centers:
    I need to build a customised report with the following format:
    Cost element columns | Cost center 1 | cost center 2 | cost center 3, etc -> dynamic cost center columns
    CE 1 .............................. amount xxx  |  . amount xxx | ..  amount xxx
    CE 2 .............................. amount xxx  |  . amount xxx | ..  amount xxx
    CE 3 .............................. amount xxx  |  . amount xxx | ..  amount xxx
    CE 3 .............................. amount xxx  |  . amount xxx | ..  amount xxx
    User selection screen:
    Controlling are:
    Fiscal Year:
    From period to period:
    cost center group ... <range of CC group> or
    cost center value ... <range of CC value>
    Questions:
    From the above selection screens, I need to pull out all the data stored in the table: COEP
    But, the problem is that inside this table, there is no cost center or cost center group stored; and therefore the program should be smart enough to pull out all the documents from the table: COEP and then make sure that the document / list of documents that pull out should belongs to the cost center or cost center group, as well as date range.
    KIndly advise how functional description/design should be built in order ABAPer can understand the requirement?
    What should be the tables to refer in order meet the requirement.
    Similar Standard SAP cost center report should be S_ALR_87013611 - Cost Centers: Actual/Plan/Variance, but this report read from many tables.

    Hi,
    Please find the logic below & try it at your system-
    Here cost center group is not possible (also i not checked it so do it on your own simultaneously i am trying the same).
    Use Table BSEG-> in bseg give the cost center-> with the help of cost center find the account number (field HKONT)-> take this GL account number & got to table COEP-> in this give the GL account number at field 'offsetting account' (field GKONT) & you will get the line item.
    Try it & let me know if you have any question.
    Thanks

  • Can S_PLO_86000028 Financial Statement report generate Cost-center report?

    Dear Experts,
    I've tried with S_PLO_86000028  Financial Statement report and it could generate report based on Profit Center but when I tried with Cost Center, it show no record.  Can this report generate cost center wise report?
    regards,
    Abraham

    Hi Saga,
    S_PL0_86000028 is a new FI report  for Financial Statement, created by tool Report Painter with tcode FGI1 (Create Drill-down Report).
    For adding new columns, I think we can modify the form it used (0SAPBSPL-01)
    It's not a good idea to copy it to z-program 'coz I still struggle with it and doesn't work well.
    Solaris.

  • Report for cost centers with alternative chart of account

    Hi.
    I try to make a report in cost center accounting and in profit center accounting with alternative chart of accounts. We have primary chart of account for 20 companies and alternative chart of account for 1 company. How can I make a report in CO-OM and PC accounting with alternative accouns? Is there any metod? Are on the intrenet somewhere instructions?
    Thanks

    Marko,
    CCA reports are possible only by cost elements (which an have different description from a GL account).
    PCA reports are possible only for main account (alternative account not available in GLPCT table).

Maybe you are looking for

  • Ipad mini connecting problems

    When I connect to the computer it doesn't show up and says power surge on hub port. Also when I charge it from an outlet it charges with the cable bent a little. I am running on windows Xp and iOS 6.0.1.

  • Tab to window browsing

    Need to be able to open an app or two while using safari. The window version or thumb would work here but not tabs. This pad continues to give the student additional stress.

  • BAPI or FM to change the PO release group

    Hi, I would like to change the PO release group (EKKO-FRGGR). I could not find the way to change this field through BAPI BAPI_PO_CHANGE. Please suggest me any BAPI or FM! Thanks, Khanh

  • Every time I start Firefox, the Sync preferences say I have to set it up on my desktop and my Macbook.

    I have set up Sync at least five times on my two devices (iMac and Macbook Air). Each time I launch Firefox, I'm prompted (in Preferences) to set up Sync again, which I do using the same Sync Key, username or password. No matter what I do, these Sync

  • Free Download for latest music

    I have a Macbook Pro, im a student and i dont have the money to buy music from itunes, HOWEVER i do occasionally like if its a band/artist i like or i get vouchers as gifts, however i would like to know some download or converter sites i can use on m