Restrictions for cash account not to turn negative

dear all
Is there any configuration setting so that the cash account does not allow postings which makes the cash account balance into credit.
please advice

Hi,
SAP provides a system called validation. By this you can restrict the balance of cash account from going negative. There you have to give a check for the GL account balance field.
The T-code is OB28 for accounting documents.
There you need to specify your Company code and create a validation rule which is a step by step procedure.
Go to Environment the create a validation. There u specify the prerequisite, the a check and the message u want to display. Message can be error, info, or warning.
Try this. If helpful award points
thanx'
alok

Similar Messages

  • 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

  • TS3899 I have just set up an email account on my  ipod touch. Just received an email on my computer and the mail icon shows one new message. But when I click on mail icon it opens a page for New Account not an inbox??

    Having just set up my Ipod Touch with my email account (pop3) the mail icon on it shows a 1 for new message. However when I click on the Mail icon it brings up a page for NEW ACCOUNT not any inbox. Can anyone help?

    You might want to try removing they email account and setting it back up again

  • TS4002 I can not activate my iphone after running the software for icloud account not remember, I wish abble to open my computer soon. My phone IMEI 013007007033970

    I can not activate my iphone after running the software for icloud account not remember, I wish abble to open my computer soon. My phone IMEI 013007007033970

    Hi nguyen trong thang,
    I apologize, I'm a bit unclear on the exact nature of your issue. If you are saying that you are having issues activating your iPhone, you may find the troubleshooting steps in the following article helpful:
    iPhone: Troubleshooting activation issues
    http://support.apple.com/kb/ts3424
    Regards,
    - Brenden

  • SP_Transaction notification for Cash account non negative value

    Hi I wrote the following  SP_Transaction notification when cash account is going negative in outgoing payment.its working fine in 2005B.
    But it is not working in 2007B.pl any one help me.
    IF @transaction_type IN (N'A', N'U') AND (@Object_type = N'46')
    BEGIN
         if  Exists ( select t0.currtotal from oact t0 inner join ovpm t1 on t0.AcctCode=t1.CashAcct
         where  t0.currtotal <=0 and t1.docentry=@list_of_cols_val_tab_del)
    BEGIN
    SELECT @Error = 1, @error_message = 'Cash account should not be negative!'
    END
    END
    Edited by: ArulPrakasan P on Nov 21, 2008 1:42 PM

    No , ia m not getting any error message in 2007B.
    then i tried the following... I restored the 2005B database to 2007B.then it got upgraded to 2007B,then i tried to add the out going payment with the above SP_transactionnotification.
    now i got the following error msg...
    [microsoft] [sql native client] [sql server] : conversion failed when converting the varchar value '@list_of_cols_val_tab_del' to datatype int
    Edited by: ArulPrakasan P on Nov 24, 2008 9:14 AM
    Edited by: ArulPrakasan P on Nov 24, 2008 9:15 AM

  • Negative Balance with cash account not allowed

    Dear Expert,
    I want to stop transaction with negative cash balance in Cash account.
    How do I do it? Please help me.

    Hello sujankjana ,
    Please try this in SP_Transactionnotification procedure.
    IF @transaction_type = 'A' ANd @object_type ='46'
    Begin
    Declare @Amount decimal(10,3)
    Set @Amount = (Select T3.CurrTotal from OACT T3  where  T3.AcctCode  = (Select CashAcct from OVPM where DocEntry = @list_of_cols_val_tab_del ))
    if @Amount < 0
    Begin
    Select @error = 17 ,@error_message =N'We have not sufficiant Cash Amount '
    end
    end
    if any query kindly revert back.
    Thanks & Regards
    Manvendra Singh Niranjan

  • System should allow to post to bank account with the available cash for cash account in fbl3n

    Hi Friends,
    User is posting Bank account Dr to
                           Cash account Cr
    If cash account balance is 40000 in FBL3N, and if user posting more than that amount, then system should not allow to post
    in F-02 and FB50 transactions.
    Pl help me out
    Thanks,

    Hi Mahesh,
    I think we cannot go for cash Journal, because for the below entry i should make the cash account
    settings as post automatically only in FS00 transaction.
    Bank account Dr to
    Cash account Cr
    If that is the case then we cannot post manually to the cash account.
    I think we need to go for some exit in validation.
    correct me if iam wrong.
    Thanks

  • Password reset for Skype account not Microsoft acc...

    I have 1 skype account and 1 microsoft account. Both are registered to the same e-mail. They are not linked because i can't remember my skype login password. When i try to reset the password for the skype login i need to enter my email and then i tries to reset password the microsoft account not the skype. How do i reset my skype account password? 

    When you sign in to skype, do you write a user name (like "freakalis") or do you use a mail address
    (like [e-mail removed for privacy and security])
    AND
    are you sure that you don't have TWO skype accounts? one with a normal user name, and one created using your micrsoft account.  (have you tried logging in to skype using your microsoft account)?

  • Itunes account for sub account not allowed?

    I'm trying to open a new itunes account for my daughter who has a sub account from our .Me "Family Pack". So far, I have been denied completing the sign up process. The error message is: "We are experiencing technical difficulties. Please try again later". Does this mean sub accounts in a .Me "Family Pack" can not own individual itunes accounts? Does it mean one itunes account must be shared among all "Family Pack" members? If so, this seems very limiting for itunes business and not a good incentive for buying the .Me Family Pack. Can someone tell me if this is true or how Family Pack sub accounts can open their own itunes account. Thanks

    If you want them to have access to songs and videos, even free ones, you will need to provide some sort of payment method to set up the account, if not a credit card than a prepaid iTunes card or gift certificate. Apple uses this as verification of the user's country of residence, something the content owners require of them.
    If you only want your users to have access to free songs, you can set them up an account using your credit card, then remove the credit card information from the account. Then they will only be able to download free songs and videos, though if they attempt to purchase something that has a cost, it may allow the purchase, create a balance due, and "clog" up the works until the item is paid for in some way.
    Regards.

  • Line item texts restriction for GL accounts

    Hi Gurus,
    I had lots of the Line item texts defined at the client level which can be choosen at the time of document postings.Can we restrict the line item texts with respect to GL accounts number to which we are postings.i.e.If I choose a particular GL account only few of the texts assigned to GL accounts needs to be displayed for text field.
    Thanks in advance.
    Regards,
    Abhinandan

    Hi Parul,
    The fast entry for invoices and credit memos are possible in SAP. Pl refer the URL link for detailed answer to ur question:
    'http://help.sap.com/erp2005_ehp_03/helpdata/EN/20/7248d7852d11d3b84700a0c930dc87/frameset.htm'
    Regards,
    Amish.

  • MIRO error F5507 for GL Account not found

    When executing MIRO I am getting error " G/L account XXXXXX not defined in COA XXXX' (message # F5507) in ECC 6.0.
    We are migrating from 4.6B to ECC 6.0 and this account does not exist in 4.6B too for COA, but it works fine in 4.6B. The concerned account is in COA "INT" which has no relevance for the business.
    Company Code is already set to relevant Company code while executing MIRO.
    Thanks.

    Hello,
    In OBMSG you need to ADD.
    Go to OBMSG
    Select F5 application area
    Click on message
    New Entries
    Application Area F5
    Message No.507
    Allowed: I (Information)
    Standard: E (Error)
    Check: Switch off box
    Now if you come to OBA5, you will see the message appearing in OBA5
    Switch off the message in OBA5 for online and batch entries.
    Regards,
    Ravi

  • Passwords for iCloud account not working on my phone or iPad

    I want to use a different Apple ID on all my products.  I can't however seem to change the email (Apple ID) associated with icloud on my phone or ipad.  I have an old address that I want to update.  However now none of the passwords that were associated with that old Apple ID are working now and I cant seem to change the ID at all?  I want to use icloud, but don't want it associated with this old email.  How can I change the ID associated with iCloud on my devices?

    If you have an old iCloud ID showing in Settings>iCloud as a result of updating to iOS 7, in order to change the ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPhone, then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https//appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, tap Edit, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • Verification Email for Developer Account not being sent

    As the subject line states, I have not received my verification email for a developer account in since yesterday. I keep trying to log in and do more things but the screen stating that they sent a verification email keeps coming up. I have checked my spam mail box as well as my inbox and nothing seems to be appearing. And because my account needs to be verified, I cannot access other sites, such as support. Can someone direct me to a number or someone that I can talk to about this? Thanks in advance.
    -Christfromusa

    Try calling them and asking for assistance:
    https://developer.apple.com/contact/phone.php
    Regards.

  • Verification email for itunes account not received and do not know how to..

    i signed up for the app store on my iphone and i did not receive the verification email. now i dont know how to get the email resent.... any help??

    Ok, you can go to Norton's website and look there. But if it is in the bottom right hand corner, you should be able to right click it to disable it. I hate Norton and I do not have norton, but I am sure you can do it that way. I scrapped Norton a long time ago.
    Good Luck

  • SP for Blocking Payment Entries in Negative Cash Account

    Hi Guys,
    I want to Block  the users while posting the Payments in Cash Accounts(Some Particular Accounts).
    If the Balance in the Cash Account is in negative then the system needs to show an Error Message and it should not allow the users to post the entry.
    Is it possible to do such thing by any Query or an SP.
    Pls provide me  a SP for that...
    Regards,
    Vamsi.

    Hi Istvan,
    I tried Executing the SP .
    But when i add an outgoing payment  related to that G/L account  which has negative balance in the cash account , SP  not showing any error message and its allowing to add the document..
    Actually the Scenario is ,
    I am going to add an outgoing payment  for some travel expenses for an amount of Rs 1000 /-  and
    in the Payment means tab i will select the Cash Account which is in Negative balance .
    While adding the document it  should not to allow the user to add the document.
    But while i executed the above SP it is allowing me to add  the document .
    Pls provide me some solution.
    Regards,
    Vamsi

Maybe you are looking for

  • Why cant I install itunes on win 7

    Been trying to upgrade my Itunes on my Win 7 laptop and continue to get erros.  Any help on this?

  • Idoc error mapping error for segment "E1EDT13 006" in DESADV idoc

    Hi SAP Gurus, DESADV IDOC for few articles is not getting passed from SAP to legacy system. It is missing one segment"E1EDT13 006" for goods issue. Why is this mapping error happening. How can this be resolved. Regards. Sumi

  • Blurred photos after OS update

    Photos in my Iphone 3GS became blurred/pixelated after updating to IOS4. Any idea why? Thanks!

  • Padlock on Hard Drive icon

    My internal and external hard drive all of sudden have padlocks in the lower left corner of there icon. What does this mean, and how can I remove it?

  • CMP Entity Beans and multiple tables

    Hi All, Is it possible to have a CMP Entity Bean retrieve attributes from multiple tables (using table join), and populate attributes from columns in both tables? If yes, how do we configure the same in configuration xml files. Is there any special h