Regarding P & L Statement In FI

Hi Experts,
Is there exist a standard query for Profit And Loss Statement in FIGL in EHP3?
Thanks
Bhasin

Hi,
Find here with the queries
AssetTurns                                                                                0FIGL_C01_Q0001_SCOR
Return on Assets                                                                      0FIGL_C01_Q0002_SCOR
G/L: Balances structured - accumulated, comp. with prev.year      0FIGL_C01_Q0010
G/L: Balances - accumulated, comparison with previous year      0FIGL_C01_Q0020
G/L: Balances - quarter breakdown                                                 0FIGL_C01_Q0030
G/L: Balances structured - quarter breakdown                         0FIGL_C01_Q0040
GL: Balances - Period Breakdown                                                0FIGL_C01_Q0050
GL (New): Balance Display                                             0FIGL_C10_Q0001
GL (New): Balance - Cumulative, Comparison to Previous Year      0FIGL_C10_Q0002
GL (New): Balance Display Remote                                              0FIGL_R10_Q0001
GL (New): Balance - Cumulative, Compar. to Prev. Year REMOTE      0FIGL_R10_Q0002
Bal.Sheet and Profit and Loss (New):Actual/Actual Comparison      0FIGL_V10_Q0001
Financial Key Figures: Overview                                               0FIGL_V10_Q0002
Financial Key Figures: Details                                                  0FIGL_V10_Q0003
Bal.Sht and Profit and Loss (New):Actl/Actl Comparison Rem.      0FIGL_V11_Q0001
Financial Statement and P&L: Actual/Actual Comparison      0FIGL_VC1_Q0001
Cash Flow Statement (Cash Flow)                                                  0FIGL_VC1_Q0002
Financial Statement and P&L (COSA): Actual/Actual Comparison      0FIGL_VC2_Q0001
Regards,
Marasa.

