Report to display total and detail from table GLT0 and FBL3N

hi guys,
we have the requirement to show a report with total amount per GL account from table GLT0 and to as well display the detail from tcode FBL3N ..
shall i use normal report via SE38, if yes, what is the table that stores detail from FBL3N  or does report painter support the above requirement..pls advice

use report SAPF070 as sample
(compare documentation!)
hope that helps
Andreas

Similar Messages

  • Report that  display salary for employee from this year and prvious year

    Hi
    How to do a report that display salary for employee from this year an previous year, my table has from period and two perid?
    Thanks

    You could try something like this but you MUST learn how to post questions! Very few members will help you if you word your question poorly or forget to mention vital imformation!
    select distinct ty.id, ty.emp, ty.sal, ly.sal
    from (select distinct id, userid, sal
    from salary_table
    where id = 123456
    and from_period = '01-JAN-2010'
    and to_period = '31-DEC-2010') LY,
    salary_table TY
    where ty.id = 123456
    and ty.from_period = '01-JAN-2011'
    and ty.to_period = '31-DEC-2011'

  • Report to display proces order details

    Hi Frnds,
      I need to create a report for displaying process order details like process order,  Line (Resource), material, product group,batch and Order movement data (movement type,qty ). I tried to get Item level materials from AFPO..but it contains only header level material.
    Now my question is that in which table can i get order movement data for all header and item level materials.
    I will wait for ur reply..
    Thanks in advace..
    Rgds
    ravindra

    Try with 0PUR_C01 and 0PUR_C03
    Jayasudha

  • Display total dmbtr according to mat type and month wise

    hi all,
    i want to display total dmbtr according to mat type and month wise. like
    month       mat.type  total_dmbtr
    jan 2008   fert           xxxxxxxxxx
    jan 2008   mcfe         yyyyyyyy
    feb 2008  fert  mmmmm

    this is my prog..but am gettin o/p for one month irrespective of material type..
    tables : mseg, mkpf, mara, S031.
    ********************DECLARATION******************************************
    types : begin of ty_mkpf,
            budat type budat,
            mblnr type mblnr,
            end of ty_mkpf.
    TYPES : BEGIN OF TY_S031,
            WERKS TYPE werks_d,
            SPMON TYPE SPMON,
            matnr TYPE matnr,
            END OF TY_S031.
    types : begin of ty_mseg,
            mblnr type mblnr,
            matnr type matnr,
            werks type werks_d,
            menge type menge_d,
            dmbtr type dmbtr,
            bwart type bwart,
            end of ty_mseg.
    types : begin of ty_mara,
            matnr type matnr,
            mtart type mtart,
            end of ty_mara.
    data : it_mkpf type ty_mkpf occurs 0 with header line,
           it_mseg type ty_mseg occurs 0 with header line,
           it_mara type ty_mara occurs 0 with header line,
           IT_S031 TYPE TY_S031 OCCURS 0 WITH HEADER LINE.
          it_final TYPE ty_final OCCURS 0 WITH HEADER LINE.
    data : flag type dmbtr,
           flag1 type dmbtr ,
           flag3 type dmbtr ,
           flag4 type dmbtr,
           flag5 type dmbtr,
           flag6 type dmbtr,
           flag7 type dmbtr,
           f1 type i VALUE 0,
           num_of_loops TYPE i VALUE 0,
           flag2 TYPE spmon.
    **********************************INITIALIZATION***************************
    flag  = 0.
    flag1 = 0.
    flag3 = 0.
    flag4 = 0.
    flag5 = 0.
    flag6 = 0.
    flag7 = 0.
    ******************selection screen*****************************************
    selection-screen begin of block b1 with frame title txt_001.
    select-options : plant for S031-werks,
                     month for S031-SPMON.
                    date for mkpf-budat. "+4(2).
                    MONTH FOR MONTH_NAMES_GET.
    selection-screen end of block b1.
    flag2 = month-low.
    f1 = month-high - month-low.
    if month-high is initial.
      num_of_loops = 1.
    else.
      num_of_loops =  f1 + 1.
    endif.
    start-of-selection.
      perform getdata1.
    *&      Form  get_data
          text
    form getdata1.
    if month-high is INITIAL.
    write : / 'for month  ' COLOR COL_GROUP, flag2 COLOR COL_GROUP.
      Select WERKS SpMON matnr from S031 into corresponding fields of table it_S031
      where SpMON = flag2 AND WERKS IN PLANT.
       loop at IT_S031.
         at first.
            write : /5 'mat_num', 20 'month', 40 'QTY',58'amt',68'movement_type', 85'mat_type'. ",105 'qty remaining'.
            skip.
         endat.
      select single mblnr werks matnr menge dmbtr bwart from mseg into corresponding fields of it_mseg
        where werks = IT_S031-werks and ( bwart = '102' or bwart = '101' or bwart = '601' or bwart = '602' )
          and matnr = it_s031-matnr.
        if it_mseg-bwart = '101'.
          flag = flag + it_mseg-dmbtr.
        elseif it_mseg-bwart = '102'.
          flag1 = flag1 + it_mseg-dmbtr.
        elseif it_mseg-bwart = '601'  .
          flag4 = flag4 + it_mseg-dmbtr.
        elseif it_mseg-bwart = '602'  .
          flag5 = flag5 + it_mseg-dmbtr.
        endif.
        flag3 = flag - flag1. "101-102
        flag6 = flag4 - flag5. "601-602
        select SINGLE matnr mtart from mara into corresponding fields of  it_mara
          where matnr = it_mseg-matnr. " and mtart = 'FERT' .
       loop at it_mara.
          write : / it_mara-matnr,20  IT_S031-SPMON, it_mseg-menge, it_mseg-dmbtr, 70 it_mseg-bwart, 88 it_mara-mtart.
          skip.
        endloop.
      endloop.
      skip 1.
      write : / 'TOTAL QTY RECVD (a = 101-102)      ' , flag3.
      write : / 'TOTAL QTY CONSUMED ( b = 601-602)  ' , flag6.
      flag7 = flag3 - flag6.
      write : / 'QTY REMAINING (a-b)                ' , flag7.
    skip 2.
    flag  = 0.
    flag3 = 0.
    flag4 = 0.
    flag5 = 0.
    flag6 = 0.
    flag7 = 0.
    flag2 = flag2 + 1.
    endif.
      do num_of_loops times.
      if not flag2 gt month-high.
        write : / 'for month  ' COLOR COL_GROUP, flag2 COLOR COL_GROUP.
      Select WERKS SpMON matnr from S031 into corresponding fields of table it_S031
      where SpMON = flag2 AND WERKS IN PLANT.
       loop at IT_S031.
         at first.
            write : /5 'mat_num', 20 'month', 40 'QTY',58'amt',68'movement_type', 85'mat_type'. ",105 'qty remaining'.
            skip.
         endat.
      select single mblnr werks matnr menge dmbtr bwart from mseg into corresponding fields of it_mseg
        where werks = IT_S031-werks and ( bwart = '102' or bwart = '101' or bwart = '601' or bwart = '602' )
          and matnr = it_s031-matnr.
        if it_mseg-bwart = '101'.
          flag = flag + it_mseg-dmbtr.
        elseif it_mseg-bwart = '102'.
          flag1 = flag1 + it_mseg-dmbtr.
        elseif it_mseg-bwart = '601'  .
          flag4 = flag4 + it_mseg-dmbtr.
        elseif it_mseg-bwart = '602'  .
          flag5 = flag5 + it_mseg-dmbtr.
        endif.
        flag3 = flag - flag1. "101-102
        flag6 = flag4 - flag5. "601-602
        select matnr mtart from mara into corresponding fields of table it_mara
          where matnr = it_mseg-matnr. " and mtart = 'FERT' .
        loop at it_mara.
          write : / it_mara-matnr,20  IT_S031-SPMON, it_mseg-menge, it_mseg-dmbtr, 70 it_mseg-bwart, 88 it_mara-mtart.
          skip.
        endloop.
      endloop.
      skip 1.
      write : / 'total recd qty (a = 101-102)       ' , flag3.
      write : / 'total Qty consumed ( b = 601-602)  ' , flag6.
      flag7 = flag3 - flag6.
      write : / 'Qty remaining (a-b)                ' , flag7.
    skip 2.
    flag  = 0. flag3 = 0. flag4 = 0. flag5 = 0. flag6 = 0. flag7 = 0.
    flag2 = flag2 + 1.
    endif.
    enddo.
      endform.                                                    "getdata1

  • Can't copy and paste from table to table

    Just upgraded all my clients to CS 6.5 and now no one can copy and paste from table to table.  It locks up every time.  I have already dumped the program preferences and still can't do it.  This is a HUGE problem with my users.  Any help would be appreciated.  I have a wild mix of users - Mac, Windows XP and Windows 7.  Please help if you can!

    Hi Lisa,
    Thank you for contacting Adobe Support.
    The only possible workaround is that you can select (n-1) cell from a particular row where n are the total number of cells in a particular row.
    Ex- If i have a row with 3 cells so i can only select 2 cells at a time and paste it to the location where i wanted to paste and then manually select the last cell and copy paste the content where required.
    Please let us know in case of any concern.
    Thanks and Regards
    Loveesh Kumar

  • Problem in selecting object currency fields from table COSP and COSS

    Dear All,
    We are facing a issue while creating a virtual DataSource   for CCA plan from tables COSS and COSP.
    The issue is that we are able to activate the view by including the fields value in object currency ( WOG001 - WOG012 ) but not able  to create a DataSource   on the view.
    We are able to include the transaction currency value but as our application requires us to include the object currency fields.
    Error displayed:Invalid extract structure template .This operation failed, because the template structure quantity fields or currency fields, for example, field WOG001 refer to a different table.
    Any tips to resolve this issue would be valuable.
    Thanks in advance
    Rashmi Nair.

    HI,
    Can you see this thread.
    Re: How to display BAPI decimal values into webdynpro!
    Thanks
    nageswar

  • Details from table

    Hi FI Gurus,
    There are two companies A and B both are inter company. Company B has raised PO and GR done  at Company B.  IV also  done by company B as well as company A which supposed not to done by company A.
    My question is how to get details from tables regarding PO,GR and IV with company code or is there any Std. transaction code from which I get these details.
    Thanks in advance.
    Regards,
    Jainp

    Use table EKBE, it stores the PO, the GR, and the IV of the particular PO.

  • Report that display 'Net Pay' by Empl for current and previous period.

    Hi,
    We are looking for a SAP report that display 'Net Pay' by Employee for current and previous period in USA payroll module. If you know of any, pl let me know.
    Thanks in advance,
    Niranjan

    Thanks Archana and Sikindar.
    We knew about this report, however, it gives information one below the other if we run, say for 2 periods, but what we are looking for is something as shown in example below
    Empl #      Empl # Name    Prev Pay period Net Pay        Current Pay period net pay.
    123              XYZ                     $ 1200.00                                 $ 1200.00
    256              ABC                    $  2000.00                                $ 3000.00 
    We want to run for 2 periods at a time and get the results as above. That way, payroll dept can run this report and compare if we are paying too much in current pay, compared to previous pay. This is basically to avoid any typos when they create new pay records in infotype 0008.
    Niranjan

  • Getting "Join in business component definition 'CG Opportunity My Accounts' has source fields that come from tables 'S_OPTY' and 'S_ORG_EXT'(SBL-DAT-00452)" error after upgradating to siebel Open UI 8.1.1.11

    Hello Team,
    We have upgraded from Siebel 8.1.1.3 to Siebel Open UI  8.1.1.11.
    But after up-gradation we are getting the below error in   "My Account Opportunity" View.
    We detected an Error which may have occurred for one or more of the following reasons:
    Join in business component definition 'CG Opportunity My Accounts' has source fields that come from tables 'S_OPTY' and 'S_ORG_EXT'(SBL-DAT-00452).
    Thanks,
    Tirupati Nanda
    Mob:-9742404115

    Hello Team,
    We have upgraded from Siebel 8.1.1.3 to Siebel Open UI  8.1.1.11.
    But after up-gradation we are getting the below error in   "My Account Opportunity" View.
    We detected an Error which may have occurred for one or more of the following reasons:
    Join in business component definition 'CG Opportunity My Accounts' has source fields that come from tables 'S_OPTY' and 'S_ORG_EXT'(SBL-DAT-00452).
    Thanks,
    Tirupati Nanda
    Mob:-9742404115

  • TV display shows USB cable from apple tv and iTunes logo. Otherwise completely unresponsive! what can be done to revive apple tv?

    TV display shows USB cable from apple tv and iTunes logo.
    Otherwise completely unresponsive! what can be done to revive apple tv?

    That is telling that the Apple TV is in recovery mode and needs to be restored. This is done by connecting to iTunes via micro USB.
    Apple TV (2nd and 3rd generation): Restoring your Apple TV - Apple Support

  • Can I create separate folders to save media on my Airport Time Capsule? Issue is I have a 256GB HDD Mac Pro Retina which is almost full. TC will only take backup of my HDD. So where would I save my photos and videos from my iPhone and iPad?

    Can I create separate folders to save media on my Airport Time Capsule? Issue is I have a 256GB HDD Mac Pro Retina which is almost full. TC will only take backup of my HDD. So where would I save my photos and videos from my iPhone and iPad?

    It is a hard one.. laptops with small drives are a pain.
    What you need is a home media server.
    Some people use a PC running itunes for cost.. but that is nothing like as good as using a Mac mini.. they make great little HTPC device.. you can plug in large hard disks and store all your files and media. And share it with the network.. Read up apple's instructions on home sharing.
    https://www.apple.com/au/support/homesharing/
    For cost you can buy a mini from 2011 or 2012.. I would not recommend earlier ones.. the advantage of 2012 is they have USB3 ports. But you will pay more for them.. new mini is not as useful.. they have soldered in memory and you cannot upgrade.. the old mini was the most easily modified mac in the whole range. Uses little power and can be bought for a $300US for a good one second hand.. maybe less.

  • My family and I share the same account of apple. I'm getting phone calls and messages from my mothers and my number and  vice versa. is there anything we can do

    my family and I share the same account of apple. I'm getting phone calls and messages from my mothers and my number and  vice versa. is there anything we can do

    The short solution is to go to Settings > FaceTime > iPhone Cellular Calls OFF.
    However, as Csound points out, you should not really be sharing an Apple ID with anyone. See: How to Stop Sharing an Apple ID.
    (Note that I am affiliated with that site, and some pages contain ads).

  • In Options -- General -- I want the option to "Show my windows and tabs from last time" AND "Show my homepage", but that choice isn't given. When I open a new tab, I'd like to see my iGoogle page, not a blank screen. Hope you can help. D

    In Options --> General --> I want the option to "Show my windows and tabs from last time" '''''AND''''' "Show my homepage", but that choice isn't given. When I open a new tab, I'd like to see my iGoogle page, not a blank screen. Hope you can help. D

    You can middle-click or Ctrl left-click the Home button on the Navigation toolbar to open the Home page in a new tab.
    You can look at one of these extensions:
    * NewTabURL : https://addons.mozilla.org/firefox/addon/newtaburl/
    * New Tab Homepage : https://addons.mozilla.org/firefox/addon/new-tab-homepage/

  • I can no longer send or respond to email from my Firefox browser. I closed and sent from Internet explorer and it works fine. What changed? The only thing different this morning, I downloaded Adobe uprade?

    Question
    I can no longer send or respond to email from my Firefox browser. I closed and sent from Internet explorer and it works fine. What changed? The only thing different this morning, I downloaded Adobe uprade?

    I had this hotmail issue myself a while back. I Googled, scanned MS website, scanned MSN website, visited forums, couldn't figure it out. I tried Firefox and Opera and even changed the Opera mask setting from Opera to Internet Explorer. Nothing worked. My best guess was that I was signing on (with the new MSN Live as opposed to MSN Hotmail - the OLD interface) with the "Remember me on this computer?" box checked. I now make sure it is un-checked (which is not the default) and hotmail lets me in.
    Not exactly sure if that is the real remedy, but thot I'd throw the story your way just in case...

  • Can photos be transferred back and forth from/to iPhoto and an external drive? If so, how?

    Can photos be transferred back and forth from/to iPhoto and an external drive? If so, how?

    When in iPhoto for iOS you can share your photo to iTunes and then connect your iPad to your computer and use the file sharing window to move the photo to any connected hard disk. Sharing to iTunes is the only way to maintain original file size when sharing a photo in iPhoto for iOS.

Maybe you are looking for