Financial Statement Version - Value Help Function Module

Hi,
I want a function module or a bapi which retrieves all the Financial Statement Versions defined in the system, just like bapi_companycode_getlist which list down all the company code.
Thanks,
James.

Hi Drogo ( sorry u didn't make it to more sessions )
that Ledger above which Dinesh Kumar Rengarajan menitone is only relevant when New GL is activated. I think you didn't have New GL active or?
Please use simply in F.01 "Special evaluatioins" and field Alternative period selection ( for referenc use simply F1 ... it will show this example
Examples
Company code 0001 with fiscal year end 12
Company code 0002 with fiscal year end 09Calendar reporting period............. 01/01/1990 - 12/31/1990
The periods 1990/01 to 1990/16 are used as reporting periods for company code 0001 and the periods 1990/04 to 1990/16 and 1991/01 to 1991/03 are used as reporting periods for company code 0002. The same is valid for the comparison period.
I think this is what you want or?
Regards
Jan

Similar Messages

  • Functional Areas in Financial Statement Version in 4.70

    I have configured functional areas, assigned them to GL accounts and cost centers. I created a new financial statement version that allows Functional Areas and assigned functional areas to the specific areas of the report (Sales, cost of sales, g&a, etc.) When I run this financial statement version, nothing shows up under functional areas even though there are postings to accounts with functional areas. All accounts show up under not assigned.
    I have found a note that references this for 5.0 and 6.0. Is there something out there for 4.7 or am I missing something in my configuration?
    Thanks,
    Bill

    Hi shailender,
    Yes, i can try your option but this is not the solution;
    i have a requirement, where out of 6 sub items i have to do summation of only 4 sub items and later we may require to do summation of all the 6 sun items.., so i dont want to create seperate two items..,
    so, can we achieve the this?
    Thanks Vidya

  • Financial statement  version:functional area

    Hi,
    I created a financial statement  version with functional area and run it(S_PL0_86000032 ) , most items are correct, however, the item which assigned function area always 0, this means that system can not get any data via function area. would anyone help me?
    Rgds,
    Wubin

    Hello
    If you want to define a financial statement version with functional areas, these functions are limited. You cannot use the following functions:
            Balance-Dependent Display
    You cannot display functional areas dependent on the balance, that is, assign them to a different item dependent on the balance.
    ·        Debit/Credit Shift
    You cannot define items to which you have assigned functional areas as debit/credit shift items.
    ·        Check for Completeness
    You cannot use the check for completeness for financial statement versions with functional areas.
    You also have to carry out the following additional activities:
           1.      When you enter the general data, set the Functional area permitted indicator.
    You then have the option of assigning either accounts or functional areas to an item in your financial statement version.
           2.      Assign the required functional areas or functional area intervals to your P&L items
    Before setting the indicator please go through this help link
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/b5/688b8ea30d11d39759006094b969cf/frameset.htm
    regards

  • Functional area wise Financial statement version

    Hi Friends
    I have created Financial Statement version with functional areau2019s and i have assigned all function areas in FSV. But when I run F.01, I am unable to get functional area wise report.
    Can anybody tell me, where I am missing..?.  Is there any other setting for get Functional area wise report?
    Thank & Regards
    Kiran

    Hi  All,
        I am also confuse, as my requirement I need to prepare financial statement version as below example.
                            GL:Salary - 660000
                            Functional Area:200-Production/100-Marketing
                            All the posting will happen to GL 660000 with FA 100 & 200
    I need to prepare FI statement as follows
    Salary:
          - Production Salary
          - Marketing Salary
        OR
    Production Expense:
            -Salary
    Marketing Expense:
            -Salary
    So I created FI statement version using OB58 with functional area permitted but I cannot link functional area & GL to cater my requirement.I don't understand if we cannot cater this type of requirement why they introduce thin functional area feature? Appreciate some one can give me a better explanation.
    Thanks
    Nilanka

  • Financial Statement Version Extract

    Hi,
    I have to down load the Financial Statement Version.
    We can see it using T-Code 'FSE3'.
    Requirement is to download the structure in CSV file.
    File layout is:
    PARENT,CHILD,DESCRIPTION OF CHILD
    Is there any BAPI or Function module available that gives the structure or any other way to get it.
    Will appreciate response.
    Thanks
    Rohit

    See report bellow, execute and see content of internal table <b>node_tab</b> before "WRITE 'Hello'.":
    REPORT ztemp_estructura_balance MESSAGE-ID fe.
    TYPE-POOLS:
      fibs.
    TABLES: t011, rfgbst.
    TYPES:
      t_flag TYPE c,
      t_bs_node_id TYPE fibs_bs_node_id,
      t_bs_node_tab TYPE t_bs_node_id OCCURS 50,
      t_bs_type TYPE i.
    TYPES:
      BEGIN OF t_bs_info,
    *   info about BS given out to clients
        ktopl LIKE t011-ktopl,
        xauto LIKE t011-xauto,
        type TYPE t_bs_type,
      END OF t_bs_info.
    CONSTANTS:
      true TYPE t_flag VALUE 'X',
      false TYPE t_flag VALUE ' '.
    DATA: versn LIKE t011-versn VALUE 'CTIY'.
    DATA: node_tab LIKE snodetext OCCURS 0 WITH HEADER LINE.
    DATA: bs_info TYPE t_bs_info.
    SELECT SINGLE * FROM t011
           WHERE versn = versn.
    *   Load the structure from DB
    PERFORM load_versn
            USING versn.
    *   Create the node table for the function module displaying the tree
    PERFORM create_node_tab
            TABLES node_tab.
    WRITE 'Hello'.
    *  Load the version (again)                                            *
    FORM load_versn
         USING  versn.
    * Load the version
      CALL FUNCTION 'FI_BS_LOAD'
           EXPORTING
                version = versn
           IMPORTING
                bs_info = bs_info.
    * Load the texts
      PERFORM load_versn_text.
    ENDFORM.                               " LOAD_VERSN
    *&      Form  LOAD_VERSN_TEXT
    * Load the texts of the version                                        *
    FORM load_versn_text.
      DATA:
        flg_langu_maint TYPE t_flag VALUE false,
        flg_sylangu_not_found TYPE t_flag,
        maint_langu LIKE sy-langu.
      CALL FUNCTION 'FI_BS_LOAD_LANGU'
           EXPORTING
                flg_langu_maint       = flg_langu_maint
           IMPORTING
                flg_sylangu_not_found = flg_sylangu_not_found
                maint_langu           = maint_langu
           EXCEPTIONS
                OTHERS                = 1.
    * if maintenance language was loaded, because sy-langu was not found
      IF flg_sylangu_not_found = true.
        MESSAGE s741 WITH sy-langu maint_langu.
      ENDIF.
    * if maintenance language is wanted, but is different from SY-LANGU
    * tell him
      IF flg_langu_maint = true AND
        maint_langu <> sy-langu.
        MESSAGE s742 WITH maint_langu versn.
      ENDIF.
    ENDFORM.                               " LOAD_VERSN_TEXT
    *&      Form  CREATE_NODE_TAB
    *       text                                                           *
    FORM create_node_tab
         TABLES node_tab STRUCTURE node_tab.
      REFRESH node_tab.
      DATA:
        root_id TYPE t_bs_node_id.
    * Get the root
      CALL FUNCTION 'FI_BS_GET_ROOT'
           IMPORTING
                root_id   = root_id
           EXCEPTIONS
                not_found = 01.
    * Recursively add nodes
      PERFORM add_node_with_subtree
              TABLES node_tab
              USING 1
                    root_id.
    ENDFORM.                               " CREATE_NODE_TAB
    *&      Form  ADD_NODE_WITH_SUBTREE
    * Recursively add a node with its subtree                              *
    FORM add_node_with_subtree
         TABLES node_tab STRUCTURE node_tab
         USING value(level) TYPE i
               value(node_id) TYPE t_bs_node_id.
      DATA:
        children_node_tab TYPE t_bs_node_tab WITH HEADER LINE.
    * Get the display info
      CALL FUNCTION 'FI_BS_NODE_GET_SNODETEXT'
           EXPORTING
                node_id          = node_id
                with_gl_accounts = rfgbst-glac_on
           IMPORTING
                attr             = node_tab
           EXCEPTIONS
                node_not_found   = 01.
      node_tab-tlevel = level.
      APPEND node_tab.
    * And do the same for its children
      level = level + 1.
      CALL FUNCTION 'FI_BS_NODE_GET_CHILDREN'
           EXPORTING
                node              = node_id
                with_gl_accounts  = rfgbst-glac_on
           TABLES
                children_node_tab = children_node_tab
           EXCEPTIONS
                node_not_found    = 01.
      LOOP AT children_node_tab.
        PERFORM add_node_with_subtree
                TABLES node_tab
                USING  level
                       children_node_tab.
      ENDLOOP.
    ENDFORM.                               " ADD_NODE_WITH_SUBTREE

  • Uloading Financial Statement Version

    Hi Gurus,
    I have a requirement, where need to update Financial Statement Versions(FSV) using FSE2.
    Need to develop a report to update the FSV.
    Need to know the funcation module which can update the same.

    Hi,
    (not a solution, some hints...)
    The FM FI_IMPORT_BALANCE_SHEET_TEXT copies FSV texts into internal table X011Q.
    The FM FI_IMPORT_BALANCE_SHEET_POS copies FSV values into internal table X011Z, X011P, X011S and X011V (try the function in SE37 for understanding the contents of theses internal tables).
    I'm using these functions in some programs for finding the general accounts under a given node.
    I have seen the existence of FM FI_EXPORT_BALANCE_SHEET_TEXT and FI_EXPORT_BALANCE_SHEET_POS, so I think it is also possible to copy the data from internal tables to FSV, but these functions are not released and I don't know any official program in which they are used. I didn't see any documentation for the usage of these functions, so I should not use them ...
    (I'm working in 4.7)

  • Financial statement version in gl accounting

    hello all,
    What is a financial statement version in G/l accounting. How do we replicate it on BW side. I am trying to do reports like cash flow, net assets, and the functional consultant provided me with information saying that you will get financial statement version so we do we use that.
    Are there any particular tips that someone can provide to develop queries for there reports?
    Thanks in advance

    Have loaded hierarchy of FSV from R/3 to BW. Hierarchy is getting displayed in 0GL_ACCOUNT. There is a second level node called Net Profit / Loss, where there is no child node. But when we run the query then some value comes corresponding to that node also under 0COA/0PLRESULT (which is some sort of a calculation or net off happening & value gets correspond to this node).
    Now this value is getting displayed, similarly here is a node getting displayed under Source of Funds node, called Share holders Funds, now a child node of this is P & L Profit which is similar to the earlier blank node i.e. without any child node. In R/3 side this corresponds to
    0COBSPLRESULT. But this is not getting displayed in the query. That particular node itself is not appearing in the query. In the query instead of appearing under the respective node this value is appearing under unassigned nodes.
    What checks can be made to bring the value in query corresponding to the hierarchy how it is in hierarchy screen ??

  • Financial statement version - Profit after tax

    Dear All,
    I have created  financial statement version.as
    assets
    liabilties
    income
    expenses.
    profit and loss result.
    client want profit after tax and profit before tax. How to configure the to get the values?. Kindly let me know.
    Regards,
    Mouli.

    Hi,
    Please maintain the following:
    u2022 In OBD4 create a new Account Group for GL Codes that will be used for posting Depreciation of Area 15.
    u2022 Create GL Master Data under this New Account Group
    u2022 Assign this GL Code to the FSV as per IT Act.
    u2022 Map the GL Code in AO90 by selecting Area 15 specifically.
    Please refer to the below links on this:
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/4f/71fd71448011d189f00000e81ddfac/frameset.htm
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/4f/71fd71448011d189f00000e81ddfac/frameset.htm
    Regards,
    Kiron Kumar T.

  • +/- Sign Change (Transact FSE2 or OB58)_Change Financial Statement Version

    Hi,
    In transaction FSE2 there is a buttom +/- "Sign Change", but if I mark or not, nothing differente happens.
    I need to display total of Assets with value negative (for example)
    Someone can help me?
    Tks.
    Soraia

    Finally, it is not posible to change the sign in FSV for  S_ARL_87012284 report, but note  1842450 - Financial statement version +/- sign change in S_ARL_87012284 , proposes use the corresponding drill down reporting tool ( (e.g. in classic G/L: S_ALR_87012249, in new G/L: S_PL0_86000028).
    The change sign flag takes effect on these reports.

  • Reg: Updating the Financial Statement Version (FSV). Criteria for records ?

    Hi All,
    I am trying to update the Financial Statement Versions in lower systems with that of Production.
    Am using Xml to bring on the data from Production system to DEV box.
    I have the data as follows:
    Node_tab:
    Record Type      -                    Record Type A, P, G etc
    Record Name -     Name of the Record
    Level     -     Node Level     
    Parent     -     Parent of the current node
    Child     -     Child of the current node
    Next     -     Next node for the current node
    Desc     -     Description of the node
    Can someone tell me the criteria on which following tables are populated.
    FAGL_011PC
    FAGL_011ZC
    FAGL_011SC
    FAGL_011VC
    FAGL_011FC
    We have a Function Module FAGL_FSV_POS_UPDATE, that is based on these tables for updation of a FSV.
    Regards
    Raj

    Client is looking upon TDMS (Test Data Migration Server) to replicate the PRD data into lower systems.

  • Report which shows to which Financial Statement Version belong the account.

    Dear All,
    In transaction FSE3 I can see all accounts in Financial Statement Version, but I need vice versa:
    for given account I need to know if the account is in the Financial Statement Version (also which area of it).
    Is there any report to get this?
    Many thanks for Your help!
    Best regards,
    Maria

    the financial statement positions are stored in table FAGL_011ZC. The problem is that intervals are stored here, not single values. So, if you don't find a single value, it still can be contained in an interval. On the other hand one G/L account can be in any number of FSVs.

  • Financial statement version INT does not exist

    Hello Friends,
    I hope someone can help me figure this out and I've read discussions similar, just not exactly what I'm looking for.  When I run the following reports:
    S_ALR_87012271
    S_ALR_87012272
    S_ALR_87012273
    I receive the following error message:
    Financial statement version INT does not exist
    When I first received this message, I went to T-Code OB58 and entered the "INT" Financial Statement Version here.  I've also created a chart of accounts with INT values as well.  Can someone help me out on how to eliminate this error and set up cash flow?  If you have done this already, please do reply.  If not, then please allow those with more experience to help.
    Thanks so much!
    John

    John,
    You can define FSVs for a specific chart of accounts, for a group chart of accounts, or without any specific assignment.
    In your case, double-check whether you are running the report for the same CoA assignment that you have defined your FSV for in the first place.
    As somebody's mentioned earlier, these reports are made using Report Painter (GRR1 / 2 / 3, etc.). Seems FSV = INT has been fixed in these reports for your system. You'll have to edit these reports (using GRR2) and the correct FSV.
    Regards
    Gulshan

  • How to Extract Customized Financial Statement Version from R/3 to BW

    Hi Gurus,
    Could anybody tell me how to Extract Customized Financial Statement Version from R/3 to BW. Also send me docs on FICO and COPA extraction from R/3 to BW.
    Thanks in advance...
    Regards
    Rafi

    Sayed
    Please see this BW Best Practice link
    http://help.sap.com/bp_biv133/
    http://help.sap.com/bp_biv235/BI_EN/html/BW/COPABaselineAnal.htm
    http://help.sap.com/bp_biv235/BI_EN/html/BW/ControllingAnalysis.htm
    COPA Business content
    http://help.sap.com/saphelp_nw04/helpdata/en/28/3dc7393b26da1de10000000a114084/content.htm
    Hope this helps
    Thnaks
    Sat

  • Table for finding out all the G/L accounts of a financial statement version

    Hi all,
      is there any table to find out the G/L accounts which will come under the tree of financial statement version(OB58). Please help.

    With FM FI_IMPORT_BALANCE_SHEET_POS, you will get the account list in the internal table I011Z.
    You will get a list of intervals  I011Z-VONKT -  I011Z-BILKT.

  • Financial statement version in fs00 how do i change the lanugage to english

    Hi Experts
    I am currently asked to train a beginners course AC010 for FI. Below is one of the tasks i have to take the students through.Please look at F is where my question is??
    Enter the new G/L account 700## in the financial statement version INT so that it
    appears as the correct balance sheet item when the balance sheet is run.
    1. The new account has to be entered in financial statement version INT. Enter
    it in the same financial statement item as reference account 70 000.
    a) If you have exited the previous screen, choose Accountingu2192Financial
    Accounting u2192 General Ledger u2192 Master Records u2192 G/L Accounts u2192
    Individual Processing u2192 In Company Code.
    Fill in the following data.
    Field Name Value
    G/L account 700##
    Company Code 1000
    b) Choose Change.
    Continued on next page
    68 © 2006 SAP AG. All rights reserved. 2006/Q2
    AC010 Lesson: G/L Master Records
    c) Choose Edit Financial Statement Version.
    d) Enter the following in the Select Financial Statement Version dialog
    box.
    Field Name Value
    Financial statement version INT
    e) Click Choose.
    If you did remain in the screen from the previous exercise, the financial
    statement should be automatically expanded to show you where the
    reference account, 70 000, is located in the financial statement version.
    If you have to call up the screen again, the financial statement version
    does not automatically open at account 70 000. In this case, execute
    the following step.
    f) Drill down to the Liabilities u2192 Equity Capital u2192 Subscribed Capital
    balance sheet item by clicking the folder icon in front of the balance
    sheet item.(ALL these are displayed in another language how do i change to english??????????????????????????????????????????)
    g) Select Subscribed Capital and choose Assign Accounts at the top of the
    screen. Insert in the line From acct. To acct. the interval 700## to
    700##. Select D & C (for debit and credit balance). If you do not see a
    free row where you can enter your account, use the Next Page icon at
    the bottom right of the dialogue box to insert an empty row. Do not type
    over an existing account, as you will replace it with your account!
    h) Choose Continue (Enter).
    i) Choose Save.

    Hello,
    If you want to change the GL account language, then FS00 check last tabs.
    If you want to change FSV language, then copy the FSV to another language in OB58
    Regards,
    Ravi

