Comparitive Statement report

Hi All,
I am working on comparitive statement report,i am getting the output in horizontal rows in ALV.
But i have to get it like ME49 output. i.e.,
                                  Vendor number----
Vendor Number
                                        100016----
100017
Gross Price    200----
250
Vat                8.00----
4.00
Discount        1.00----
1.00
i have tried it using fieldcatalog_merge, list_display,Grd_dislay,but it did not work
can anybody help me out to put these horizontal rows,vertically  like as above mentioned.
Thanks in Advance.
With Regards,
Sharmishta.

see the following example
*REPORT z_alv_hierseq_list.
Program with FM REUSE_ALV_HIERSEQ_LIST_DISPLAY                    
TYPE-POOLS: slis.                    " ALV Global types
CONSTANTS :
  c_x VALUE 'X',
  c_gt_vbap TYPE slis_tabname VALUE 'GT_VBAP',
  c_gt_vbak TYPE slis_tabname VALUE 'GT_VBAK'.
SELECTION-SCREEN :
  SKIP, BEGIN OF LINE,COMMENT 5(27) v_1 FOR FIELD p_max.    "#EC NEEDED
PARAMETERS p_max(02) TYPE n DEFAULT '10' OBLIGATORY.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN :
  SKIP, BEGIN OF LINE,COMMENT 5(27) v_2 FOR FIELD p_expand. "#EC NEEDED
PARAMETERS p_expand AS CHECKBOX DEFAULT c_x.
SELECTION-SCREEN END OF LINE.
TYPES :
1st Table
  BEGIN OF ty_vbak,
    vbeln TYPE vbak-vbeln,             " Sales document
    kunnr TYPE vbak-kunnr,             " Sold-to party
    netwr TYPE vbak-netwr,             " Net Value of the Sales Order
    erdat TYPE vbak-erdat,             " Creation date
    waerk TYPE vbak-waerk,             " SD document currency
    expand TYPE xfeld,
  END OF ty_vbak,
2nd Table
  BEGIN OF ty_vbap,
    vbeln TYPE vbap-vbeln,             " Sales document
    posnr TYPE vbap-posnr,             " Sales document
    matnr TYPE vbap-matnr,             " Material number
    arktx TYPE vbap-arktx,             " Material description
    netwr TYPE vbap-netwr,             " Net Value of the Sales Order
    waerk TYPE vbap-waerk,             " SD document currency
  END OF ty_vbap.
DATA :
1st Table
  gt_vbak TYPE TABLE OF ty_vbak,
2nd Table
  gt_vbap TYPE TABLE OF ty_vbap.
INITIALIZATION.
  v_1 = 'Maximum of records to read'.
  v_2 = 'With ''EXPAND'' field'.
START-OF-SELECTION.
Read Sales Document: Header Data
  SELECT vbeln kunnr netwr waerk erdat
    FROM vbak
      UP TO p_max ROWS
    INTO CORRESPONDING FIELDS OF TABLE gt_vbak.
  IF gt_vbak[] IS NOT INITIAL.
  Read Sales Document: Item Data
    SELECT vbeln posnr matnr arktx netwr waerk
      FROM vbap
      INTO CORRESPONDING FIELDS OF TABLE gt_vbap
       FOR ALL ENTRIES IN gt_vbak
     WHERE vbeln = gt_vbak-vbeln.
  ENDIF.
END-OF-SELECTION.
  PERFORM f_display.
      Form  F_DISPLAY
