Problem in calculating opeing and closing balance in fi report

Hi all,
I am developing customised FBL3N report as per our client requirement.I searched standard function module for calculating opeing balance for given gl account but didn't find it. so, for calculating opening balance we are using following logic.
SELECT
              A~BUKRS
              A~HKONT
              A~AUGDT
              A~AUGBL
              A~ZUONR
              A~GJAHR
              A~BELNR
              A~BUZEI
              A~BUDAT
              A~BLDAT
              A~WAERS
              A~XBLNR
              A~BLART
              A~SHKZG
              A~DMBTR
              A~WRBTR
              A~SGTXT
                               FROM BSIS AS A INNER JOIN SKA1 AS B
                               ON AHKONT = BSAKNR
                               INTO TABLE IT_BSIS1
                               WHERE A~BUKRS IN SO_BUKRS
                               AND   A~HKONT IN SO_HKONT
                               AND   A~BUDAT < SO_BUDAT-LOW
                               AND   A~BLART IN SO_BLART
                               AND   A~GSBER IN SO_GSBER
                               AND   B~KTOKS IN SO_KTOKS.
I am using following code for getting accounting documents for given gl account.
SELECT
           A~BUKRS
           A~HKONT
           A~AUGDT
           A~AUGBL
           A~ZUONR
           A~GJAHR
           A~BELNR
           A~BUZEI
           A~BUDAT
           A~BLDAT
           A~WAERS
           A~XBLNR
           A~BLART
           A~SHKZG
           A~DMBTR
           A~WRBTR
           A~SGTXT
                   FROM BSIS AS A INNER JOIN SKA1 AS B
                   ON AHKONT = BSAKNR
                   INTO TABLE IT_BSIS
                   WHERE A~BUKRS IN SO_BUKRS
                   AND   A~HKONT IN SO_HKONT
                   AND   A~BUDAT IN SO_BUDAT
                   AND   A~BLART IN SO_BLART
                   AND   A~GSBER IN SO_GSBER
                   AND   B~KTOKS IN SO_KTOKS.
For closing balance I am doing sum of opening balance and amounts of accounting documents for given gl account.
the problem we are facing is they want output in following format.I am not able to club all this data as per desired output.
please help me to achieve this.
01.06.2011     01.06.2011     Op.Bal.          0835810021     0.00     13,258.00     0.00     13,258.00
30.05.2011     03.06.2011     0008000005     001     0835810021     24,500.00     0.00     24,500.00     0.00
               0          0.00     25,000.00-     0.00     25,000.00-
               003          500.00     0.00     500.00     0.00
01.06.2011     01.06.2011     Op.Bal.          0835810021     0.00     13,258.00     0.00     13,258.00
30.05.2011     03.06.2011     0030000072     001     0835810021     72,141.72-     0.00     72,141.72-     0.00
               0          0.00     73,614.00     0.00     73,614.00
               003          1,472.28-     0.00     1,472.28-     0.00
01.06.2011     01.06.2011     Op.Bal.          0835810021     0.00     13,258.00     0.00     13,258.00
04.06.2011     04.06.2011     0030000084     001     0835810021     25,000.00-     0.00     25,000.00-     0.00
               0          0.00     24,038.46     0.00     24,038.46
               003          961.54     0.00     961.54     0.00
01.06.2011     01.06.2011     Op.Bal.          0835810021     0.00     13,258.00     0.00     13,258.00
23.06.2011     23.06.2011     0012000089     0     0835810021     0.00     10,000.00     0.00     10,000.00
               002          10,000.00-     0.00     10,000.00-     0.00
30.06.2011     30.06.2011     Cl.Bal.     999     0835810021     0.00     82,652.46     0.00     82,652.46
Thanks in advance.
Regatds,
Sheela Patil
Edited by: Sheela Patil on Nov 1, 2011 8:42 AM

