Negative Balance in Petty Cash General Ledger

Dear Experts,
There is cash journal (USD-Currency), Posting are there from 2008 onwards and as of now the balance it is showing local currency (PKR) in Negative balance and below is the example of same.
Our user send us like :    As per trial balance 1110A, Cash in hand GL 11100064 showing negative
balance amounting Rs. 65,034.34/- where as there is positive balance USD
2,296/- in subledger of petty cash. i believe this might be Forex
revaluation impact G.L is 11315000 (Bank Foreign Currency Revaluation)
How could we link relevant entries to kncok off so that we could get
positive balance in PKR Currency. which is physically available in
Foreign currency petty cash.
Can any body please explain me how to rectify the negative balance to rectify in the FBL3N.
Thanks,
Siva Reddy

Hi,
Check Account balance window of the the Cash Account G\L and the column Cumulative Balance. When the cumulative balance is negative, the Cash Account have gone below zero.
If you want only those specific days, then you have to query using the SQL tables.
Kind Regards,
Jitin
SAP Business One Forum Team

Similar Messages

  • Variable for ReportSum of Cumulative Balance Due in the General Ledger

    Hello ,
    my Customer need in the General Ledger Report only the sum of Balnce Due, Cumulative Balance Due .
    Ok, for all i find a varible for Sum of the report. But not for the Cumulative Balance Due.
    In the Repetitive Area 0 is the variable 186 setting, thats ok.
    But in the Page Footer when i set formula  > ReportSum ("Field_with_Variable_186") the sum is the sum about all
    the row and not the Summe of all the Repetitve Area´s
    Can you help me, or what can we do?
    Thank
    Daniela

    Hello Gordon,
    that is my problem, the variable 186 is for the row, not the end of periode balance for cumulative balance due!
    For example for the end of periode of cumulative balance, i find the variable 107 and then the report sum is correct.
    The same i need for the cumulative due of all the Repetitive Area Folder in the Page or End of report folder.
    Thank´s
    Daniela

  • Difference in Open Balance As per Trial Balance and General Ledger in SAP

    Dear All,
    1 ) Whle generating trial balance in SAP B1 for one Business master there is a difference in Opening Balance as per Trial Balance and as per General Ledger how ever closing balance in matching.
    Difference As follows
    Report Name      ob cr     ob dr           dr                   cr                                  CL
    General Balance          614536     19237612.34            18650320.01     1201828.33
    Trial balanceB     4521743.19          19237612.34       13514040.82     1201828.33
    Is it possible  the open balnce should be same in both report. The opening balance as per GL report is correct.
    2)  I have run the period end closing for Apr- 2010 to Mar 2011 after that I generated the traial balance for Apr-1-2011 where the opening balances for expense account  and revenue account is showing technically after period end closing the balance become zero for all closing balance revenue and expenses accounts.
    Please note that there are some entries in revenue and expense account in on 1st apr. 2011.
    Please guide on this.
    Regards
    Aarati Kollur.
    <a href="http://www.youtubemp3.net/">youtube mp3</a>, <a href="http://www.limewire.name/">limewire</a>

    Hi,
    I think you should re-visit the selection creteria for the Trial balance.
    The Display Opening Balance has two options. If you select from 'Start of Company activity', then it will include every balance of previous year.
    Check for the Display Closing balance option as well. As you have performed the Period End closing, the checkbox options can have an impact on the outcome in the report.
    Check the selection again.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • Prevent Petty Cash Account Balance to be negative

    Hi all,
       We've some Petty cash Accounts. It is observed that during the entries related to this cash accounts sometimes inbetween the day the cash balance becomes negative ( Due to the inappropriate order entry ).
       To force the Cash entries in exact order I want to put the check for cash account balance can't be negative.
      How to achive this ?

    Hi Naimish,
    You can use the following program to find the user exits in a transaction. Create this prog in your development as a local program.
    Just put the Tcode you are using in the selection screen and run it. It will list all the user eixts that are present . Do a trial and error till you get the exact user exit.
    Pls reward if useful.
    Laxman Nayak.
    *& Report  ZAK_FIND_USEREXIT                                           *
    REPORT  ZAK_FIND_USEREXIT  no standard page heading.
    Finding the user-exits of a SAP transaction code
    Enter the transaction code in which you are looking for the user-exit
    and it will list you the list of user-exits in the transaction code.
    Also a drill down is possible which will help you to branch to SMOD.
    tables : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
             tables : tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode obligatory.
    select single * from tstc where tcode eq p_tcode.
    if sy-subrc eq 0.
       select single * from tadir where pgmid = 'R3TR'
                        and object = 'PROG'
                        and obj_name = tstc-pgmna.
       move : tadir-devclass to v_devclass.
          if sy-subrc ne 0.
             select single * from trdir where name = tstc-pgmna.
             if trdir-subc eq 'F'.
                select single * from tfdir where pname = tstc-pgmna.
                select single * from enlfdir where funcname =
                tfdir-funcname.
                select single * from tadir where pgmid = 'R3TR'
                                   and object = 'FUGR'
                                   and obj_name eq enlfdir-area.
                move : tadir-devclass to v_devclass.
              endif.
           endif.
           select * from tadir into table jtab
                         where pgmid = 'R3TR'
                           and object = 'SMOD'
                           and devclass = v_devclass.
            select single * from tstct where sprsl eq sy-langu and
                                             tcode eq p_tcode.
            format color col_positive intensified off.
            write:/(19) 'Transaction Code - ',
                 20(20) p_tcode,
                 45(50) tstct-ttext.
                        skip.
            if not jtab[] is initial.
               write:/(95) sy-uline.
               format color col_heading intensified on.
               write:/1 sy-vline,
                      2 'Exit Name',
                     21 sy-vline ,
                     22 'Description',
                     95 sy-vline.
               write:/(95) sy-uline.
               loop at jtab.
                  select single * from modsapt
                         where sprsl = sy-langu and
                                name = jtab-obj_name.
                       format color col_normal intensified off.
                       write:/1 sy-vline,
                              2 jtab-obj_name hotspot on,
                             21 sy-vline ,
                             22 modsapt-modtext,
                             95 sy-vline.
               endloop.
               write:/(95) sy-uline.
               describe table jtab.
               skip.
               format color col_total intensified on.
               write:/ 'No of Exits:' , sy-tfill.
            else.
               format color col_negative intensified on.
               write:/(95) 'No User Exit exists'.
            endif.
          else.
              format color col_negative intensified on.
              write:/(95) 'Transaction Code Does Not Exist'.
          endif.
    at line-selection.
       get cursor field field1.
       check field1(4) eq 'JTAB'.
       set parameter id 'MON' field sy-lisel+1(10).
       call transaction 'SMOD' and skip first   screen.
    *---End of Program

  • General Ledger report with Op Bal , Trans Line Items and Closing Balance

    Hi Experts,
    My clients needs a General Ledger report which should show Opening balance and all transactions line items with closing figure in a single report for a fiscal year in the given date range wise. Can I get a report in standard sap. Waiting for your reply.
    Thanks in Advance,
    Arabinda Parida

    Hi Parida,
    There is no such report in SAP. Basically all standard report gives line items not with opening and closing balances. Anyway check mentioned transaction which may help to you.
    S_ALR_87012309....It is cash journal report. Anyway you can enter GL account get opening and closing balances with all relavent transactions.
    Regards
    Suma

  • Requirement of  General Ledger Trial Balance Detail Report Date wise

    Thanks for your reply
    We have to requirement of General Ledger Trial Balance Detail Report Date wise.
    Please help for that.
    Thanks.

    Take sum(Accounted_dr) - Sum(Accounted_Cr) till the Accounting Date..... from GL_BALANCES
    Edited by: 924750 on Sep 16, 2012 3:42 AM

  • Report "General Ledger from the Document File" - Cumulative balance

    Hi!
    When I start the report "General Ledger from the Document File" (transaction S_ALR_87100205), I get a list of documents with no obvious default sort order criteria (I can see at glance that document numbers and posting dates are not sort criteria). This makes the cumulative balance column completely useles.
    Since the cumulative balance is carried from one row to another, standard sorting functionality for the already produced list makes no sense.
    There should be a way to affect the sort order in program <b>before</b> cumulative balance calculation, or at least to find it out.
    Is there a way to acomplish this?
    Thanks!
    Regards,
    Igor

    In the output control section there is a button called configure. Select a variant. Select configure. Save the sort order and report definition the way you want it. Name a new variant. Now go back and run the report with your variant.
    pls assign points if helpful as a way to say thanks.

  • Cumulative Balance in General Ledger

    I'm trying to design a general ledger report.
    I almost finish but I have a little problem with the initial Cumulative Balance.
    I don't know how I can display this number.
    I filter the report with a initial date, so all previous movements are not shown and I can't summarize them
    Someone has an idea how can i do it ?
    Thanks

    ...suppress the printing of the format(s) that you don't want to see if the date is prior to the initial date....
    Technically , How Can I do it in Crystal ?
    Edited by: gablus on Jul 15, 2009 4:53 PM

  • Asset Balances Are Not Matching with General Ledger

    HI,
    After Doing asset year ending,balance carry  forward,,,the Asset balances are not matching with the General ledger.what is the reason?
    Kindly help me in this regard...it is very urgent.
    Thanks
    Sap Guru

    Please run ABST2 for the relevant company code to reconcile FI and AA.
    then check this out through ABST.
    Regards
    Velumani

  • General Ledger PLD month wise Debit,Credit,Balance total of a G/L account

    Dear all,
    How to customize template in General Ledger PLD monthwise Debit,Credit,Balance total of a G/L acct ?
    Jeyakanthan

    Hi,
    you can display or hide columns from  Formsettings.
    Rgds,
    Premraj

  • Negative balance in Cash Account

    Is there any way to view only Negative balances in Cash Account???

    Hi,
    Check Account balance window of the the Cash Account G\L and the column Cumulative Balance. When the cumulative balance is negative, the Cash Account have gone below zero.
    If you want only those specific days, then you have to query using the SQL tables.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • Add opening balance and transactions in the total of the general ledger

    How can we add all the opening balances and all the transactions of each vendor in the total of the general ledger in SAP Business One 2005 PL45 when we select several vendors ?
    At first sight, there is no system variable in SBO 2005 for this.
    Thierry.

    Hi
    What is your selection criteria:
    At the bottom , there is an option --Sort and summary
    Sort by posting only ;
    Sort by -BPCode ... Summary(yes)
    This should help you
    Bishal

  • How do I print General Ledger Balances for a particular day

    HI Sap Gurus,
    I want to print general ledger balances as of a particular day/date.  I did use FBL3n, but it gives me with line items,
    I want just the totals.  Do you know of any other report I can use.
    Would really appreciate the help
    Thanks so much will surely avoid points
    Pearina

    Hi Ms. Pearina
    The only way you can get the totals for one date is using FBL3n or the S_ALR reports & the only way you can print only the total instead of every line item is by running FBL3n & clicking on the ' * * ' at the bottom line that shows the total of the GL account.  Then you will be able to eliminate all the line items from your print out.  You can save this as a layout & call that layout everytime you only want to see the totals.  You can also default the layout if you want.
    Any further questions, please post your follow up...
    If useful, award points please...
    Thanks
    Morgan

  • HI, How can I found balances of general ledger

    Hi All
    Can you please help me how can I found the balances for a general ledger in document currency and local currency..Is there any table where balances maintain and is there any groups for general ledgers maintain.
    Please help me asap.
    Thanks and Regards
    Praveen

    hi
    good 
    check this link,hope this will help to solve your problem
    http://help.sap.com/saphelp_nw04/helpdata/en/45/757140723d990ae10000000a155106/content.htm
    thanks
    mrutyun^

  • In House Cash Accounts and general ledger account

    can somebody please try to explain me how the booking look like for an internal payment with ihc? (bookings in ihc, general ledger.....)
    maybe this question is a little bit silly: how could I imagine, how the subsidiray know that they have a claim/ debt vs. the in house bank? do they have an extra general ledger account for this or some other accounts anywhere else?
    do you understand what I want to know?
    Thx in advance

    Hi
    you will find your payment to or from the IHC center just like for any other bank posting - on the bank reconciliation accounts. So if you have an unmatched item here - something is wrong. You can choose to have special bank reconciliation accounts for the IHC payments if the company is also paying directly to external banks.
    The important thing when entering the vendor invoices is thus that they are entered with the correct pmt instruction i.e. internal bank otherwise they will never be sent to the IHC center. If you receive customer payments from both the IHC and external banks - and you use different bank recon accounts - you thus need to find a way to distinguish these payments so they are cleared correctly when uploading bank statements.
    Hope this answered your question
    Lone

