Is it possible to get the balance sheet report by using profit center

Dear Experts,
could you please help me out regarding the following issue.
business area wise we can get the balance sheet but i want to know is there any possibility to get the BS by using profit centers only for BS Items or can we assign biasness area as well as profit center in a single screen.

I think you can use this report. S_ALR_87013336
Regards
Radha

Similar Messages

  • ABAP Run time Error whle executing the Balance sheet report in FGI0

    Hi,
    I am getting the below ABAP Run time error while executing the Balance Sheet report in FGI0.It was working before but now it is giving the error.Kindly help me in solving this.
    Runtime Errors         MESSAGE_TYPE_X
    Date and Time          06/12/2009 15:17:17
    Short text
         The current application triggered a termination with a short dump.
    What happened?
         The current application program detected a situation which really
         should not occur. Therefore, a termination with a short dump was
         triggered on purpose by the key word MESSAGE (type X).
    Error analysis
         Short text of error message:
         RAISE RKD_CONDITION_READ       (internal error)
         Long text of error message:
          Diagnosis
              The program was terminated because a situation occurred which
              should not have arisen.
          Procedure
              Analyze the situation and contact SAP.
         Technical information about the message:
         Message class....... "KH"
         Number.............. 299
         Variable 1.......... "RKD_CONDITION_READ"
         Variable 2.......... " "
         Variable 3.......... " "
         Variable 4.......... " "
    Trigger Location of Runtime Error
        Program                                 SAPLKYPR
        Include                                 LKYPRU31
        Row                                     36
        Module type                             (FUNCTION)
        Module Name                             RKD_CONDITION_READ
    Thanks
    Supriya

    Hello,
    Please refer SAP
    Note 971535 - dump when deleting characteristic with hierarchy
    Regards,
    Ravi

  • Balance sheet per plant via profit center

    Greetings!
    Because of the reqt to create balance sheet reports per plant, I have assigned some of the balance sheet accounts as cost elements with CE category of 90.  I was able to do this to the asset accounts but when I tried to do the same for the other GL accounts e.g. AR, AP, etc..., its not being shown in the list when I clicked the "Create batch input session" although its already included in the "Make Default Settings" list.  Would appreciate any advice.  Thanks.

    Hi Tess Sapico,
    1. Create profit center for each Plant
    2. you don't have to create Cost Element with category 90.
    3. what you need to do is Add all the balance sheet items for Profit Center accounting in configuration under the setting "Controlling==>Profit Center Accounting==>Actual Posting==>Choose Additional Balance sheet and P&L Account"
    Here you need to add all the balance sheet accounts and P&L account which are not cost elements.
    Note: If you dont have NEW GL and Document Splitting, then it is not possible to get fullfledged Balance Sheet per Profit Center (Plant wise in you case).  You can only get some of the Balance sheet items like Accounts receivable, Accounts payable, Fixed Assets and Inventory in to Profit center
    In anycase, if you have NEW GL in implementation, then your problem would be solved. 
    I can give soem more information this regard, if you have new gl in place.
    Please let me know
    Best Regards
    Surya

  • Creating balance sheet report without using hierarchies

    Hi all,
    Is it possible to create balance sheet report with a fixed layout, without using hierarchies? If yes, how?
    Thanks
    Nitika

    I see....  I guess in that case you shoul use also Cell Definition.  Let me explain you step by step.
    You´ve already created a structure at ROW level.
    1) Create another structure at COLUMN level and name it, for instance, "Balance KF".
    2) Within the new structure, create 1 selection field filtering the apropiate key figure.  Give it an auxiliar name "auxiliar", cause it´s going to be used just for calculations (not visible in queries).
    3) Set properties of this selection as Hidden.
    4) Create 2 new selection filds within the same structure.  Name them but don´t make any selection of characteristics, cause we´re going to assign values with cell option (these are col 1 and col 2 in my previous example).
    5) In the tool bar you will find a "Cells" button.
    6) You have to write formulas en col 1 and col 2 (as you were working in an workbook), making reference to the values in hidden column.  In column 1 make reference to account level values; in column 2 make reference to total level values.
    If you have problems defining reference cells, let me know, but this will solve your issue.
    Regards, Leticia

  • Getting the total amount n creating extra profit center

    hello folks,
    I am uploading the data for open AR items, in this process..
    I am looping through the AR items internal table and for each one AR item i am taking multiple GL items looping through the GL item internal table internally.
    So here I have to do one more extra thing. I have to take the balance amount of the one AR item BSEG-WRBTR and compare with the sum of the GL items amounts for that particular AR line item and if there is any difference in the amount then with that difference amount i have to create one more extra line GL line item.
    here is the example : let us take the AR item balance amount is 100$ and the for that particular AR item if u have 3 GL line items each one with 30$ balance amounts. Then compare 100 = 303030 and  the difference is 10$. With that 10$ amount i have to create the one more GL line item how to do it can anyone guide me plzzzzzzzzzzzz
    here is my code.......
    FORM FORM_MAIN_LOGIC.
    DATA:BEGIN OF KUNNR1,
         KUNNR TYPE KUNNR,
         ALTKN TYPE ALTKN,
         BUKRS TYPE BUKRS,
         END OF KUNNR1.
    DATA: BEGIN OF IT_EXTENSION OCCURS 0,
            P_EXTENSION TYPE C,
            END OF IT_EXTENSION.
    DATA : LV_WRBTR TYPE WRBTR.
    DATA: BEGIN OF I_PRCTR,
          PRCTR TYPE PRCTR,
          END OF I_PRCTR.
    PERFORM FORM_READ_DATA_ALL.
    LOOP AT I_ARITEM.
        SELECT SINGLE KUNNR FROM KNB1 INTO KUNNR1-KUNNR WHERE ALTKN = I_ARITEM-P_KUNNR and BUKRS = 'U001' .
        IF SY-SUBRC <> 0.
          WA_ERROR-E_KUNNR = I_ARITEM-P_KUNNR.
          WA_ERROR-E_XBLNR = I_ARITEM-P_XBLNR.
          WA_ERROR-E_ERROR = ' CORRESPONDING SAP CUSTOMER NOT FOUND'.
          APPEND WA_ERROR TO IT_ERROR .
          MOVE KUNNR1-KUNNR TO I_ARITEM-P_KUNNR.
          MODIFY I_ARITEM.
        ENDIF.
      CALL FUNCTION 'OWN_LOGICAL_SYSTEM_GET'
       IMPORTING
         OWN_LOGICAL_SYSTEM                   = WA_DOCUMENTHEADER-OBJ_SYS.
        WA_DOCUMENTHEADER-OBJ_TYPE   = 'IDOC'.
        WA_DOCUMENTHEADER-OBJ_KEY    = I_ARITEM-P_AWKEY.
        WA_DOCUMENTHEADER-USERNAME   = SY-UNAME.
        WA_DOCUMENTHEADER-HEADER_TXT = 'BAPI Test'.
        WA_DOCUMENTHEADER-COMP_CODE  = 'U001'.
        WA_DOCUMENTHEADER-PSTNG_DATE = P_DATE.
        WA_DOCUMENTHEADER-REF_DOC_NO = I_ARITEM-P_XBLNR.
        WA_DOCUMENTHEADER-DOC_DATE = I_ARITEM-P_BLDAT.
        WA_DOCUMENTHEADER-PSTNG_DATE = I_ARITEM-P_BUDAT.
        WA_DOCUMENTHEADER-DOC_TYPE = I_ARITEM-P_BLART.
    fill AR (line 1)
        IT_ACCOUNTRECEIVABLE-ITEMNO_ACC = '1'.
        IT_ACCOUNTRECEIVABLE-CUSTOMER = I_ARITEM-P_KUNNR.
        IT_ACCOUNTRECEIVABLE-REF_KEY_1 = I_ARITEM-P_XREF1.
        IT_ACCOUNTRECEIVABLE-REF_KEY_2 = I_ARITEM-P_XREF2.
        IT_ACCOUNTRECEIVABLE-REF_KEY_3 = I_ARITEM-P_XREF3.
        IT_ACCOUNTRECEIVABLE-PMNTTRMS = I_ARITEM-P_ZTERM.
        IT_ACCOUNTRECEIVABLE-ALLOC_NMBR = I_ARITEM-P_ZUONR.
        IT_ACCOUNTRECEIVABLE-ITEM_TEXT = I_ARITEM-P_SGTXT.
        APPEND IT_ACCOUNTRECEIVABLE.
    fill extension segments.
        it_EXTENSION1-field1+3       = 1.
        it_EXTENSION1-field1+3(18)  = I_ARITEM-P_RSTGR.
        it_EXTENSION1-field1+3(10)       = I_ARITEM-P_WSKTO.
        append IT_EXTENSION1.
        IT_CURRENCYAMOUNT-ITEMNO_ACC   = 1.
        IT_CURRENCYAMOUNT-CURR_TYPE    = '00'.
        IT_CURRENCYAMOUNT-CURRENCY     = 'USD'.
        IT_CURRENCYAMOUNT-AMT_DOCCUR   = I_ARITEM-P_WRBTR.
        APPEND IT_CURRENCYAMOUNT.
    LOOP AT I_GLITEM.
    *******GET THE PROFIT CENTER AND UPDATE THE BAPI STRUCTURE************
    *SELECT SIGLE PRCTR FROM YOCTD_C009_MKDPR INTO I_PRCTR-PRCTR WHERE LEG_MRKT_DIV = I_GLITEM-P_MRDIV AND
                                                                      LEG_SBU = I_GLITEM-P_MRSBU.
    IF SY-SUBRC = 0.
    MOVE I_PRCTR TO I_GLITEM-P_PRCTR.
    MODIFY I_GLITEM.
    ENDIF.
    *IF PROFIT CENTER IS NOT FOUND THEN CREATE A NEW PROFIT CENTER.
    IF SY-SUBRC <> 0.
    I_GLITEM-P_PRCTR = 'P1331193'.
    MODIFY I_GLITEM.
    ENDIF.
    *******CHECK THE ROLL UP GL LINE ITEM AMOUNT WITH AR LINE ITEM AMOUNT.
    GET PROFIT CENTER FOR THE CORRESPONDING MARK DIV AND SBU.
    *SELECT SINGLE PRCTR FROM YOTCD_C009_MKDPR INTO I_GLITEM-PRCRT WHERE LEG_MRKT_DIV = I_GLITEM-MARDIV AND LEG_SBU = I_GLITEM-MRSUB.
      IT_ACCOUNTGL-ITEMNO_ACC     = 2.
      IT_ACCOUNTGL-GL_ACCOUNT     = P_HKONT.
      IT_ACCOUNTGL-ITEM_TEXT      = 'CONVERSION ACCOUNT'.
      IT_ACCOUNTGL-COSTCENTER     = P_KOSTL.
      IT_ACCOUNTGL-PROFIT_CTR     = P_PRCTR.
      APPEND IT_ACCOUNTGL.
    IT_CURRENCYAMOUNT-ITEMNO_ACC   = 2.
    IT_CURRENCYAMOUNT-CURR_TYPE    = '00'.
    IT_CURRENCYAMOUNT-CURRENCY     = P_WAERS.
    IT_CURRENCYAMOUNT-AMT_DOCCUR   = I_GLITEM-P_SAMNT * -1.
    APPEND IT_CURRENCYAMOUNT.
    ENDLOOP.
    PERFORM FORM_CHECK_DATA.
    PERFORM FORM_POST_DATA.
    PERFORM FORM_COMMIT_WORK.
    PERFORM FORM_LONG_TEXT.
    ENDLOOP.
    Please its bit urgent can anyone guide me...........
    SRI

    HELLO guys,
    I tried to write the logic as below.....
    IF I_GLITEM-P_XBLNR = I_ARITEM-P_XBLNR.
    APPEND I_GLITEM TO I_EXTRAGL.
    AT END OF P_XBLNR.
    V_GLBAL = V_GLBAL + I_EXTRAGL-P_SAMNT.
    IF I_ARITEM-P_WRBTR <> V_GLBAL.
    V_DIFBAL = I_ARITEM-P_WRBTR - V_GLBAL.
    ENDIF.
    ENDAT.
    ENDIF.
    Now i got the difference amount into V_DIFBAL... then how to create the extra GL ITEM...
    please can anyone guide me to complete this?
    SRI

  • Balance Sheet template as per Profit Centers

    Hi,
    Is it possible to create a Balance Sheet template as per profit centers?
    Just like we have th cost center hierarchy....
    Please comment.
    Regards

    Hi Vishal,
    The concept for Profit Center is designed specifically for P&L.  There is no relationship with the Balance Sheet. This applies to all systems not only to B1.
    Thanks,
    Gordon

  • Intra Company Postings not shown on Balance Sheet Report S_ALR_87012284

    Team,
    FI is unable to recognize the intra company cost flows in balance sheet when it is executed for the entire company codes (Example in CPS 1000-2400).
    The Cost allocations are not broken down; all our secondary cost elements are mapped to a primary cost element.
    The Cost flows are seen when the balance sheet report is executed for one company code.
    Please let me know if there is a way to resolve this issue.
    Appreciate your help ahead.
    Thanks
    Sree Vidya
    Enterprise Application Delivery
    Office:210 353 4877
    Cell: 210 837 0191

    Hi Gurus,
       In financial statement maintiance, ob58
       1. Is it possible for putting the total in "Start of group", not "End of Group"
       2. Is it possible for us to create to nodes with has the same GL but belong to different group.
       3. Is it possible for creating a formulation.
    Appreciation for you soon feedback.
    Thanks and Regards,
    KIM
    Edited by: Kim, CheolYeon Lee on Dec 15, 2009 6:01 AM

  • Balance sheet report display

    Hello Gurus,
    I have a requirement from my user to change the display of the balance sheet report. The requirement looks very simple and I tried changing the query in few different ways and I'm not able to achieve this. Can you please help me on this? If your solution works I'll assign full points.
    Present the reports looks like this: (Note: please ignore the Balances I used in this example)
    GL_ACCT (Restricted to balance sheet hier)           Company_code                      Balance
    BALANCE SHEET(level1)                                       1111                                   0
                                                                                2222                                   0
                                                                                Result                                 0
       ASSETS(level2)                                                  1111                                   200
                                                                                2222                                   200
                                                                                 Result                                0
         CURRENT ASSETS(level3)                                1111                                   50
                                                                                 2222                                  50
                                                                                 Result                                0
            Cash and Cash Equiva(level 4)                        1111                                   25
                                                                                 2222                                  25
                                                                                 Result                                0
               Petty Cash    1000/111000                           1111                                  5
                                                                                 2222                                  5                                                                               
    Result                               10
               OPERATING  1000/113000                           1111                                  5
                                                                                 2222                                  5
                                                                                 Result                               10
               PAYABLES   1000/11300                            11111                                 5
                                                                                 2222                                  5
                                                                                 Result                               10
               MTL SVCS     1000/113010                          1111                                  5
                                                                                 2222                                  5
                                                                                 Result                              10        
    Requirement:
    GL_ACCT (Restricted to balance sheet hier)           Company_code                      Balance
    BALANCE SHEET(level1)                                                                                0
       ASSETS(level2)                                                 
         CURRENT ASSETS(level3)                               
            Cash and Cash Equiva(level 4)                                                                  40
               Petty Cash    1000/111000                           1111                                  5
                                                                                 2222                                  5    
               OPERATING  1000/113000                           1111                                  5
                                                                                 2222                                  5
               PAYABLES   1000/11300                            11111                                 5
                                                                                 2222                                  5
               MTL SVCS     1000/113010                          1111                                  5
                                                                                 2222                                  5
            Accounts Receivables (level 4)                                                                  10
           Total CURRENT ASSETS                                                                          50
           Total Assets                                                                                200
                                                                                    Bottomline is the user only want to see the company code at the detailed account level but not at the other accounting hierarchy levels
    Forgive me if I confused you...
    Regards,
    Seenu

    Hi Karthik,
    Thanks for reply.
    The output should be period wise, when user execute the report it should display period wise in the output.
    We are on 4.7 EE, so i have to go with GLT0 Table. Any other suggestions.
    Thanks.
    Regards,
    Raj

  • ***Balance sheet Report book got Disappeared from HFM Explorer***

    Hi All,
    Actually one of my user is able to open the balance sheet report book from hfm workspace and run the report till last month.
    No one has removed any of his access.He is able to see all the other reports except Balance sheet report this month.As this is a month end for us it is very very important for me to provide the report book.Even i refreshed his securities but no use.
    I am really battling with my head with no result.
    Am really thankful to every one please do reply me the solution.
    Regards,
    Vinod

    Can others see this report? If so, is this the same user that is having problems with smartview?
    https://forums.oracle.com/forums/message.jspa?messageID=10912726
    Do you use groups in ADF or within HFM? has any of his groups changed in provisioning?
    Do you connect to more than one AD in Shared services? If so HFM looks for IDs in each Directory in the order they are listed. If someone entered the same user ID in another domain, HFM will use that one instead of Alex's true ID and have wrong provisioning.
    Is the balance sheet report in the list and he cannot open it? Then check to see if he has the preview POV on, perhaps the POV is defaulting to an invalid setting.
    If the balance sheet is missing from the list of reports, then check the permissions for that report.

  • Split balance sheet report by different business types

    Hi Expert,
    Recently, one of my entity with new business type required to setup and target live by May-2011. Currently, we are using profit center accounting for P&L report. With the new business type, they would like to split the balance sheet report by that.
    Can expert please share with me how can I achieve to split the balance sheet by different business types? Your kind help is appreciated.
    Regards,
    Kang Ring

    Dear:
                 For business area definition you have to do certain customization in SPRO In enterprise structure....definition for Financial Accounting... define business area and for enabling Business area wise balance sheets to ****(Financial Accounting Global Standard) in SPRO...Enter Global Parameters.... and enable Business area balance sheet.
    Regards
    Edited by: Atif Farooq on Mar 4, 2011 10:53 AM

  • How to get balance sheet report for profit centers

    hi
    how to get balance sheet report for profit centers, is there any transcation code to get that report or i need to create a report painter report for this

    Hi,
    You can use T. code KE5Z for actual line items.
    More to this you can use program RFBILA10 (Use T. code SE38 and program RFBILA10) for complete blance sheet.
    The transaction is for special purpose ledger but this program RFBILA10 can be used for profit center balance also.
    In selection, you can give ledger name which is generally 8A for profit center ledger.
    Reg

  • BCS - Re-translation of the balance sheet rates

    Hello colleagues,
    I have a question regarding the transalation of balance sheet rates in a BCS system.
    Concerning foreign currency translation in SAP BCS system:
    The current plan for SAP go live is to translate items in the income statement at the daily transaction rate in SAP and then re-translate the balance sheet only at the month end closing rate in BCS for Group reporting purposes in EUPO.
    There is some disagreement on this approach - one opinion is that we should use BCS to re-translate our income statement at the monthly average FX rate and the balance sheet at the closing rate.
    Would it be possible to advise on the best approach?
    Kind regards,
    David

    This is a choice for the group accountants / users, not the implementaiton team.
    You can tell them that either is possible in BCS, which one do they want?
    As Dan says USGAAP has a specific requirement, do they report in USGAAP or IFRS (or something else)?
    I have seen both solutions.

  • I've recently been given a macbook pro from uni, with lots of adobe software on. I want to pair it with my iMac which has music etc and is it possible to get the software to the imac and the files to the macbook?Giving me the best of both :-)

    I've recently been given a macbook pro from uni, with lots of adobe software on. I want to pair it with my iMac which has music etc and is it possible to get the software to the imac and the files to the macbook?Giving me the best of both :-)

    You would need the original installation disks or files for the Adobe software to get it onto your iMac, and having it on two computers may not be allowed by your university's licensing. Talk to whoever issued the MacBook.
    As to the music, just copy it over to the MacBook, either via Home Sharing, file sharing, or an external storage medium (hard drive, USB flash drive, etc.).
    Regards.

  • Is it possible to get the style, font and related info of a paragraph of a in design file and write it on the same in design file  on the  left side

    Is it possible to get the style, font and related info of a paragraph text  of a in design file and write  all the stuff on the same in design file  on the  left side with small fonts 
    as
    Lets  this is a text in in design file    :
    style : abc                      we are going to check the  condition  Agence Wallonne pour la Promotion d'une Agricultur we are going to check the  condition  Agence Wallonne pour la    font 12                                  d'une Agricultu we are going to check the  condition  Agence Wallonne pour la Promotion d'une Agricultu
    style : xyz                      we are going to check the  condition  Agence Wallonne pour la Promotion d'une Agricultur we are going to check the  condition  Agence Wallonne pour la    font 10                                  d'une Agricultu we are going to check the  condition  Agence Wallonne pour la Promotion d'une Agricultu

    Hi Poojith
    Not sure if this would solve your requirment but just in case might be helpful:
    1. We can mix up the HTML and HTMLB components in the JSP Page. However, can access only the HTMLB components in the controller. The following link refers to what customizations are offered by the HTMLB framework:
    [http://www.sapdesignguild.org/resources/htmlb_guidance/]
    2. Another option would be to use AbstractPortalComponents or a simple web app if that's feasible. (where custom UI themes, css and layout are more in control of the developers.)
    Thanks
    Deepak

  • HT1222 Is it possible to get the SSL fix without having to install ios7 (which I tried and hated) or jailbreaking the devices?

    I have a few ipads, iphones and ipod touches of various models, and all run iOS6 of various types (whatever they were running when I last updated them before iOS 7 came along and stopped me being able to get newer versions of 6).
    I tried iOS7 for a while but hated both the appearance and some of the things that changed.
    My ipods have updated to a new version of iOS6 with the SSL fix.
    I can't seem to get this option for the ipads or iphones.
    Is it possible to get the important SSL update for iOS 6 for iPhone5, iPad3, ipad4 and ipad mini (not retina) without having to go to iOS7?
    (It seems that I can get a fix by jailbreaking but I really don't want to do that if there's another option since I have no need for it otherwise.)
    Thanks a lot.

    Thanks, that's helpful. I expected that answer, since I read a load of stuff about Apple pushing people to get iOS 7 despite it having people who disliked it, but was hopeful it was not the case
    Some of the changes, like to calendar were just frustrating.
    Not a big problem though - just means that the next phone and tablet hardware update I get won't be apple.
    Thanks a lot for the swift and helpful replies.

Maybe you are looking for

  • Problems with Remote app on iphone and Mac connection

    Hi, I am using iTunes 10.4.1, and am trying to use the remote app on my iphone to control my itunes with it. I was able to connect previously, before I upgraded to Lion OS, before upgrading to the latest versions of iTunes and my iPhone as well. But

  • Data is not saved in the Real time Cube

    Hi all, After designing the layout in BPS ,when i enter the plan data in the layout (T CODE - UPXPM ),The plan data is not getting saved in cube .i have chosen the type of layout as Excel based.     Please make me clear where the problem occurs. Than

  • What is error 2349?

    I tried updating iTunes and I got all the way to the end copying new files and then I get an error message of 2349. What is this and how do I fix it?? Really ****** cause I can not find any information on this. Do not know what to do. Tried uninstall

  • Sync pc photos to photostream

    I have quite a few photo albums on my Windows 7 PC. I have just started using the iPad Mini and Photostream. Using Photostream, how do i share all my win7 PC photos so i can view on my iPad Mini? My PC photos are stored in the default 'Pictures' fold

  • CS3 Bridge as DAM

    Has anyone been able to successfully implement Bridge CS3 as a DAM over a work group? I'm doing some tests, mainly adding keywords in the XMP, then having a coworker search the server for the keyword. I haven't had much luck. Is there a way to export