Gl balance on day  basis

Hi freinds,
If  I want to see GL Balance On day  or on particular date basis form which T-code I can get this.

Hi,
GL Balances can be retrived directly from FBL3N Report. In the All items selection give specific date range or only one single date whcih will show all the GL balances for the company code. Check the Report S_ALR_87012332 - G/L Account Statements  also.
S_ALR_87012277 - G/L Account Balances
S_PL0_86000030 - G/L Account Balances (New)
S_PL0_86000031 - Transaction Figures: Account Balance
S_ALR_87012301 - Totals and Balances
S_PL0_86000032 - Structured Account Balances
Any of the above reports will help you give the GL balances
regards,
radhika
Edited by: kolipara radhika on Sep 5, 2008 2:25 PM

Similar Messages

  • GL Balances on Daily Basis/ Per Day

    Hi
    Any One Know How Get Gl Balances on Daily Basis. I Mean Per Day. We have Requirement for Daily P & L.
    I have searched on every segment. but not found any answer of this question. Is there any development. Please Suggest
    Mann

    Dear:
                    Its very easy to use as per your requirement. Once you have executed the GL report for GLs you wan to see. 1st fetch the Account filed into your layout and and then apply subtotal function to it. Collapse it and save it as Default or user default variant (according to the requirement)from settings. Now every time you will run the report it will display every GLS consolidated balance in a single line for the date specified in input.
    Regards

  • GL account opening/closing balances by day

    Hi All.
    I wish to list day by day opening and closing balances of G/L account by restricting the result to a time interval.
    Anyone know how to write the query for G/L account opening & closing balances by day?
    I found this in the forum and modify it to below:
    declare @fr char(10)
    declare @to char(10)
    set @fr=convert (char(10),[%0],20)
    set @to=convert (char(10),[%1],20)
    declare @PrCl dec(19,6)
    declare @de dec(19,6)
    declare @cr dec(19,6)
    declare @acc char(20)
    declare @Pracc char(20)
    Create table #W
      (M char(10), Acc char(20), Me char(100), Tid char(10), Br char(10), TT char(30), Op dec(19,6),De dec(19,6),Cr dec(19,6),Cl dec(19,6) )
    Insert into #W (M,Acc,Me,Tid,Br,TT,Op,De,Cr,Cl)
    SELECT convert (char(10),T1.[RefDate],20)Mo, T1.[Account],T0.Memo, T0.TransId, T0.BaseRef, CASE
    WHEN T0.TransType = 13 THEN 'AR Inv'
    WHEN T0.TransType = 14 THEN 'AR CN'
    WHEN T0.TransType = 18 THEN 'AP Inv'
    WHEN T0.TransType = 19 THEN 'AP CN'
    WHEN T0.TransType = 24 THEN 'Incoming Payment'
    WHEN T0.TransType = 30 THEN 'JE'
    WHEN T0.TransType = 46 THEN 'Outgoing Payment'
    ELSE 'Other'
    END AS 'Trans Type',
      0,T1.[Debit] De , T1.[Credit] Cr,0
    FROM OJDT T0 INNER JOIN JDT1 T1 ON T0.TransId = T1.TransId
    Group by T1.[Account],convert (char(10),T1.[RefDate],20),T0.Memo, T0.TransId, T0.BaseRef, T0.TransType,  T1.Debit, T1.Credit
    Order By T1.[Account],convert (char(10),T1.[RefDate],20)
    Declare cu cursor for
    Select acc,de,cr from #W
      for update
    set @PrAcc=''
    Open cu
    Fetch next from cu into @acc,@de,@cr
    While @@FETCH_STATUS = 0
    Begin
    If @acc!=@PrAcc set @PrCl=0
    Update #W
       set op=@PrCl,
           cl=@PrCl-@Cr+@de
      where current of cu
    set @PrCl=@PrCl-@Cr+@de
    set @PrAcc=@acc
    Fetch next from cu into @acc,@de,@cr
    End
    deallocate cu
    Select * from #w
    Where M between @fr and @to
    Drop table #W
    but some of the rows are missing from the result. e.g. row with the same value of debit/credit ( same TransId and BaseRef) will come out once only in the result.
    Please guide me on the above issue.
    Thanks & Best Regards,
    Leng

    Hi,
    You have to make use of many tables for this purpose.
    1. You have to claculate the previuos period and finscal year for the given date..
    2. You have to calculate the G/L balances for this period for the given G/L account from table GLT0.(You can use some of the standard function modules for the same)
    3. You have get the line items from the various tables like BSIS,BSAS,BSIK, BASK, BSID and BSAD for the dates from the begining of the month to the given date-1. sum upthis amount with the amount retrieved from step 2 .This will be the opening balance for the given date.
    4.retrieve the data from he same tables like step 3 for the given date. This will the transactions of the given date.
    5. sum up  the amounts from step 4 with step 3. this will be the closing balance for that date.
    let me know id you want any further info..
    Reward the points if i answered your question..

  • Vendor Balance Report Day wise based on Posting date

    Hi Guru's,
    I am creating vendor balance reprot day wise based on posting date .
    In my report i want to show  TDS(With hold tax ) amount where can i get that field name how can retrive the data using bsik and bsak .
    I Donot want to display reversal documents in the displaying list .How can i remove reversal entries .
    Regards
    Nandan.

    Hi Nandan,
    check these tables:
    A399
    T059O
    T059ZT
    Regards,
    Santosh Kumar M

  • Is there a way we can open/close posting periods on a "per day" basis?

    Hi SAP gurus,
    Is there a way we can open/close posting periods on a per day basis?
    It is not possible in OB52 since it only has control per period and not per day.
    Will assign points for suggestions. =) Thanks!

    Hii
    In standard SAP there is not such functionality where u can do these kind of configuration...it is at least for a month that is through OB52.
    If u still wants this functionality it is through the validation.
    u need to create the validation for that company code and thn u can use this functionality....
    hope it helps u
    reward points if helpful
    sejal singh

  • GL Balance By Day

    Can someone tell me how I can pull a GL Balance By Day? I can grab the end of period balance by using the GL_BALANCES table and I can calculate to a day with the gl_je_lines table but I can't figure out how to combine the 2. Do I need to just build a package, store variables, do a cursor? Or is there a simpler way to calculate GL Balances by day?
    This is the query I have to grab the daily AR Differences (this is for a liability account which is why i am subtracting credits right now)
    Select gljl.period_name
    , glcc.segment1
    , sum(gljl.accounted_dr) - sum(gljl.accounted_cr) as liability_amt
    , gljl.effective_date
    from
    gl_je_lines_v gljl
    , gl_code_combinations glcc
    where
    gljl.code_combination_id = glcc.code_combination_id
    and glcc.segment1 = 'My Segment'
    and gljl.effective_date between '01-AUG-10' and '10-AUG-10'
    Group By gljl.period_name
    , gljl.effective_date
    , glcc.segment1
    order by
    gljl.effective_date
    And this is the query I'm using to grab the period opening amount.
    select gl.Period_name
    , gl.Begin_Balance_dr - gl.Begin_balance_cr + gl.PERIOD_NET_DR - gl.PERIOD_NET_CR as total
    , glcc.segment1
    from gl_balances gl
    , gl_code_combinations glcc
    where gl.code_combination_id = glcc.code_combination_id
    and period_name IN('JUL-10', 'AUG-10')
    and glcc.segment1 ='My Account'

    Hello.
    To prove that the query works fine i had to use a different segment so just addapt it to your needs. The set_of_books_id column is very important, unless you have only one set of books. I also add the nvl function because some columns are null and that can affect the result with unexpected data.
    Let me know if it worked.
    SELECT sysdate, nvl(sum(bal.begin_balance_dr + bal.period_net_dr - bal.begin_balance_cr - bal.period_net_cr),0) bgbalance
    FROM gl_balances bal, gl_code_combinations cc
    WHERE cc.code_combination_id = bal.code_combination_id
    AND bal.set_of_books_id = 52
    AND bal.actual_flag = 'A'
    AND bal.currency_code = 'EUR'
    AND cc.segment2 = '120602'
    AND bal.period_name = 'Julho-2011'
    UNION ALL
    SELECT gljl.effective_date, nvl(sum(gljl.accounted_dr) - sum(gljl.accounted_cr),0) as liability_amt
    from
    gl_je_lines gljl
    , gl_code_combinations glcc
    where
    gljl.code_combination_id = glcc.code_combination_id
    and gljl.effective_date between '01-AUG-11' and '31-AUG-11'
    AND gljl.set_of_books_id = 52
    AND glcc.segment2 = '120602'
    GROUP BY gljl.effective_date
    Octavio

  • Credit block for Slaes Order on Days Basis

    Hi SAP Gurus,
    As my client requirement want Credit block for sales order with days basis.For  example Customer has  credit 5000 and  30 days.Even credit value not exceed on 31st day, But sales order has  to block .
    Please requesting to all kindly needful for me.

    Hi
    Check payment terms in Customer master data, billing tab page. We can define payment terms. And if you want to block the customer use dynamic credit check.
    Enter 5,000/- in maximum document value in FD32
    For Credit management to be working
    1. In def of SD type we need to speciy Automatic credit control in the field " Check Credit Limit"
    2. In the defination of corresponding item category we have to check the field "Credit Active".
    Award points if it is useful
    Anil

  • Date Calculations on 360 days basis (30 days a month)

    Does any body know how to get
    difference between 2 dates on 360 days basis i.e 30 Days a month

    Please ignore the previous post.
    cal.set(DAY_OF_YEAR,360);
    is used the set the current day of the year to 360, not the total number of days in year. The same goes with
    cal.set(DAY_OF_MONTH,30);
    which sets the current day of the month to 30.

  • Time capsule? Firstly I want to know if you can update your back-ups on a day-to-day basis? And is it possible to update another/different MacBook everyday from that same back-up?

    The situation is my parents have a business and each have a MacBook, they want a system where they share files with each other. BUT they want it to be done automatically on a day to day basis. For example if my dad creates a quotation for a client of his, and my mom wants to come home with the laptop to work on this file. What must happen is that before my dad leaves, he backs up his MacBook to the Time Capsule (only the new files get updated) and then my mom will then click a button and it will update the new files that my dad has backed up to the Time Capsule. BUT it should also work the other way around.
    So in short they want a system where whatever new files they create on their MacBook will be saved on the other MacBook simultaneously.
    They do not want to create a central server where they manually have to go and save and fetch new files, they want it to be automatic. They want to in layman's terms, work on one pc image with two actual computers.
    Is this even possible?? I would really appreciate it if someone could help me in this matter before my dad goes and spends a lot of money on something that might not even be feasible.
    Kind Regards
    Mark

    I understand what you want.. but it is the wrong way to do it.
    You will get into a mess with using TM this way. It is designed for backup of individual machines.. you are trying to use it for a file server.
    They do not want to create a central server where they manually have to go and save and fetch new files, they want it to be automatic.
    The ironic thing is you are trying to use Time Machine as a central server.. only it is not.
    A central server is exactly the right way to do it. But it can be done automatically.. you just use some synchonisation software. (Central server means you all work on the same files and you have centralised backup)
    http://mac-sync-software-review.toptenreviews.com/
    Using some cloud method would be the other suggestion.. but I am not sure exactly how to do it. I have lousy internet so cloud is really too hard to use for storage.. but Apple do lots of stuff to help people with cloud to synchronize fies.

  • G/L Accounts Balance by days

    Hello,
    can anybody help how to display account balance by days?
    Is there any report?
    thanks
    D.

    Hi Dylan,
    The best thing you can get the balances daily based on setting the filers on the date(posting/entered/document date) in line item report(FBL3N).

  • Day basis depreciation

    Dear All,
    I am  working with FI-AA module and facing the below problem kindly give me the solutions.......
    My configuration is as follows:-
    1.Fiscal year variant in FI is M3 - which contains 366 day (29 days in Feb) .
    2.Fiscal year variant in Asset accounting is P3 which contains 365 days (28 days in FEB).
    my real problem is system is calculating depreciation for 366 days but my client wants to calculate it for 365 days?
    kindly suggest me to resolve ....
    yours
    ummi.

    Dear Barnhard,
    yes I  do have day basis depreciation...... let me give you more clarity on my issue.
    1. Fiscal year Variant in FI is M3 (366 days 29 days in FEB ). which is created and assigned initially.
    2. Fiscal year Variant in AA P3 (365 days 28 days in FEB ). Which is created for AA Roll out.
    Depreciation calculation as per system.
    According to case :- APC       USEFULL          Depn on MTD for Apirl.
                                      36000     3 (366366366)         =36000/1098  is  983.6065574
    but i want it to  be calculated  as per  case 2. as follows:-
                                      36000                          3(365365365)                                  =36000/1095 is    986.3013699
    kindly suggest me to resolve this ?
    Regards,
    umesha.
    Edited by: ummigowda on Jun 1, 2011 1:12 PM

  • Mac having issue opening certain files on a day to day basis

    My Mac seems to have problems opening files on a day to day basis.  One day it will not open JPEG files saying Mac does not support file format and then the next day it will open JPEG files but then have an issue opening PDF files or MS Word files.  Sometimes I am able to reboot and the issue is resovled other times even with a reboot I still run into an issue with opening a certain file format.  I Verified Permissons with a few errors that got repaied but I'm still having this issue.

    I understand what you want.. but it is the wrong way to do it.
    You will get into a mess with using TM this way. It is designed for backup of individual machines.. you are trying to use it for a file server.
    They do not want to create a central server where they manually have to go and save and fetch new files, they want it to be automatic.
    The ironic thing is you are trying to use Time Machine as a central server.. only it is not.
    A central server is exactly the right way to do it. But it can be done automatically.. you just use some synchonisation software. (Central server means you all work on the same files and you have centralised backup)
    http://mac-sync-software-review.toptenreviews.com/
    Using some cloud method would be the other suggestion.. but I am not sure exactly how to do it. I have lousy internet so cloud is really too hard to use for storage.. but Apple do lots of stuff to help people with cloud to synchronize fies.

  • Parameter readings entry on day to to day basis in EHS -reg

    Hi,
    Requirement is to enter the parameter readings which are taken at ETP -effluent treatment plants in to SAP -EHS module
    Parameters which affect the environment like TDS, Caco3 %, Mgco3% in the effluent before treatment and after treatment etc.. are measured on day to day basis and to be entered in SAP to track , analyse and for other MIS reports
    parameter readings are taken at different locations like effluent treatment plants, solvent  treatment plants , paint shops etc...
    is there any provision in SAP-EHS module for this ?
    please suggest
    regards,
    Madhu Kiran

    Hello Madhu / Pavan,
    This is what I can say
    1)Requirement is to enter the parameter readings which are taken at ETP -effluent treatment plants in to SAP -EHS module Using Environmental Compliance Material Management option, you can create Input and Output characteristics
    Using Task Management  - You can trigger tasks for ETP Analyst to mannually feed the data into analysis. Day today analysis data can be easily stored. 
    2) Parameters which affect the environment like TDS, Caco3 %, Mgco3% in the effluent before treatment and after treatment etc.. are measured on day to day basis and to be entered in SAP to track , analyse and for other MIS reports
    Effluent parameters like pH, TDS, VOC, BOD, Alkalinity u2013 before and after treatment is carried out to assess the treatment, check against CPCB / SPCB requirements, identifying deviations if any, and propose tasks to correct the error and prepare regulatory or Exception reports. In EC it is possible to set up.
    3) Parameter readings are taken at different locations like effluent treatment plants, solvent treatment plants , paint shops etc.
    In Environmental Compliance u2013 we define Facility Structure replicating the facility and its sub structures, processes, activities, control devices etc. It is possible to capture data at each location and store them for assessment or analysis. 
    4)The solution Jaya has proposed may hold true for the parameters being captured with "online analyzers" (JayaKumar, Please correct me if I am wrong). With SAP EC solution, you can directly integrate your field's real time sensors with data historians.
    No Pavan, Environmental Compliance can also capture manuall entries. 
    SAP EH&S Measurement Project u2013 it is basically for Workarea / Risk Assessment. There is difference between Measurement Management and Compliance / Permit Management. If you are capturing the data for Permit or Compliance perspective and to generate Regulatory reporting  against set Permit values (Wastewater  Water Quality / Air Quality Standards), then Environmental Compliance is the best pick.
    Thanks
    Jayakumar

  • Calculate shipment cost on day basis

    hi,
    how can i calculate the shipmentment cost on day basis.For this which condition type should be used in my shipment pricing procedure.

    hello, friend.
    to be honest, i have not tried that but i think it is possible.  you can go to IMG > Log Ex > Transportation > Shipment Cost > Pricing > Pricing control.  look into a condition type, go to 'Scales' and you will find 'scale basis' (value 'O' - time period scale in days) and 'unit of measure' (days).
    i guess you also need ABAP enhancement to calculate the number of days between planning and shipment completion to calculate costs in days.
    regards.

  • Week Day Basis comparison

    Hi, Experts...I am having a very strange requirement. In a report i need to give current sales of current date as well as but date comparison is based on week and day not date. Like if current date is 1st Jan 2011sature day 1st week of 2011 and i am executing the reports, it will also display the sales of 1st week sature day of 2010 wich is actually 2nd jan. So i am calculating th e week number and accordingly finding the date of the current year day. Its giving the accurate result. But i run for 31.12.2009 wich is 53rd week its gives me blank as year 2008 has only 52 weeks. Pls suggest me a FM for comparing the days as AS400 is able to give the sales.

    Hi,
    I think we can put the condition like it the curr week is last week of the year then get the last week of the prvs year.
    like if curr date is 30.12.2010 then the week is 53, we can use fm 'BKK_GET_LASTWEEK_OF_YEAR'  to check wether it is last week of the month, then use the same fm to get the last week of the prvs year.
    Then we can get the day of that week ...
    Regards,
    Anmol.