Maybe you are looking for

  • ITunes will not install on Windows XP machine

    I have tried to install iTunes on my Windows XP machine (Home Edition - SP2 loaded)and it keeps bombing out, I have all the symptoms as decribed in the attached Support problem *No error message displays, however the iTunes installation disappears fr

  • Binding images to the Image class

    Hi everyone, I do not know how to bind my images to the image class in order to change its width and height. So, if you know how toconstitute relations between Image class and the images, please inform me. Thanks, Mert

  • Problem to move user in LDAP with the function DBMS_LDAP.rename_s

    Hello, I want to move a user in Active Directory, but this function i can only change his "cn". And when I use an invalid DN I have no error. My syntax is: retval := DBMS_LDAP.rename_s ( emp_session, my_dn,'cn=nom prenom', 'OU=test,DC=XXX,DC=org', 1,

  • Handling colour: working in red, white and black

    I've got a music video project which was shot (HDV) in very rich colour in the inside of an old car with red leather seats, and it's well styled. I want to do something a little different with the colour in post - by saturating the reds, whites and b

  • AE Base station issues.....

    I have an Airport Extreme Base Station (802.11n) and I'm having some issues with it. My iBook and Xbox 360 connect and stay connected to the wireless network without a glitch. For whatever reason, my PC holds a connection for about 5 minutes then I l