Hi,
As far as i know, you must be getting all required data to be displayed in an internal table.
What you need to do is just loop on it and use WRITE statement appropriately.
Please see sample code below : This code is adding 1,2,3.... no before data in work area.. simily, you can add Opn Bal and Cl Bal etc appropriately.
REPORT  ZTEST_RAHUL.
DATA : i_no TYPE n.
TYPES : BEGIN OF t_temp,
        name TYPE char20,
        roll TYPE numc10,
        END OF t_temp.
DATA : i_temp TYPE STANDARD TABLE OF t_temp,
       wa_temp LIKE LINE OF i_temp.
CLEAR wa_temp.
wa_temp-name = 'Rahul'.
wa_temp-roll = 26.
APPEND wa_temp TO i_temp.
CLEAR wa_temp.
wa_temp-name = 'Mahajan'.
wa_temp-roll = 27.
APPEND wa_temp TO i_temp.
i_no = '1'.
LOOP AT i_temp INTO wa_temp.
  WRITE : i_no , ',' , wa_temp.
   NEW-LINE.
  i_no = i_no + 1.
ENDLOOP.
I know this may not be favourite answer to your question but can be used.
Also, there is 1 more way to write a custom report and that is by writting a Wrapper report which will be just copying the selection screen from STANDARD CODE and then submitting standard code from wrapper code and return back.
I hope this will help you.
Regards,
Rahul Mahajan