Maybe you are looking for

  • What's the part number/details for the AC Adapter for a HP G61-456EE Notebook PC?

    I'm based in the UAE and I have a G61-456EE Notebook PC. I need to order a replacement AC Adapter since I've misplaced mine and I can't seem to find the specific model/part number in the HP Parts Store. Can someone please advise me on which particula

  • URGENT:Eventing between two iviews in one page

    Hi all, I have developed a model in visual composer which contains two iviews in a single page .The first iview contains the input fields and the data service.The second iview contains the output form.I should get the output in the second iview when

  • Resolution/Blurry

    Hello. I have recently purchased a HP ENVY 15T. I came equipped with NVIDIA GeForce GTX 850M video card with 4 GB of memory. The recommended the resolution is 1920 x 1080, but the was hurting my eyes. So, I downgraded it to 1600 x 900. Most windows a

  • "Show changes only" in Time Machine?

    in the keynote video of MacWorld in Jan 2008, someone pointed out that Steve's machine has an additional button "show changes only" in TM UI. presumably this option shows you the diff between 2 hard drive snapshots. it's not in 10.5.2. is there any s

  • Downgrading ios to 7.1.2

    Will apple sign ios 7.1.2 for iphone 4s in future? I am  facing performance as well as battery issue with the heavy IOS 8. Is there any other way i can achieve the same without getting signed from apple?