FORM f_display.
Macro definition
  DEFINE m_fieldcat.
    ls_fieldcat-tabname = &1.
    ls_fieldcat-fieldname = &2.
    ls_fieldcat-ref_tabname = &3.
    ls_fieldcat-cfieldname = &4.       " Field with currency unit
    append ls_fieldcat to lt_fieldcat.
  END-OF-DEFINITION.
  DEFINE m_sort.
    ls_sort-tabname = &1.
    ls_sort-fieldname = &2.
    ls_sort-up        = c_x.
    append ls_sort to lt_sort.
  END-OF-DEFINITION.
  DATA:
    ls_layout   TYPE slis_layout_alv,
    ls_keyinfo  TYPE slis_keyinfo_alv,
    ls_sort     TYPE slis_sortinfo_alv,
    lt_sort     TYPE slis_t_sortinfo_alv," Sort table
    ls_fieldcat TYPE slis_fieldcat_alv,
    lt_fieldcat TYPE slis_t_fieldcat_alv." Field catalog
  ls_layout-group_change_edit = c_x.
  ls_layout-colwidth_optimize = c_x.
  ls_layout-zebra             = c_x.
  ls_layout-detail_popup      = c_x.
  ls_layout-get_selinfos      = c_x.
  IF p_expand = c_x.
    ls_layout-expand_fieldname  = 'EXPAND'.
  ENDIF.
Build field catalog and sort table
  m_fieldcat c_gt_vbak 'VBELN' 'VBAK' ''.
  m_fieldcat c_gt_vbak 'KUNNR' 'VBAK' ''.
  m_fieldcat c_gt_vbak 'NETWR' 'VBAK' 'WAERK'.
  m_fieldcat c_gt_vbak 'WAERK' 'VBAK' ''.
  m_fieldcat c_gt_vbak 'ERDAT' 'VBAK' ''.
  m_fieldcat c_gt_vbap 'POSNR' 'VBAP' ''.
  m_fieldcat c_gt_vbap 'MATNR' 'VBAP' ''.
  m_fieldcat c_gt_vbap 'ARKTX' 'VBAP' ''.
  m_fieldcat c_gt_vbap 'NETWR' 'VBAP' 'WAERK'.
  m_fieldcat c_gt_vbap 'WAERK' 'VBAP' ''.
  m_sort c_gt_vbak 'KUNNR'.
  m_sort c_gt_vbap 'NETWR'.
  ls_keyinfo-header01 = 'VBELN'.
  ls_keyinfo-item01 = 'VBELN'.
  ls_keyinfo-item02 = 'POSNR'.
Dipslay Hierarchical list
  CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
    EXPORTING
      i_callback_program      = sy-cprog
      i_callback_user_command = 'USER_COMMAND'
      is_layout               = ls_layout
      it_fieldcat             = lt_fieldcat
      it_sort                 = lt_sort
      i_tabname_header        = c_gt_vbak
      i_tabname_item          = c_gt_vbap
      is_keyinfo              = ls_keyinfo
      i_save                  = 'A'
    TABLES
      t_outtab_header         = gt_vbak
      t_outtab_item           = gt_vbap
    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.                               " F_LIST_DISPLAY
      Form USER_COMMAND                                             *
FORM user_command USING i_ucomm     TYPE sy-ucomm
                        is_selfield TYPE slis_selfield.     "#EC CALLED
  DATA ls_vbak TYPE ty_vbak.
  CASE i_ucomm.
    WHEN '&IC1'.                       " Pick
      CASE is_selfield-tabname.
        WHEN c_gt_vbap.
        WHEN c_gt_vbak.
          READ TABLE gt_vbak INDEX is_selfield-tabindex INTO ls_vbak.
          IF sy-subrc EQ 0.
          Sales order number
            SET PARAMETER ID 'AUN' FIELD ls_vbak-vbeln.
          Display Sales Order
            CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN.
          ENDIF.
      ENDCASE.
  ENDCASE.
ENDFORM.                               " USER_COMMAND