Maybe you are looking for

  • IPod classic 120gb - can't download from itunes

    I sync the ipod to my mac, open it and DON"T get a management screen that I've read about.  It just opens in finder.  What is shown to be on the ipod is not what actually is.  My problem is, I'm trying to download music from itunes onto it.  When I d

  • Can any version of Excel save to a CSV file that is either UTF-8 or UTF-16 encoded (unicode)?

    Are there any versions of Excel (chinese, japanese, russian... 2003, 2007, 2010...) that can save CSV files in Unicode (either UTF-8 or UTF-16)? If not, is the only solution to go with tab-delimited files (save as Unicode-text option)?

  • How necessary is Java?

    Doing a fresh install of Mac OS X 10.4.11, I realized that the Java updates -- seven of them, which must be tediously installed one by one in order -- are more than all the other 10.4 updates combined: 432MB (Java) vs. 386MB (10.4.11 Combo, QuickTime

  • IPod speakers for golf cart?

    I'm looking to find a set of "outdoor" speakeers that I can mount on my golf cart and play my iPod thru. I've read some of the archived articles on this subject and learned that apparently I need powered speakers. ( I had a set of Radio Shack's years

  • How to make a title of region as a link to another page?

    Hi there, I need to hyperlink a region title, so when I click in the title I will go to another page in the app without login agian, In other words keep the same session. Thanks, abdul Edited by: dtabed on May 12, 2009 1:40 PM