OBXL Issue-How to remove GL Account allocated in OBXL?

Hi,
Using Transaction OBXL-I have added GL Account Number xxxxxxxxx in the coloumn showing Account.I want to remove the same.This is because additional commissions are getting posted in this GL Account when I am doing clearing using F-04.
Need to remove the GL Account in OBXL.How to do the same?
Thanks
Vivek

Select the GL by clicking the GL  and you can delete it by using the delete icon or edit > delete.
Not sure what the whole requirement is but if you are not using a reason code for clearing differences and if the difference is within the tolerance limits the difference will be written off automatically to the non reason code specific GL. Once deleted you will have to use a reason code for the clearing difference otherwise system will give you an error.

Similar Messages

  • How to remove mail account in mail in windows 8?

    I said is the windows store mail app. how to remove an account in it?
    On the other hand, I also don't know how to ADD a second acccount in Mail.

    Thanks for that!  I run a blazing fast laptop (ASUS ZenBook UX51) yet the Charm Bar takes forever to load and sometimes I need several attempts.  So I've blocked the entire UI by using Start 8 and never go to the Win8 UI except for Mail.  This
    issue with GMail hanging out there without connecting, coupled with the MS Live ID policy of never allowing you to ever reuse a password pretty much kept me away from Windows for over a month. I use Linux for all of my telephony and speech recognition consulting
    work.
    MS Live ID now has a pwd that I have on a Post It Note on my desk (like millions who are forced to use MS Live).  Some security policies do not make sense when weighed against the unintended consequences of extremely tight policies.  MSoft sadly
    has never listened to security experts who also are user interface experts with understanding of psychology. <<<Not me, but I work with a few of them and boy they flame MS about security issues with end users!
    I had a couple of minutes this morning, so I found this post.  I appreciate the time you spent posting the instructions.  I removed GMail and am considering removing the other accounts too since they are now covered by the very insecure MS Live
    ID (My password is on my desk.....)
    IMHO, MSoft should add in another UI control within the mail app to do this. Perhaps if only a visible link. Classically there have been at least three ways to accomplish an action in Windows.  By limiting it to just one that is optimized for the less
    than optimized UI touch, MSoft is making it difficult for end user.

  • HT201303 how to remove my account pleassssssse ????

    how to remove my account pleassssssse ????

    Remove it from what?
    You can simply stop using it.
    Your question is very vague

  • How to remove an account balance of itunes, but my mind is Mexican American was before, and I want to change the country to see my purchases in the store hise U.S.

    how to remove an account balance of itunes, but my mind is Mexican American was before, and I want to change the country to see my purchases in the store hise U.S.

    Buy something for more than the balance and charge the remainder to a credit card, or write Apple and ask them to keep the balance.
    iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html > Get iTunes support via Express Lane > iTunes > iTunes Store

  • How to remove an account from my mac book pro

    I have a mac book pro, and I think it was a return from someone else, because when I got it it had an app store account on it that isnt mine, and I need to know how to remove it, can anyone help. thanks.      -A

    Hi Ghost44,
    Being New to Mac... you may find these Links of Interest...
    Mac 101
    http://www.apple.com/support/mac101/
    http://www.apple.com/support/switch101/
    MBP Support
    http://www.apple.com/support/macbookpro
    General Support
    http://www.apple.com/support/
    Enjoy your Mac...

  • How to remove an account - cannot download apps

    Hello all,
    I have recently been bought an ipad. When the iPad was first used, my daughter-in-law used her own account to add some files. Since then I have removed her account details in 'settings'/'general' and added my own, along with setting up an Apple account and new itunes account. However, when I try to install APP updates, it asks for my daughter-in-law's password for her account. I have signed out and in with my own via itunes, yet still it asks for her password (only for the App downloads). How do I go about removing her information or logging out so I can access the updates for my account on my iPad?
    Any help gratefully appreciated.
    Thanks
    Simon

    You should be able to log out of her account by going into Settings > Store and tapping on the account on the right-hand side and then log-in with yours. Any apps that your daughter-in-law bought/downloaded on the iPad are tied to her account, and can only be updated by her account (so you may want to delete them) - apps are tied to the account that downloaded them, not to the device that they are on, and they can't be transferred to another account.

  • Caching issue - How ro remove cache from the portal iview

    Hi,
    I am facing problem of caching.In my application I am substituting one user(user 1) to some other user(user 2).Based on the substitution(latest substitute user 2),I should get the values for the User 2.
    But after substitution,I am getting the values for the user 1 and after some time(2/3 second) I am able to get all the values for the User 2.The application is working fine.But some how its retaing the previous values of the user 1.
    Can anyone please suggest me how to remove the cache from the iview.
    Regards
    -Sandip

    Hi Sandip,
    Enterprise Portal caching can be taken care or in a number of ways, all these are listed in the doc below:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/71d7b8dc-0701-0010-dfba-881dba1b5b95
    - Regards, Dibya

  • Request and session issues-how to remove a bean from a session

    Hi
    I am implementing copy and move functionality in my application. I need some info to complete that.
    The copy functionality is like this.....From a summary page which consists a Datatable and checkbox...
    I will select a checkbox beside as a copying reference..and click on next..
    In the next page I will get a copying reference bean and a drop down select list box consists of 1-10, I will select some value and click on next. then in the next page, I will get selected no of rows of that copying reference. then when I click on finsh , it will add into database...
    And the next page will open showing .....status of inserting into database..
    the action method I am calling is....
    public String saveCopyingRoutes()
    log.info( "Into saveCopyingRoutes method" );
    String returnStr = UIConstants.RETSTR_SUCCESS;
    // : Get all the rows
    // Read each row and insert each row into database under a particular
    // gateway end point.
    int numRows = table.getRows();
    log.debug( "no of rows-->" + numRows );
    for (int rowIndex=0;rowIndex<numRows;rowIndex++)
    log.debug("value of rowIndex-->"+rowIndex);
    RoutingEntry routingEntry = (RoutingEntry) FacesContext.getCurrentInstance()
    .getExternalContext().getSessionMap().get( "RoutingEntry" );
    try
    // -Need to query using RoutingEntryMgerImpl() class
    new RoutingEntryMgerImpl().addRoutingEntry( routingEntry );
    message = " Verifying Copy sheet " + rowIndex + ".....\n"+
    " Successfully verified datafill in copy sheet" rowIndex".....\n"+
    "Adding copy sheet "+rowIndex+"to the database...\n"
    + " Successfully added copy sheet" rowIndex"to database.....";
    messageList.add( message );
    log.debug("*********************"+messageList.size());
    log.debug("message----->"+message);
    log.debug("*********************");
    catch (NrsProvisionException pe)
    catch (Exception e)
    message = "Unsuccessfully added copy sheet "+rowIndex+"to the database";
    //Show the corresponding error....
    // Throwing generic exception ...?
    e.printStackTrace();
    log.info( "saveCopyingRoutes method return value: " + returnStr );
    return returnStr;
    now the bean is in session scope , let me know how to remove from the session, is there any better way to implement this functionality...

    Read the instructions.

  • How to remove the account name from header when printing emails

    In outlook 2007 using Exchange Server 2007 users wishing to print an email using memo style have a header consisting of the account user's full name and a bold line under it, then the friendly email headers and body. Is there a way to remove/configure
    the memo style header?
    Marc

    Hi Marc,
    Unfortunately, there is no way in Outlook to change or remove the name or message header which is being displayed at the top of a printed message. It is tied to the Display Name of your email account which you can’t modify yourself for an Exchange account.
    More reference:
    http://www.slipstick.com/problems/how-do-i-remove-my-name-when-i-print-email/
    (Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.)
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • HT204053 How to remove an account from used ipad bought from ebay

    I bought an ipad from eBay and can't download games because her email comes up as main.  How do I remove it and make my ipad remember mine

    I agree with Dah*Veed, but if you for some reason don't want to do that, you can simply sign out her Apple ID and then sign in with your own.
    iOS: Changing the signed-in iTunes Store account
              http://support.apple.com/kb/HT1311

  • How to remove "add account" in Reader DC

    I am testing new package deployments of Adobe Reader DC prior to releasing it.
    I have used the customization tool for Adobe Reader DC to create a MST file so its a tailored install. The only thing it seems is, I can not alter or remove is the "add account" for Microsoft Share-Point.
    At this time our organization does not have Share-Point and possibly not anytime soon.
    How can I remove/disable that option? I would rather not spend the administrative overhead on training end user to ignore that it exists.
    Jon

    Hi Jon,
    You can set the registry as mentioned at http://www.adobe.com/devnet-docs/acrobatetk/tools/PrefRef/Windows/Workflows.html#Services( SharePoint-Office365) to disable 'Add account' in Reader DC.
    Thanks,
    -Amboo

  • How to remove other account purchases from itunes?

      My stuff is on my mom's computer / itunes, and I don't know how to transfer / remove it. For example, she has a whole Beauty and the Beast album that I downloaded, but she did not, and somehow it's on her computer, not mine. Also, when updating apps, it asks for my password for some of them. I don't know how our accounts got merged, but I'd really like to make itunes more user-friendly for her so she actually knows how to use it without it yelling at her all the time. Thanks!!!

    1. Move the song files to your computer and then delete them from hers; if needed, right-click them in iTunes and show them in the Windows Explorer.
    2. Sign in with her Apple ID, and delete and redownload the applications which are asking for your password.
    (125136)

  • How to remove MSN accounts

    I have msn messenger running on my old imac which I am selling. Every time I launch messenger, my two previous msn accounts are visible, how do I remove them? I have tried uninstalling but it seems to find the accounts.

    Since Messenger is not an Apple product, you should probably post your question on Microsoft's own Mac discussions, rather than an Apple forum:
    http://www.officeformac.com/productforums/
    Why don't just do the smart thing and erase the hard drive and reinstall the OS prior to selling the computer? Then there's not trace of your files, settings and information anywhere, and the buyer gets a clean system that will run efficiently.

  • How to remove itunes account name from imessages

    Just activated a new phone and everyone I said an imessage too is receiving the text with my apple id name at the top. how do I have it show as from my contact name or phone number and not my apple email address.

    Hi Stephen
    If it were me I'd go to Settings > General > Reset > Erase All Content and Settings
    This will wipe all of your info, apps, music, etc, from the phone and allow your sister to set it up "as new" with her own iTunes and AT&T accounts.
    This procedure can take a while so I'd have the phone plugged in and allow a couple of hours for it to complete =0)

  • How to remove icloud account?

    I just bought a ipod 5th generation on ebay for my brother and i reseted the Ipod and I get a icloud actavation page when I am almost done with the setup. i cant contact seller because they had no contact information on there account.
    Please help because i really need to get if fixed for my brother.
    Thank you

    Sounds like you are running into the Activation Lock
    iCloud: Find My iPhone Activation Lock in iOS 7
    If you can't get the ID and password to enter or get the pervious owner to remove the device from their account
    Find My iPhone Activation Lock: Removing a device from a previous owner’s account
    You have a thin, expensive brick. It could be that the iPod was stolen or lost. I would contact the police.

Maybe you are looking for

  • I cant find almost 100gb in my startup disk where can they be?

    hello My star up disk is almmost full ive tried to delete files but still no result, when I go to the user folder and press get info it shows 130gb size yet when I enter and try to fing where these gbs are I cant. According to my calculations everyth

  • Can I use Front Row on external monitor with MacBook Pro's cover closed?

    I've seen that you can use the remote to control Front Row even when the lapatop's cover is closed (on a MacBook Air). Is it possible with a first generation MB Pro? Are there special settings? Thx

  • Service Manager and external link

    Hi! I'm developing some new features in HP Service Manager and I want to know if it's possible from an entry of the menu go to an external web site. Thanks!

  • Illustrator will not launch

    Hi, Was wondering whether anyone had the same from with AI not launching?

  • Base file type error on import

    I created a bunch of custom item types in my dev environment. then i decided to clean up the ones i wasn't using, so that I, and content owners wouldn't be tempted to use them. one of the item types i deleted was the base file type. all kinds of cont