Similar Messages

  • AR Customer statements report Page numbers Reset based on customer number

    Hello,
    In the AR Customer statements report, If I ran the report for multiple customers, page number has to be reset for each customer...
    Group Started like below,
    <?for-each-group:G_STATEMENT;STATEMENT_DATE?><?for-each-group:current-group();SEND_TO_ADDRESS_ID?>

    Hi Kittu,
    I got the answer using @section command.
    Below are the complete syntax in my case.
    Form field         --Xml Tag
    If Data Found --<?choose@section:?><?when:count(G_SETUP)!=0?>
    Group G_SETUP  --<?for-each@section:G_SETUP?>
    Group G_STATEMENT --<?for-each-group@section:G_STATEMENT;STATEMENT_DATE?><?for-each-group@section:current-group();SEND_TO_ADDRESS_ID?>
    Its working for me.
    Let me know if you required more information.
    Regards,
    Dasarath

  • Financial Statements report - F.01

    Hello,
    I posted this question to the abap forum, but maybe you can help me better. As you know, the account amounts from the financial statement report come from financial documents. And when you create a financial document  you specify a document type(vendor invoice, vendor payment and many others). What i need to do is modify the report to show only amounts from certain types, not all types. For doing that, i need to know if there is a connection between the financial statement and the documents types. I searched the code of the report and i did not find anything relevant.
    Maybe you met this requirement before and talked with an abaper. If that is the case, maybe you can give me a suggestion.
    Thank you very much,
    Efren

    F.01 is build with the following tables.  You may go through each table to see if they are document type specific.  I would cautio if F.01 is the right report for you/your client.
    TABLES:   t001,  ska1,  bhdgd,
              t011,  skat,
              t011t, skb1,
              t009,  skc1a,
              t004,
              t009b,
              t009y.
    TABLES:   rfsdo.
    TABLES:   tgsb.
    TABLES:   fimsg.
    TABLES:   faglfreesel.

  • Document Date on Outgoing Payment/Statement Report PLD

    Hi,
    Is there a way to display the Document Date of the paid/outstanding invoice on the print layout for Remittances (Outgoing Payment) and Customer Statement (Ageing - Customer Statement Report)? At the moment it's only the Posting Date for the Outgoing Payment and Posting Date + Due Date for the Statement Report but would be great to have the Document Date too.
    Regards,
    Nat

    Hi Natalia,
    for adding the Document date to the Outgoing payments form you can add field via modification of the print layout. For example OVTG.Tax Date should represent the document date.
    I would like to know what is the scenario for the document date to be visible on the Aging report.
    Best Regards,
    Martin Slavik
    SAP Business One Solution Manager

  • New GL and Impact on BI Financial statement reports

    Dear All,
    I would like to know if and how the finacial statment reports  would be affected by using the new GL extractor 0FI_GL_14. New GL is being implemented on ECC,  hence the change in extractor in BI.
    Is there a standard cube that can be used for Financial statement reports(Balance Sheet comparision, BS by PC,P&L reporting by PC) for New GL.
    Currently we are getting our financial statement reports out of a Virtual cube which is based on a function module Module:RS_BCT_FIGL_DATA_GET_VC1.
    *Our current extractor for FIGL is 0FI_GL_4 .
    Appreciate your Input on this .

    Hi,
    You will find all the details here:
    http://help.sap.com/saphelp_nw70/helpdata/EN/49/5700570223413085021a8b4ef1087a/frameset.htm
    -Mayuri

  • Sales tax by state report in BI

    Hi Gurus,
    I have a requirement to design sales tax by state report in BI.
    Could you pls suggest how i need to approach.
    What is the standard datasource and standard DSO and cube.
    Do we have any standard sales tax by state standard query in BI.
    Regards
    Parnith

    Hi,
    I am not sure i got your question correctly (as you have not provided lot of information, its a generic question), so my answer will be, you can use the Datasource 2LIS_13_VDITM, which has the field MWSBP(tax), which brings tax information to BW and the same datasource also has Division, Sales District ,Sales Office etc, which can be used to derive State and you can stage this data in a billing item DSO (go to RSA1-- Business Content--> Datasources (select 2LIS_13_VDITM) and change grouping to Dataflow after and you will information about staging this datasource in BW (DSO, Cubes etc ).
    Cheers,
    CK

  • Income Statement Report from Flat File

    Dear Gurus,
    I'm in the process of creating an INCOME STATEMENT report from Flat File as for my learning purpose , can you please help me where to start in order to create the Flat File and how many KEY FIGURES & CHAR do I need.
    Thanks,
    -Neha

    Hi,
      As this is for your learning purpose, create the fields as per your requirement. Then create info objects of the same type in BI. Then you try to load the info cube from the flat file.
    for example: if my req is to have 4 fields like student name, marks, grade as my info objects. i have create the same fields in the flat file.
    Note: you can create the flat file in excel and save it as csv format.
    Edited by: arthishri on Sep 20, 2010 1:46 PM

  • Customer statement report 2007 A PL37

    Good day
    I need to do a layout on PLD on the customer statement report for a client, but they do not want a full record of debits and credits to show on this statement. They only want the open and unreconciled transactions to show. How do I achieve this in the PLD?
    Regards

    Izak,
    Please see this link with respect to reporting questions ...
    All about Printing & Reporting using ALD, PLD, XLR and Crystal Reports
    Eddy

  • Customer Statement Report without BP Ref No.

    Hi,
    we are using SAP B1 2005 B PL35 with MSSQL 2005.
    If you :
    - run the Sales AR/Sales Reports/Customer Receivables Ageing
    - choose to run the report by Journal Postings
    - run the standard SBO report Customer Statement Report (one page per
    customer/Collection report
    The Cust ref No. (BP ref No) is not displayed.
    It seems that the BP Ref No is displayed only if the "Sales Documents" tab is selected according to the note 885071.
    Does anyone has a workaround to display this information in the report ?
    The reason is, all our customers need this information in order to match their orders with the invoices.
    Thank you
    Best regards
    Cyril

    Hi Cyril,
    Try to export the report to MS-Word and then
    take print preview/print using my previous reply.
    It showing Customer Reference Number.
    I tested it.
    Hope above answer solves problem.
    Jeyakanthan

  • Customer Statement Report

    Hi All,
    When running customer statement report in AR its not displaying any data.Instead of that showing blank output. As per the report parameters it must be shown output datas.
    If anyone give a solution to view output data in Customer Statement report then it will be more useful.
    Version & Files Used:
    Apps R12.1.1
    Report Type = XML
    RTF Name = ARICUSTMT_DTL_en_US.rtf
    Data Template Name = ARSTMTRPT.xml

    Hi pradeep,
    Below are the same code which i am getting for customer statement report.
    First LIST_G_STATEMENT is for GBP currency statement details
    and second LIST_G_STATEMENT is for USD currency statement details.
    How do we achive this to display each currecy statement in separate page.
    please help on this..i have nt come accross this kind of issue.
    1.) <LIST_G_STATEMENT>
    <G_STATEMENT>
              <CUSTOMER_ID>1057</CUSTOMER_ID>
    <SITE_USE_ID>1067</SITE_USE_ID>
              <STATEMENT_TYPE>BILL_TO</STATEMENT_TYPE>
              <TOTAL_AMOUNT_DUE>300</TOTAL_AMOUNT_DUE>
    <CURRENCY_CODE>GBP</CURRENCY_CODE>
    <LIST_G_AMOUNT_DUE>
    <G_AMOUNT_DUE>
              <SORT_TRX_DATE>25-SEP-07</SORT_TRX_DATE>
    <SORT_INVOICE_NUMBER>2030</SORT_INVOICE_NUMBER>
    <TRX_SEQUENCE>2024</TRX_SEQUENCE>
    <LIST_G_LINE_CLUSTER>
         <G_LINE_CLUSTER>
         <INVOICE_NUMBER>2030</INVOICE_NUMBER>
    <TRX_DATE>25-SEP-07</TRX_DATE>
    <TRANSACTION>Invoice</TRANSACTION>
    <DUE_DATE>30-NOV-07</DUE_DATE>
    <AMOUNT_DUE>300</AMOUNT_DUE>
    <TRX_AMOUNT>300</TRX_AMOUNT>
    </G_LINE_CLUSTER>
    </LIST_G_LINE_CLUSTER>
    </G_AMOUNT_DUE>
    </LIST_G_AMOUNT_DUE>
    </G_STATEMENT>
    2.) <LIST_G_STATEMENT>
    <G_STATEMENT>
              <CUSTOMER_ID>1057</CUSTOMER_ID>
    <SITE_USE_ID>1067</SITE_USE_ID>
              <STATEMENT_TYPE>BILL_TO</STATEMENT_TYPE>
              <TOTAL_AMOUNT_DUE>300</TOTAL_AMOUNT_DUE>
    <CURRENCY_CODE>GBP</CURRENCY_CODE>
    <LIST_G_AMOUNT_DUE>
    <G_AMOUNT_DUE>
              <SORT_TRX_DATE>25-SEP-07</SORT_TRX_DATE>
    <SORT_INVOICE_NUMBER>2030</SORT_INVOICE_NUMBER>
    <TRX_SEQUENCE>2024</TRX_SEQUENCE>
    <LIST_G_LINE_CLUSTER>
         <G_LINE_CLUSTER>
         <INVOICE_NUMBER>2030</INVOICE_NUMBER>
    <TRX_DATE>25-SEP-07</TRX_DATE>
    <TRANSACTION>Invoice</TRANSACTION>
    <DUE_DATE>30-NOV-07</DUE_DATE>
    <AMOUNT_DUE>300</AMOUNT_DUE>
    <TRX_AMOUNT>300</TRX_AMOUNT>
    </G_LINE_CLUSTER>
    </LIST_G_LINE_CLUSTER>
    </G_AMOUNT_DUE>
    </LIST_G_AMOUNT_DUE>
    </G_STATEMENT>
    with regards
    Ram

  • Customer Statement Report- Issue

    Hi guys,
    I am working on customer statement report in xmlp.
    client requirement is to view the data as "SEPERATE SHEET SHALL BE PRINTED FOR EACH INVOICING CURRENCY.
    I have G_Statement for header and G_statement_lines for main body lines.
    For different currency like USD, GBP, I am able to get separate tags for G_statement and G_statement_lines based on the currency.
    How do we acheive this in RTF template to display the datas based on each invoice currency?..
    For e.g If USD currency, I need to display the datas in separate sheet.
    If GBP currency, I need to display the datas in separate sheet.
    welcoming your advice.
    with regards
    Ram

    Hi pradeep,
    Below are the same code which i am getting for customer statement report.
    First LIST_G_STATEMENT is for GBP currency statement details
    and second LIST_G_STATEMENT is for USD currency statement details.
    How do we achive this to display each currecy statement in separate page.
    please help on this..i have nt come accross this kind of issue.
    1.) <LIST_G_STATEMENT>
    <G_STATEMENT>
              <CUSTOMER_ID>1057</CUSTOMER_ID>
    <SITE_USE_ID>1067</SITE_USE_ID>
              <STATEMENT_TYPE>BILL_TO</STATEMENT_TYPE>
              <TOTAL_AMOUNT_DUE>300</TOTAL_AMOUNT_DUE>
    <CURRENCY_CODE>GBP</CURRENCY_CODE>
    <LIST_G_AMOUNT_DUE>
    <G_AMOUNT_DUE>
              <SORT_TRX_DATE>25-SEP-07</SORT_TRX_DATE>
    <SORT_INVOICE_NUMBER>2030</SORT_INVOICE_NUMBER>
    <TRX_SEQUENCE>2024</TRX_SEQUENCE>
    <LIST_G_LINE_CLUSTER>
         <G_LINE_CLUSTER>
         <INVOICE_NUMBER>2030</INVOICE_NUMBER>
    <TRX_DATE>25-SEP-07</TRX_DATE>
    <TRANSACTION>Invoice</TRANSACTION>
    <DUE_DATE>30-NOV-07</DUE_DATE>
    <AMOUNT_DUE>300</AMOUNT_DUE>
    <TRX_AMOUNT>300</TRX_AMOUNT>
    </G_LINE_CLUSTER>
    </LIST_G_LINE_CLUSTER>
    </G_AMOUNT_DUE>
    </LIST_G_AMOUNT_DUE>
    </G_STATEMENT>
    2.) <LIST_G_STATEMENT>
    <G_STATEMENT>
              <CUSTOMER_ID>1057</CUSTOMER_ID>
    <SITE_USE_ID>1067</SITE_USE_ID>
              <STATEMENT_TYPE>BILL_TO</STATEMENT_TYPE>
              <TOTAL_AMOUNT_DUE>300</TOTAL_AMOUNT_DUE>
    <CURRENCY_CODE>GBP</CURRENCY_CODE>
    <LIST_G_AMOUNT_DUE>
    <G_AMOUNT_DUE>
              <SORT_TRX_DATE>25-SEP-07</SORT_TRX_DATE>
    <SORT_INVOICE_NUMBER>2030</SORT_INVOICE_NUMBER>
    <TRX_SEQUENCE>2024</TRX_SEQUENCE>
    <LIST_G_LINE_CLUSTER>
         <G_LINE_CLUSTER>
         <INVOICE_NUMBER>2030</INVOICE_NUMBER>
    <TRX_DATE>25-SEP-07</TRX_DATE>
    <TRANSACTION>Invoice</TRANSACTION>
    <DUE_DATE>30-NOV-07</DUE_DATE>
    <AMOUNT_DUE>300</AMOUNT_DUE>
    <TRX_AMOUNT>300</TRX_AMOUNT>
    </G_LINE_CLUSTER>
    </LIST_G_LINE_CLUSTER>
    </G_AMOUNT_DUE>
    </LIST_G_AMOUNT_DUE>
    </G_STATEMENT>
    with regards
    Ram

  • Wrong result in DMBTR in material statement report

    Hi Gurus,
    I am creating Material Statement Report for that i am getting data from MSEG table. From this table i am taking two fields SALK3 and LBKUM  now division of this two field assigning in DMBTR
    like  WA_MSEGDATA-DMBTR  = ( ( WA_MSEGDATA-SALK3 / WA_MSEGDATA-LBKUM ) * WA_MSEGDATA-MENGE ).
    here  WA_MSEGDATA-SALK3  = 1,533.87   and WA_MSEGDATA-LBKUM = 2,442.000 and WA_MSEGDATA-MENGE = 1.000
    finally in  WA_MSEGDATA-DMBTR = 0.00
    every time i  am getting wrong answer in WA_MSEGDATA-DMBTR  Please Solve me This problem......
    My code is as under.....
    <<post only relevant portions of the code>>
    Edited by: kishan P on Jan 30, 2012 11:27 AM

    HI Mahi,
    As what I understand from your problem, please check sample code it is working fine.
    and take care after decimal how many digits you are looking for if you are using dmbtr type mseg-dmbtr then it will be of curr 13, 2 . you may check how many digits you require after decimal accordingly you define your data type for dmbtr.
    types: begin of ty_test,
           lv_salk3 type mseg-salk3 ,
           lv_lbkum type mseg-lbkum ,
           lv_menge type mseg-menge ,
           lv_dmbtr type mseg-dmbtr ,
          end of ty_test.
    data : it_test type table of ty_test,
           wa_test like line of it_test.
    select menge lbkum salk3 from mseg into table
        it_test up to 10 rows.
    delete it_test where lv_lbkum = '0.000'.
        loop at it_test into wa_test.
          wa_test-lv_dmbtr = ( wa_test-lv_salk3 / wa_test-lv_lbkum ) * wa_test-lv_menge.
          modify it_test from wa_test transporting lv_dmbtr.
        endloop.
        if sy-subrc = 0.
        endif.

  • Calculate the day from posting day in Customer Statement Report PLD

    Hi All,
    I do try to copy the PLD of Customer Statement Report to make modify. I try to calculate the how many day from the posting date until today. What is the formula and operation for this calculation?
    Also I found out that the posting on PLD is free text. How to get a real value from PLD? Any idea on this?

    Greetings,
    You can use a formula field to calculate the date diffrence between the posting date and the system / server date. But because the date value shows up with the DB specified type, you can 'chop up' the date into something more manageable, something along the lines of:
    Field_XXX - (CONVERT(CHAR(8),GETDATE(),10))
    where Field_XXX is your posting date field
    * in my hurry to post i realised this was for the Query Manager, let me dig through my implementation folder for the right formula*
    I dont quite understand your last line though:
    "Also I found out that the posting on PLD is free text. How to get a real value from PLD? Any idea on this?"
    Edited by: Davinder Singh on Mar 27, 2008 3:46 PM

  • Income statement report ????

    Hello all,
    I am working on getting an income statement report...
    My revenue elements are coming from table GLT0 and the expense accounts are coming from COEP table... So i am using the 0fi_gl_6 DS and CO_OM_CO_9 DS for the report...
    The KF in the FIGL DS is cumulative balance and in CO_OM_CO_9 is amount...
    If you look at the bex query report...when I'm defining the columns I have to restrict the KF to only one KF...but here i need to get data from 2 KF's , *** balance for revenue elements and Amount for expense elements ??
    Any solutions for this ???

    Question:  In developing an income statement, why are your revenues being developed via multiple datasources?  You should be able to use the GL ds to deliver all necessary data. 
    The revenue postings should be represented via the "revenue" gl accounts, and the expense postings should be represented via the "expense" gl accounts. 
    If your R/3 FI team has configured the Financial stmt version (R/3 GL account hierarchy), you should be able to extract it into BW using the standard ds's.
    Thereafter, you can use keyfigure 0BALANCE (for cumulative balance) and 0SALES (for period activity).
    Please see the help documentation for GL Business Content for more info: http://help.sap.com/saphelp_nw04/helpdata/en/57/dd153c4eb5d82ce10000000a114084/frameset.htm
    Also, income statements can also be performed using Profit Center Accounting (PCA) Business content: http://help.sap.com/saphelp_nw04s/helpdata/en/7a/c3143c26b8bc00e10000000a114084/frameset.htm
    You may find it helpful to review the business content delivered within these areas as a starting point.
    Rod

  • 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.