Similar Messages

  • Urgent: regarding sub select statement

    I making a report in which i have to display the STOCK and i want to do the sum in a select statement of the value coming from the field AFRU-GMNGA so that i can do calculation of the value of 1st field to be subtracted from the last value of the same field .
    can anybody provide me example of it as i am currently using dis select statement:-
    SELECT AMATNR ALGORT BGMNGA BVORNR C~MEINS FROM AFPO AS A
      INNER JOIN AFRU AS B ON AAUFNR = BAUFNR
        INNER JOIN MARA AS C ON AMATNR = CMATNR
          INTO TABLE ITAB
          WHERE MTART IN MAT_TYPE AND A~MATNR IN P_MATNR .
    plzz help me out as it is really urgent to me.

    Hi,
    Go thr the below select query.
    select tvkwzwerks a350kschl a350vkorg konpkbetr
           from tvkwz inner join a350 on tvkwzvkorg = a350vkorg inner join konp
           on a350knumh = konpknumh into table itab where  tvkwz~werks = '1003'
           and a350~kschl = 'ZCPA'.
    Regards,
    vijay

  • Regarding max select statement.

    hi ,
        i m using max in select statement but its nt showing the o/p,cud u plz help me..thnx in advce.here i m giving the code....
    tables:s032.
    select-options:s_matnr for s032-matnr.
    data:begin of itab occurs 0,
         matnr like s032-matnr,
         letztzug like s032-letztzug,
         end of itab.
    select  matnr
    MAX( letztzug )
    into corresponding
    fields of
    table itab from s032 where matnr in s_matnr
    group by matnr
    order by
    matnr
    loop at itab.
    write:/ itab-matnr,itab-letztzug.
    endloop.

    select matnr
    MAX( letztzug )
    into
    table itab from s032 where matnr in s_matnr
    group by matnr
    order by
    matnr
    dont use corresponding fields of clause it is not matching the field name with max function.
    regards
    shiba dutta

  • Regarding this select statement

    hi,
    i am not getting value i write like this select statement
    plz check error in this code.
    TABLES: VBAK,
    vbrk.
    TYPES: BEGIN OF TYP_VBAK,
          VBELN TYPE VBELN_VA,
          VBTYP TYPE VBTYP,
          VGBEL TYPE VGBEL,
          END OF TYP_VBAK,
           BEGIN OF TYP_VBRK,
              VBELN TYPE VBELN,
              WAERK TYPE WAERK,
              VKORG TYPE VKORG,
              KNUMV TYPE KNUMV ,
              FKDAT TYPE FKDAT,
              LAND1 TYPE LLAND,
              NETWR TYPE NETWR,
              KUNRG TYPE KUNRG,
              EXNUM TYPE EXNUM,
              MWSBK TYPE MWSBP,
              END OF TYP_VBRK.
    DATA: GT_VBAK TYPE TABLE OF TYP_VBAK,
          IT_VBRK TYPE standard TABLE OF TYP_VBRK WITH HEADER LINE.
         LS_VBRK TYPE TYP_VBRK,
      SELECT VBELN
             WAERK
             VKORG
             KNUMV
             FKDAT
             LAND1
             NETWR
             KUNRG
             EXNUM
             FROM VBRK INTO CORRESPONDING FIELDS OF TABLE IT_VBRK
             WHERE VBELN = '0090060045'.

    Check from SE16 whether vbeln = 0090060045 is present in VBRK or not.
    Regards,
    Joy.

  • Regarding Insert Report Statement

    Hi All,
      Can any one tell me how to use insert report statment..
      what are the prerequisites to use it...
      I am using this statement in a loop.
      Lets take my loop consists of two iterations...
    For the first iteration it is working fine...when the second iteration starts...the code in the first iteration
    is replaced by the second one...and the second one is showing empty screen...
      thanks in advance..
    regards
      phani

    Hi,
    I declared my itab as
    Data: t_uincl TYPE STANDARD TABLE OF abaptxt255 WITH  
          HEADER LINE.
    Actually my prog is downloading/uploading of function groups..
    I downloaded the function group...
    Am getting this error while Iam uploading the function modules source code in that function group...
    For single function module it is working fine...
    If have two function modules..it is not working...
    The source code in the second function module is replacing the first one...and second one consists of nothing...
    regards
      phani

  • Regarding a select statement

    hi,
    i got a select statement in my program as shown below
    select * from ce4e001 where bukrs eq s_bukrs-low.
    check s_kndnr.
    check s_prctr.
    move-corresponding ce4e001 to v_ce4e001.
    append v_ce4e001.
    endselect.
    now i want to rewrite this select statement with using  into table like
    select * from ce4e001 into table v_ce4e001 where bukrs eq s_bukrs-low.
    but my problem is
    in the initial select statement they have used two check statements before appending
    now how can i incorporate those two check statements in my new select statement
    thanks
    ram

    Hi Ram,
    Not sure why the check keywords where embedded within the select statments...it will have no impact if the selection variable where outside.
    You could rewrite your new code as:
    check s_kndnr.
    check s_prctr.
    select * from ce4e001 into table v_ce4e001 where bukrs eq s_bukrs-low.
    Assign points if it works.
    Thanks
    -Saif

  • Regarding SUBMIT (report) statement.

    Hi experts,
      Inside an RFC I am calling a custom report which gives the  output in the form of ALV grid. I have used SUBMIT (report) in the RFC for a given set of inputs.
    it_sel is an internal table with the selection screen parameters and values.
    This is my code.
      SUBMIT zmmrep03_r3ent WITH SELECTION-TABLE it_sel
      EXPORTING LIST TO MEMORY AND RETURN.
    Doing so, I am encountering a problem. When I run the RFC in test frame I am viewing the output which should not happen since i am using  <b>Exporting List to Memeory And Return</b>. After that I am getting a runtime exception <b>"NOT FOUND"</b>.
    How to resolve this problem.
    Regards,
    Arul Jothi.

    Arul,
    1. ALV does not export the list to memory.
    2. You cannot call a RFC that writes data to the screen.
    You need to find a differen way of doing this in your case.
    Regards,
    Ravi
    Note : Please mark the helpful answers

  • Regarding cash flow statement direct method In FSCM-LP

    Hello Every one,
      I got information form SAP japan That we can View cash flow statement direct method but as per my point of view we can see the reports in FSCM-LP of cash flow .
    Can any budy tel me is it possible to see cash flow statement direct method in FSCM-LP module if yes then please guide me how?
    Thank you
    Deepak Pawar

    Hello,
    Yes, you can get the cash flow statement (direct method) in Liquidity Planner.
    Define the liquidity items for Operating cash flows, Investing cash flows and Financing cash flows. Then, configure the assignment mechanisms for liquidity items (based on account statement, FI postings, Invoices). Then, define queries.
    Operating cash flow would include items like sales of goods and services, payments to suppliers etc. Investing cash flows would include items for sale  and purchase of property, plant and equipment, etc. Financing cash flows would include items for debt issuance, dividends etc.
    Manish

  • Regarding leave program statement.

    Because of using LEAVE PROGRAM statement in LOAD-OF-PROGRAM event the BDC report is going to dump can any one tell me the alternation for LEAVE PROGRAM statement its urgent please?

    You're technically not allowed to do anything that would cause the program to exit in the LOAD-OF-PROGRAM event, STOP is also not allowed.
    The best way I know to make sure the program exits completely is to set a flag in the LOAD-OF-PROGRAM event, and then use "RETURN" or something similar to leave the event.  The next event to run will be INITIALIZATION, from which you can check the flag and call "LEAVE PROGRAM". With no problems.
    (You can also sometimes move everything to the INITIALIZATION event, depending upon your needs.)

  • Query regarding standby database state when primary is down or un-reachable

    Hi
    I want to know if there is any reflection on the standby database states when it's primary is down or not reachable? I want to use this information from standby node to determine if I can programatically execute (dgmgrl) failover operation or not? This is considering that the broker configuration has no fast-startfailover and no observer enabled/configured.
    Thanks,
    Yojana

    989192 wrote:
    Hi
    I want to know if there is any reflection on the standby database states when it's primary is down or not reachable? I want to use this information from standby node to determine if I can programatically execute (dgmgrl) failover operation or not? This is considering that the broker configuration has no fast-startfailover and no observer enabled/configured.
    Thanks,
    YojanaYou don't have exactly such option,
    But you have alternate for it. Whenever standby is unreachable to primary then from standby alert log file you can see informational messages as RFS: Possible network disconnect with primary database , So you can write a script to grep those contents and to mail alert, so that you can sense whether any issue with primary database.
    HTH.

  • Regarding for Submit statement

    Hi,
        am Using below statement in my called program .i should use this statement in my called program it's must. if we use this statement am not able to come back to called program.
    how to returm from calling program to called program by using the below statement.
         SUBMIT rqmell10   WITH FREE SELECTIONS
                        it_texpr .

    Hi,
    <li>Your wording seems to be not correct.
    <li>Lets say we have two programs A and B. If we call program B in program A. We call A as Calling program and B as called program.
    <li>Try this way to use SUBMIT statement.
    REPORT zcalling_program.
    DATA: it_rsparams TYPE STANDARD  TABLE OF rsparams,
          wa_rsparams LIKE LINE OF it_rsparams.
    wa_rsparams-selname = 'S_MATNR'. "Screen field name of called program
    wa_rsparams-kind    = 'S'. "S=Select-options P=Parameters
    wa_rsparams-sign    = 'I'.
    wa_rsparams-option  = 'EQ'.
    wa_rsparams-low     = '11010'.
    wa_rsparams-high    = space.
    SUBMIT zcalled_program VIA SELECTION-SCREEN WITH SELECTION-TABLE it_rsparams AND RETURN.
    Thanks
    Venkat.O

  • Regarding Engine Run state using PAPI Client

    Is there anyway to find if ALBPM Execution engine is running using PAPI Client?
    Thank you.
    Regards,
    Ravi.

    Hi,
    IMHO the best way to find if the engine is up or down is by connecting through JMX,
    Hope this helps,
    Ariel

  • Regarding "Dropping call state without timer" error

    Hi,
    I am using WLSS-3.1-MP1 on Solaris 10 in a clustered environment.
    I see following error in engine tier console log.
    *[1259525001295] [CallState] : Dropping call state without timer: [email protected]*
    First and last string varies with each error.
    Any idea what this error is for ? Didn't find anything in documentation about this.
    Thanks,
    KeDar

    Thanks for your reply, Anurag !!
    There isn't any known communication issue between engine and data tiers.
    None of the Engine Tier JVMs was shut down.
    If I want to look further into the possibility of "Engine tier un-responsive for long time", would you please give any details as whats considered as long time etc..
    In console log, I don't see anything else around this message, thats related to the error.
    A quick search in engine's server log files also didn't give any info.
    Also, can I safely assume that this error won't cause any trouble if another engine tier instance picks up the call ?
    Thanks again,
    KeDar
    Edited by: kedar.ambekar on Feb 19, 2010 1:05 PM

  • Regarding "Update .. From Table" Statement

    Hi,
    I have an existing piece of code which I'm trying to understand.
    There are two scenarios regarding the UPDATE statement.
    1) Scenario 1:
    There exists a database table with around 100 or more fields/columns [Eg: DB_TABLE1].
    An Internal Table exists with the same key as the above database table [EG: I_TABLE1].
    code:
    loop at I_TABLE1.
      update DB_TABLE1
      set kf1 = I_TABLE1-kfa
       kf2 = I_TABLE1-kfb
       kf3 = I_TABLE1-kfc
       kf4 = I_TABLE1-kfd
      where key1 = I_TABLE1-keya AND key2 = I_TABLE1-keyb.
    Endloop.
    In the above scenario the records in database table [DB_TABLE1] with matching condition are updated and the rest of the fields are not touched.  - Correct me if I am wrong.
    2) Scenario 2:
    There exists a database table with around 100 or more fields/columns [Eg: DB_TABLE1].
    Two Internal Tables exist with the same key as the above database table [EG: I_TABLE1 And  I_TABLE2].
    Code part a:
    SELECT * FROM DB_TABLE1 INTO TABLE I_TABLE2
          WHERE  KF1 <> 0.
    Internal Table 1 has some data.
    Code part b:
    loop at I_TABLE1.
      update DB_TABLE1
      set kf1 = I_TABLE1-kfa
       kf2 = I_TABLE1-kfb
       kf3 = I_TABLE1-kfc
       kf4 = I_TABLE1-kfd
      where key1 = I_TABLE1-keya AND key2 = I_TABLE1-keyb.
    Endloop.
    Code part c:
    update DB_TABLE1 FROM TABLE I_TABLE2.
    In the second scenario what will be the final effect of DB_TABLE1?
    As i understand it, there is no use of Code part b. Am I right?
    I thought that the records in I_TABLE2 with matching key in DB_TABLE1 will be updated and the rest of the records will be deleted.
    But actually there is not change in the DB_TABLE1 when the above code is executed.
    Help is appreciated.
    Thanks.

    Hi Joey,
    Scenario 1: In the above scenario the records in database table DB_TABLE1 with matching condition are updated and the rest of the fields are not touched.
    - That's right.
    Scenario 2: As i understand it, there is no use of Code part b.
    - Exactly because of the following reasons:
    1. Code part a shows data selected from DB_TABLE1 INTO TABLE I_TABLE2.
    2. Code part c shows DB_TABLE1 updated from TABLE I_TABLE2 whereas Code part b uses ONLY internal table I_TABLE1.
    3. If there are any operations performed in Code Part b on 'I_TABLE2', then this would have been different.
    Regards,
    Pranav.

  • Problem in Creation of two Statement Obj

    Hello firends,
    i have a problem regarding Creating two Statement obj
    its not allowing me to do
    <%!
    Statement stmt1;
    Statement stmt1;
    Connection con;
    dbcon db;
    %>
    <%
    db=new dbcon(); (its database connection class which m importing)
    try
    con= db.getDbCon();(method of dbcon class)
    stmt1=con.createStatement();
    stmt2=con.createStatement();
    in above two line its giving me error
    And when i use
    con1= db.getDbCon();(method of dbcon class)
    con2= db.getDbCon();(method of dbcon class)
    stmt1=con1.createStatement();
    stmt2=con2.createStatement();
    then its working fine
    so i know this is not the proper way to doing thing so how should i solve this problem
    plz help me
    }catch(SQLException)
    }

    Thanaks for reply but my that problem is solved,i would like to ask u
    i have following simple code
    <%@ page import="java.sql.*,com.example.model.*" session="true" %>
    <%!
    ResultSet rs;
    Statement stmt;
    Connection con;
    %>
    <%
    dbcon cn=new dbcon();
              con=cn.connectdb();
              try
    stmt=con.createStatement();
    rs=stmt.executeQuery("select mf_id,mf_lr_id,mf_origin,mf_destination from Manifest");
    if(rs.next())
    out.println(rs.getInt("mf_id")+"<br/>");
    out.println(rs.getInt("mf_lr_id")+"<br/>");
    out.println(rs.getInt("mf_destination")+"<br/>");
    out.println(rs.getInt("mf_origin")+"<br/>");
    }catch(SQLException se)
    out.println(se);
    }finally
    try
    if(rs!=null)
    rs.close();
    if(stmt!=null)
    stmt.close();
    if(con!=null)
    con.close();
    }catch(SQLException se1)
    %>
    in this code m just fetching "mf_destination" field before "mf_origin"
    thien its giving Error Msg
    89
    58
    14 java.sql.SQLException: [Microsoft][ODBC SQL Server Driver]Invalid Descriptor Index
    and suppose i fetch it in sequence as define in select stmt then its working fine.
    so this sequence i can maintain in small data but if i use
    Select * from ........
    then should i fetch all data as its sequence in database Table

Maybe you are looking for

  • Fonts disappeared

    Hi, this morning many fonts seem to be unavailable in Classic text view in files that were previously fine. I can select the text but nothing shows up when unselected. If I change the font some show and some don't and I can't see any logic as to why!

  • Why is my ipad screen black or blank

    I pushed the home button on my ipad 2 and the screen light up but it was blank. Why is it doing this and can I fix it? I tried to hold down the sleep button and the home button to reset and this did not work. I also tried to just turn the device off

  • Display Reconciliation a/c

    hello, I have an issue like after creation of vendor master, reconciliation account in the change mode should be having display status. so at the time of creation of vendor master, reconciliation account should be able to input the field and at the t

  • Can a single OHS act as proxy for 2 different WLS host?

    Can a single OHS act as proxy for 2 different WLS host? If yes how to do that? And also a single webgate can be used to protect two hosts???

  • Help! 500 No configured channel has an endpoint path '/flex2gateway/'

    Hello. I have 2 servers running CF 7 and one of my customer's web sites flex app works fine with no config involved. However, the development server gives the following Error when you try and access the app: 500 No configured channel has an endpoint