Similar Messages

  • Opeing and closing balance report for GL account

    i want opeing balance by taking sum of tsl01 ,tsl02.tsl03 up to tsl16 based on posting period abd before that i have to check two internal tables.out of two ,first contains data from table faglflext and second internal table contains the merge data of bkpf and bseg table and if second table contain the gl account no. which is not present in 1st internal table then i have to delete it from second internal table..here is my code ..pls tel where m wrong or whethe rm going correct..thanks ...
    <removed by moderator>
    Moderator message: please post only relevant code parts, your posts must contain less than 5000 characters to preserve readable formatting.
    Edited by: Thomas Zloch on Aug 24, 2011 3:25 PM

    Hi,
    As far as i know, you must be getting all required data to be displayed in an internal table.
    What you need to do is just loop on it and use WRITE statement appropriately.
    Please see sample code below : This code is adding 1,2,3.... no before data in work area.. simily, you can add Opn Bal and Cl Bal etc appropriately.
    REPORT  ZTEST_RAHUL.
    DATA : i_no TYPE n.
    TYPES : BEGIN OF t_temp,
            name TYPE char20,
            roll TYPE numc10,
            END OF t_temp.
    DATA : i_temp TYPE STANDARD TABLE OF t_temp,
           wa_temp LIKE LINE OF i_temp.
    CLEAR wa_temp.
    wa_temp-name = 'Rahul'.
    wa_temp-roll = 26.
    APPEND wa_temp TO i_temp.
    CLEAR wa_temp.
    wa_temp-name = 'Mahajan'.
    wa_temp-roll = 27.
    APPEND wa_temp TO i_temp.
    i_no = '1'.
    LOOP AT i_temp INTO wa_temp.
      WRITE : i_no , ',' , wa_temp.
       NEW-LINE.
      i_no = i_no + 1.
    ENDLOOP.
    I know this may not be favourite answer to your question but can be used.
    Also, there is 1 more way to write a custom report and that is by writting a Wrapper report which will be just copying the selection screen from STANDARD CODE and then submitting standard code from wrapper code and return back.
    I hope this will help you.
    Regards,
    Rahul Mahajan

  • Opening Balance and closing balance

    Dear All,
                 Can i create a calculated field for ledger opening balance and closing balance. we are using  epicor. I dont know the exact table which captures opening balance and closing balance, where as i got credit balances and debit balances for the segments, i could not find opening and closing balances in this table. table name is GLjrntdtl . Any ideas on this subject please.
    Thanks & Regards,
    Akram

    hi Akram,
    this is a question that you may wish to ask at the epicor forums
    -jamie

  • Opening balance and closing balances for discounts?

    Hi all,
    I have a typical sceanario where in
    opening balance for discounts 10,000 (balance of last month)
    actual discounts  from the sales order 5,000
    manual upload is   from flat file            2,000
    closing balance is 7,000 (which is opening balance + manual upload - actual discounts)
    opening and closing balance needs to be calculated, how to calculate nor handle this on every month?
    level of granularity of the data is
    sku, month, rebate category and rebate amount?
    Thanks

    Hi Pooja,
    can you please let us know few things about your report requirements
    What is the extractor you are using?
    What are the KFs ?
    what are the selection parameters that you want to enter at the reporting level?
    is it the report related to FI AR. do you want to display the values based on the customer -->profitcenter?
    Bcoz we had a same requirement where our requirement was global recievables aging report in which the report need to display opening bal, sales,adjustment,colelction and closing balance and the aging values.
    here what we did is changed the modeling of the DSO and infocube.
    we had used non-cumulative KF in order to calculate closing balance and from that derived opening balance and again create a new formula to get the closing balance.
    if you can be specific with your requirement hope can help you with your report.

  • Opening and closing balance between 2 dates

    hi.
    i am facing a problem while fetching the opening and closing balance for a particular G/L account.
    In my  program  i am entering G/L account for a date range i.e, between two dates and i want opening and closing balance for these 2 date ranges.
    So, please tell me is there any function module to fetch opening and closing balance between two dates.
    Regards,
    ROHINI.K.

    Hi Rohini,
                 Check this FM :   BAPI_GL_GETGLACCPERIODBALANCES.
    If we use this functional module, we will get opening and closing balance of corresponding G/L Acc.
    (e.g)
    CALL FUNCTION 'BAPI_GL_GETGLACCPERIODBALANCES'
        EXPORTING
          companycode                   =  '1000'
          glacct                              = '0000548101'
          fiscalyear                         = '2007'    
         currencytype                      = '10'
       IMPORTING
    BALANCE_CARRIED_FORWARD       =  gs_bal-balance
         RETURN                                        =  v_return
        TABLES
          account_balances                            = gt_bal.

  • Trying to get the Opening and Closing Balance, 0TOTALSTCK and 0VALSTCKVAL

    Hi Experts, Good Day.
    I am developing a query for Stock Balances, Using Custom cube created with copy from 0ic_c03.
    I am trying to get the Opening and Closing Balance, based on Non-Cumulative KF - 0TOTALSTCK and 0VALSTCKVAL.
    Both The KF's Behaviour for Exception Aggregat. = Last Value
    I am using VARIABLE OFFSET as -1 to get Opening Balance, and just restriction for Closing Balance based on 0CALMONTH
    Unfortunately i am getting data for the periods which does not have data in my Cube. It is taking the total value as closing balance for the periods which we don't have transaction in the cube.
    For Ex. I have data for 09.2010 & 10.2010 a particular material, when i enter 08.2010 as input i am getting the total value of the material.
    I hope you understand the problem and solution soon.
    I will give you more explanation if needed.
    Thanks in Advance....
    Have a great Day Ahead.....
    GopalN

    Hi GopaIN,
    can you explain us process you have done about initialization of data (2LIS_03_BX, cube compression)? it seams like there was data before 09.2010 and you load it with 2LIS_03_BX data source. That data is not in cube, but just used for update markers.
    Edited by: Sasa Todorovic on Mar 25, 2011 9:48 AM

  • How to calculate opening and closing balance for period

    Hi all,
    i have to find out opening and closing balance.
    the table structure of temporary table is
    select * from hwcn_xn_fa_report_temp1 where asset_id=10029400
    PERIOD_COUNTER CST_OP_BAL CST_ADDITION CST_TRANSFER CST_DISPOSAL COST_CLOSING_BALANCE
    24108 0 0 0
    24109 12000
    24110 0 0 0
    24111 0 0 0
    in this table cst_op_balnce and cost_closing_balace is null
    i have display cost_op_bal and cost_closing_balnce
    cost_closing_balance=cst_op_bal+cst_addition+cst_transfer+cst_disposal
    for period 2408 op_balnce=0 closing_bal=0
    for period 2409 op_balnce=0 closing_balce=1200
    for period 2410 op_bal=1200 closing_bal=1200
    closing balance of dec will be opening bal of jan
    thanks and regards
    Edited by: user10664276 on Apr 19, 2009 11:08 PM
    Edited by: user10664276 on Apr 19, 2009 11:13 PM

    Hi,
    user11118871 wrote:
    Can you explain what that is? Thank you if you have one example.
    ROWS BETWEEN  UNBOUNDED PRECEDING AND 1 PRECEDING
    When you use the analytic SUM (c) function, then, on each row, it returns the values of column (or expression) c from several rows in the result set added together.
    Which rows? That depends.
    If the analytic clause (the part in parentheses after OVER) does not include ORDER BY, then it is all rows.
    If the analytic clause has an ORDER BY clause, but no windowing clause (that is, ROWS BETWEEN ... or RANGE BETWEEN ...), then the rows included in the sum are all rows up to and including the row where the function is being called (as sorted by the analytic ORDER BY).
    If the analytic cluase has both ORDER BY and a windowing clause "ROWS BETWEEN x PRECEDING AND y PRECEDING", then the rows included in the sum are the rows from x to y rows before the one where the function is called.
    Do some experiments with different values of x and y.
    First, create a table like the one in the problem above, but simplified a little.
    CREATE TABLE     test_sum
    (      period     NUMBER
    ,      new_amt     NUMBER
    INSERT INTO test_sum (period, new_amt) VALUES (24108,     1);
    INSERT INTO test_sum (period, new_amt) VALUES (24109,     4);
    INSERT INTO test_sum (period, new_amt) VALUES (24110,     2);
    INSERT INTO test_sum (period, new_amt) VALUES (24111,     8);
    INSERT INTO test_sum (period, new_amt) VALUES (25001,     32);
    INSERT INTO test_sum (period, new_amt) VALUES (25002,     16);
    COMMIT;The original problem above used names that were meaningful for its application, and columns that have nothing to do with the SUM function. Let's simplify the former and lose the latter.
    That problem involved the SUM of three columns added together. Since we just want to understand how the windowing clause works, let's simplify that to one column.
    With these simplifications, my original query is:
    SELECT       period
    ,       new_amt     
    ,       SUM (new_amt) OVER ( ORDER BY          period
                                         ROWS BETWEEN  UNBOUNDED PRECEDING
                                 AND          1            PRECEDING
                        ) AS opening_balance
    ,       SUM (new_amt) OVER ( ORDER BY          period
                        ) AS closing_balance
    FROM       test_sum
    ORDER BY  period;Given the data above, it produces these results:
    .   PERIOD    NEW_AMT OPENING_BALANCE CLOSING_BALANCE
         24108          1                               1
         24109          4               1               5
         24110          2               5               7
         24111          8               7              15
         25001         32              15              47
         25002         16              47              63So, for example, on the row where period=24110,
    opening_balance=5, which is the total of new_amt from all rows up to but not including that row: 5=1+4, and
    closing_balance=7, which is the total of new_amt from all rows up to and including that row: 7=1+4+2.
    To really understand how the windowing clause works, do some experiments. Change the definition of opening_balance to include " BETWEEN x PRECEDING AND y PRECEDING". You'll find that:
    (a) "UNBOUNDED PRECEDING" means the same as "n PRECEDING", where n is greater than the number of rows in your result set.
    (b) "CURRENT ROW" means the same as "0 PRECEDING"
    (c) x must be greater than or equal to y
    (d) neither x nor y can be negative (but you can use "FOLLOWING" instead of "PRECEDING" to get the same effect).
    For more, see the introduction to "Analytic Functions" in the [SQL Language manual|http://download.oracle.com/docs/cd/B28359_01/server.111/b28286/functions001.htm#sthref972]
    When you're finished, don't forget to
    DROP TABLE     test_sum;

  • FBCJ-Opening and Closing balance do not appear in Language Hungary

    *Hello Friends*
    *I am getting a typical problem, as when I see the cash balance in FBCJ with language English, both opening and closing balance are proper, but when I login with Language Hungary(HU) both opening and closing balance disappears and is totally blank. Kindly facilitate me to get the solution*
    *Thanks you in advance*
    *Best Regards*
    *Prashant S*

    Dear
    Thanks for the reply
    The default log in language is DE (German). I agree with you if the problem is with description, but the problem is with amount in opening and closing balance and description is proper, so what is the relevance with support package to do with amount.
    Please facilitate and reply
    Best Regards
    Prashant S

  • Open and closing balances std report

    Dear All,
    please suggest me open and closing balances std report and can i suggest my user below t.code for viewing open and closing balnces for India scenarion T.code:J3RFLVMOBVED
    Regards
    Gopal.S

    hi
    kindly chk MB5B it will fullfill your requirement
    regards
    praveen.k

  • Opening and Closing balance in FBL3N?

    Hi All,
    In other ERP systems, if you browse GL Account, i.e. FBL3N in SAP, you get the list of documents within specified period but in other systems you also get the OPENING balance as well as CLOSING balance and the current postings are in between them. Is there any standard report or report painter is to be used for such requirement.
    Balances can be checked through FS10N and S_ALR_87012301 etc. but requirement is to get the list of documents with opening and closing balance in beginning and end of the report. The best example is of Cash Journal (Txn FBCJ)
    Thanks

    Thank you Will,
    Yes, actually if other system provide such functionality then SAP should be providing that. I searched within table TSTC for such transaction but unable to get. Accountants requirement is when they execute FBL3N within specified period, the cummulative opening balance and closing balance should be provided with report.
    Thanks for your answer!
    Regards,
    Nayab

  • Opening and closing balance logic

    How to get opening and closing balances for a material and chapter-id for tarif-wise report for sales and captive consumption...
    Edited by: vijetasap on Apr 13, 2009 2:25 PM

    Hi Vijeta...
    Try posting this question related to the functional domain forum of your requirement.. you might have more luck there..

  • Opening Balances and Closing Balance of customer

    Hi,
    Does SAP provide any standard customer account statement for Opening Balances and Closing Balance for specific date range have given in selection screen?
    The statement also contains reference number, order, and Delivery number.
    Note: FBL5N Transaction code will not sufficient for the requirement, so looking for any other transaction code / report provided by SAP already for it.
    Thanks in advance,
    Shwetha

    Hi,
    There are several standard reports which could be easily accessed through the menu (Accounts Receivable - Information systems). If none of these reports does not suit your requirement, you have to develop your own.
    Regards,
    Eli

  • GL a/c opening and closing balances

    Hi All,
    Below is my selection screen:
    select-options : s_bukrs for bkpf-bukrs obligatory.
    parameter      :  p_gjahr like bkpf-gjahr obligatory.
    select-options : s_budat for bkpf-budat,
                           s_monat for bkpf-monat,
                           s_hkont for bseg-hkont.
    I am displaying the data from tables BKPF, BSEG, KNA1-NAME1, LFA1-NAME1, SKAT-TXT50. I have to fetch Opening and Closing balances for GL a/c's. I am fetching data from table GLT0-HSLVT(opening balance). But unable to get the data for closing balance based on the period given on the selection screen. In my report I am looping on table it_bseg to populate the final internal table. How to get the closing balances's total based on the input.
    Please help me.
    Thanks,
    Haritha

    Hello Haritha,
                        Try this code by building a function module. This would cover both opening and closing balance.
    FUNCTION ZGL_OPENING_CLOSING_BAL_KEYDAT.
    *"*"Local Interface:
    *"  IMPORTING
    *"     REFERENCE(COMP) TYPE  BKPF-BUKRS
    *"     REFERENCE(DATE) TYPE  BKPF-BUDAT
    *"     REFERENCE(ACCT) TYPE  BSEG-HKONT
    *"  EXPORTING
    *"     REFERENCE(BALANCE) TYPE  BSEG-DMBTR
    DATA : COMPANYCODEID  LIKE  BAPI0002_2-COMP_CODE     ,
    POSTING_DATE   LIKE  BAPI0002_4-POSTING_DATE  ,
    FISCAL_YEAR    LIKE  BAPI0002_4-FISCAL_YEAR   ,
    FISCAL_PERIOD  LIKE  BAPI0002_4-FISCAL_PERIOD .
    DATA : ACCOUNT_BALANCES  TYPE TABLE OF BAPI3006_4 WITH HEADER LINE.
    DATA : BAL TYPE BSEG-DMBTR.
    DATA : IV_DATE  TYPE  D   ,
    EV_MONTH_BEGIN_DATE  TYPE  D,
    EV_MONTH_END_DATE  TYPE  D .
    DATA : COMPANYCODE  LIKE  BAPI3006_0-COMP_CODE,
    GLACCT  LIKE  BAPI3006_0-GL_ACCOUNT ,
    FISCALYEAR  LIKE  BAPI3006_4-FISC_YEAR,
    CURRENCYTYPE  LIKE  BAPI3006_5-CURR_TYPE VALUE 10.
    DATA : IT_BKPF TYPE TABLE OF BKPF WITH HEADER LINE.
    DATA : BEGIN OF IT_BSEG OCCURS 0,
    BELNR TYPE BSEG-BELNR,
    GJAHR TYPE BSEG-GJAHR,
    SHKZG TYPE BSEG-SHKZG  ,
    DMBTR TYPE BSEG-DMBTR,
    END OF IT_BSEG.
    COMPANYCODEID = COMP.
    POSTING_DATE = DATE.
    IV_DATE  = DATE.
    CALL FUNCTION 'HR_JP_MONTH_BEGIN_END_DATE'
    EXPORTING
    IV_DATE             = IV_DATE
    IMPORTING
    EV_MONTH_BEGIN_DATE = EV_MONTH_BEGIN_DATE
    EV_MONTH_END_DATE   = EV_MONTH_END_DATE.
    CALL FUNCTION 'BAPI_COMPANYCODE_GET_PERIOD'
    EXPORTING
    COMPANYCODEID = COMPANYCODEID
    POSTING_DATE  = POSTING_DATE
    IMPORTING
    FISCAL_YEAR   = FISCAL_YEAR
    FISCAL_PERIOD = FISCAL_PERIOD.
    IF EV_MONTH_END_DATE NE DATE.
    IF FISCAL_PERIOD = 1.
    FISCAL_PERIOD = 12              .
    FISCAL_YEAR = FISCAL_YEAR - 1  .
    ELSE.
    FISCAL_PERIOD =  FISCAL_PERIOD - 1.
    ENDIF.
    ENDIF.
    COMPANYCODE  =  COMP.
    GLACCT  = ACCT.
    FISCALYEAR  = FISCAL_YEAR.
    CALL FUNCTION 'BAPI_GL_ACC_GETPERIODBALANCES'
    EXPORTING
    COMPANYCODE      = COMPANYCODE
    GLACCT           = GLACCT
    FISCALYEAR       = FISCALYEAR
    CURRENCYTYPE     = CURRENCYTYPE
    TABLES
    ACCOUNT_BALANCES = ACCOUNT_BALANCES.
    READ TABLE ACCOUNT_BALANCES  WITH KEY FISC_YEAR = FISCALYEAR FIS_PERIOD = FISCAL_PERIOD.
    IF SY-SUBRC = 0.
    BALANCE =  ACCOUNT_BALANCES-BALANCE.
    ENDIF.
    IF EV_MONTH_END_DATE NE DATE.
    SELECT * FROM BKPF INTO TABLE IT_BKPF WHERE BUKRS = COMP AND BUDAT >= EV_MONTH_BEGIN_DATE
    AND BUDAT <= DATE.
    IF IT_BKPF[] IS NOT INITIAL.
    SELECT BELNR GJAHR SHKZG DMBTR
    FROM BSEG INTO CORRESPONDING FIELDS OF TABLE IT_BSEG
    FOR ALL ENTRIES IN IT_BKPF
    WHERE BELNR = IT_BKPF-BELNR AND GJAHR = IT_BKPF-GJAHR AND HKONT = ACCT AND BUKRS = COMP.
    ENDIF.
    LOOP AT IT_BSEG.
    IF IT_BSEG-SHKZG = 'H'.
    BAL = BAL - IT_BSEG-DMBTR.
    ELSEIF IT_BSEG-SHKZG = 'S'.
    BAL = BAL + IT_BSEG-DMBTR.
    ENDIF.
    ENDLOOP.
    BALANCE = BALANCE + BAL.
    ENDIF.
    ENDFUNCTION.
    Raghav

  • Customer Statement with opening and closing balances

    Dear Forum,
    The users want to generate the Customer Statement with opening and closing balances like the traditional one. The statement now generated gives the list of all open items as on date, but the users want the statement with opening balances as on the date of the begining of the range specified and the closing balance at the end of the period for which the statement is generated. Is there a way to generate the same from the system.
    Thanks for the help.
    Regards,

    Hi,
    SPRO> Financial Accounting (New) > Accounts Receivable and Accounts Payable > Customer Accounts > Line Items > Correspondence > Make and Check Settings for Correspondence
    You can use the program RFKORD10 with correspondance type SAP06 for your company code
    This program prints account statements and open items lists for customers and vendors in letter form. For account statements, all postings between two key dates, as well as the opening and closing balance, are listed.
    Regards,
    Gaurav

  • Opening and closing balances

    Hi sapgurus
    I need a report with similar to MB5B at particular posting date with opening and closing balances but I am unable to download the report to excel the data with MB5B tranasaction.Is there any similar transaction with same output values which can be easily transported to excel from Sap.
    Thanx

    Hi,
    I tested in ECC6.0 and i could able to do so, you try as mentioned below.
    In the output screen of MB5B, goto menu details > click on list > select save > select file > select spreadsheet. Here you can save tthe output in excel format.
    Regards,
    Prabu

Maybe you are looking for

  • Can I open a .pub file in iworks?

    I have been sent some files created in publisher with a .pub extension. Can I open thses in iWorks09?

  • Java Mapping: payload as mail attachment and dynamic file name .

    Hi, I have written this piece of java code. The code includes XPATH for fetching dynamic filename and the copysource( in, out ) to copy the content of payload as mail attchment. The code seems to work fine, when either of the functionality is impleme

  • How can I copy text&image from a website to Apple Pages at once?

    I'm using Apple Pages 9.1, I can't copy text and images to pages at once. When I paste the copy contents to it, it just only shows text. With Safari, this functionality seems normal. I could copy and paste what I want to the pages. What can I do now?

  • [SOLVED] messed up yaourt output (could be due to pacman error)

    Don't know if my yaourt issue is related to this pacman one http://bbs.archlinux.org/viewtopic.php?id=94378 but this issue is fairly new. Now when I run a yaourt -Syu --aur it starts fine but when fetching for AUR updates it starts showing core/extra

  • Drag and drop movies out of Aperture?

    I imported my movies into Aperture and now I can't get them back out.  I tried to drag and drop them to the desktop but it only creates an 'info' file that's only a few kb large.  I want to move about 300 files out of Aperture and into iMovie where I