Maybe you are looking for

  • Outlook doesn't want to connect with OSX Server on 2 out of 3 clients

    I have three computers on which I have installed Outlook 2011.  All three are running Mavericks.  On one of them, a MacBook air, I have established an outlook account connecting to my OSX server with no problems.  On the other two computers when I se

  • Upload file with iframe loos session user and session id in wwv_flow_files

    Hello every one, hope someone could help us with this problem. What we are trying to do is to upload a file from a jquery dialog in a appex page by redirecting the POST action of the wwvFlowForm to the iframe. *1. In the javascript there is the funct

  • Compare Dates and select the max date ?

    Hello, I am trying to write a script and will compare the dates in " eff_startdt" and give me the lastest date at the outcome. I have data that some service locations have more than one contract date and I need to get the latest dated conract dates t

  • Mail won't send after Lion upgrade and AT&T won't help

    I upgraded my new MBP to Lion and now I can't send mail if I'm on my network at home. After looking at other threads (like this one: https://discussions.apple.com/thread/3192956) and based on the symptoms I'm having, I think the problem is likely an

  • Unable to set Flash Player Settings (Windows)

    How to resolve problems with Flash Player Settings; either unable to change anything on the Settings panel, or new settings won't save: close all browser windows open Windows Explorer in the address bar type %appdata%\Adobe delete the 'Flash Player'