Changing GL Code for "Clring Account Revenue from Asst Sale" (TCode: AO90)

Dear Experts,
We have a requirement to change "Clearing Account Revenue from Asset Sale" from currently used GL Account (Eg; 22840020) with another GL account (Eg; 22840022).  Both these GL Accounts are Balance Sheet Accounts. We have created required GL Account in desired conpany codes.
When we try to change respective GL Account in T-Code: AO90 (Balance Sheet Accounts) we get below message with green colour message type:
"Account "22840022" not allowed to be Balance sheet account"
"Account "22840019" not defined as P22840019L account"
(There are no red colour message type)
Please help. Should we go ahead with the change? Will there be any risk involved in doing so? Is there any other prereqisite to be followed?
- Nilesh

Dear Atif,
Thanks A lot for explanation.
Though fundamentaly it is right what you are saying, Our Client is using Balance Sheet Account 22840020 since many years as "Revenue from Asset Sale Clearing Account". Now they want to replace this GL Code with 22840022 (Balance Sheet Account). With previous GL Code there were no problems. And message given by system is relevant to what you are saying, but it is not an error message.
What I understand is, they are sufficing their requirement with Balance sheet account. So after replacing GL Code with B/S account there should not be any problem.
They do the retirement without customer and sale is not on credit basis also.
Please suggest for more clarity.
Thanks in Advance.
- Nilesh

Similar Messages

  • Custom code for Target Source Reconciliation from a flat file

    Hi Experts,
    I need help in writing a custom code for Target Source Reconciliation from a flat file to OIM. The flat file will contain account details for different application instances. I am working on 11gr2.
    Thanks,
    Subin

    All right, all right, not so quickly.
    I am at the stage of trying to put one dimension
    array. But I stuck in one place, this is the program:
    import java.io.*;
    public class FromFile {
    public static void main(String[] args) throws IOException {
    File inputFile = new File("mac.txt");
    FileReader in = new FileReader(inputFile);
    int c;
    for(int i = 0; i < 10; i++) {
         c = in.read();
    System.out.println(c);
    and I try to read: 1 2 3 4 from text file
    This is the result so far...
    49
    32
    50
    32
    51
    32
    52
    -1
    -1
    -1
    well,
    I think I know what's wrong. I must change ASCII numbers into
    ints. But I dont' know how to do it. Some nice book, or
    tutorial on streams would come in handy. Could you correct
    it?.

  • TS3276 I have recently had a problem with one of my hotmail accounts, some sort of virus sending random emails to people in my address book. Hotmail advised me to change my password for that account, which I did. Why won't mail recognise the new password?

    I have recently had a problem with one of my hotmail accounts, some sort of virus sending random emails from my address book. Hotmail advised me to delete all contacts and change the password for that account, which I did on my laptop running windows XP. The change was successful and I was able to send and receive emails with no problem. I then had to change the account password on my iPhone 4s, which I did and it too was successful but when I came to change the password on my iMac, running the latest version of Lion it would not recognise the new password. I have tried to remove the account details and re-install but every time I go to add new account my old details are in the box. This is very frustrating as I use my iMac for all my profects and I need to access my email. Please help.

    hi guys,
    I had already deleted all reference to the hotmail account in question from the keychain access app, I have also tried to delete and re-instal the account details from within mail. The icon in the side bar dissapears but when I go to Add Account, the old account details are in the new account box. I then input my new password but am told that the server does not recognise it. If I access hotmail via google on the iMac I can get into my account with no problems. I am thinking there must be some other form of security system within the mac software that is blocking the new password. This is driving me nuts. I have been trying to resolve this for the last two days. Thank you for your advise anyway.

  • How can I change game centre and iCloud account information from previous owner of my iPad?

    How can I change game centre and iCloud account information from previous owner to me?

    You can't do it on your own. The previous owner has to erase the device for you. You would need his Apple ID and password in order to delete his iCloud account. This is due to the Activation Lock in iOS 7 - assuming that your iPad is running iOS 7.
    Contact the owner and ask home to erase it remotely using iCloud, or return the device and ask for your money back. If you can't contact the pervious owner, you will have a useless iPad on your hands.
    Read this for more information. This is what you need the previous owner to do.
    What to do before selling or giving away your iPhone, iPad, or iPod ...

  • My old itunes id was an email that no longer can be used, therefore, I can not change the password for that account.  Everything that I purchased under that id name will not play.  How can I fix this?

    My old itunes id was an email that no longer can be used, therefore, I can not change the password for that account.  Everything that I purchased under that id name will not play.  How can I fix this?

    I no longer have an email address that was also my Apple ID. Can I still use the email address as my Apple ID?
    Apple recommends you change your Apple ID to your current, working email address. This will not create another Apple ID, it will only change it to your working email address. See Changing the name you use for your Apple ID if you'd like more information.
    Note: @mac.com and @me.com Apple IDs can not be renamed.  If you no longer use the .mac or .me email address be sure to add your valid email address as an additional email address.
    From here  >  http://support.apple.com/kb/HT5622?viewlocale=en_US
    If necessary...
    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Code for reading particular  fields from the file placed in application

    hi,
    code for reading particular  fields from the file placed in application server in to the internal table.

    Hi,
    Use the GUI_UPLOAD FM to upload the File into ur Internal Table.
    DATA : FILE_TABLE TYPE FILE_TABLE OCCURS 0,
             fwa TYPE FILE_TABLE,
             FILENAME TYPE STRING,
             RC TYPE I.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DIALOG
      EXPORTING
        WINDOW_TITLE            = 'Open File'
       DEFAULT_EXTENSION       =
       DEFAULT_FILENAME        =
       FILE_FILTER             =
       INITIAL_DIRECTORY       =
       MULTISELECTION          =
       WITH_ENCODING           =
      CHANGING
        FILE_TABLE              = FILE_TABLE
        RC                      = RC
       USER_ACTION             =
       FILE_ENCODING           =
      EXCEPTIONS
        FILE_OPEN_DIALOG_FAILED = 1
        CNTL_ERROR              = 2
        ERROR_NO_GUI            = 3
        NOT_SUPPORTED_BY_GUI    = 4
        others                  = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    READ TABLE FILE_TABLE INDEX 1 into fwa.
    FILENAME = fwa-FILENAME.
        CALL FUNCTION 'GUI_UPLOAD'
             EXPORTING
                  filename                = filename
                  FILETYPE                = 'DAT'
           IMPORTING
                FILELENGTH              =
             TABLES
                  data_tab                = itab
             EXCEPTIONS
                  file_open_error         = 1
                  file_read_error         = 2
                  no_batch                = 3
                  gui_refuse_filetransfer = 4
                  invalid_type            = 5
                  OTHERS                  = 6 .
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    Regards,
    Balakumar.G
    Reward Points if helpful.

  • How to change commodity Code for material grp in certain plant

    Hi,
    I would like to change commodity code for some material group under certain plant
    May I know how to do this.
    I went to the following SPRO path, however, the table does not mention the plant and the material group for me to change.
    SD>Foreign Trade/Customs>Basic Data For Foreign Trade>Define Commodity Code/Import Code Numbres by Country.
    Please let me know.
    Thank.
    Tuff

    Hi,
    Commodity codes are define at country code level not on basis of plant or material group
    Weather it is one plant or many plants belongs from one company or different companies the commodity code is unique and it define by country legal authorities which are responsible for foreign trade.
    You can add commodity code for country and then you individually or by mass change you can change in material master.
    Kapil

  • Change region code for ink cartridges

    how 
    Change region code for ink cartridges From Europe To Middle east

    Hi @AhmedAdel9 , welcome back to the HP Forums!
    I see you're looking into regionalisation options.  I'd like to point you in the right direction.
    To get this regionalized, I'd recommend giving us a call.  You can utilize this website to learn how to contact us appropriately, based on your region: Contact HP Worldwide.
    Thank you for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Hi, I ' ve changed my password for Itunes account and now i've lost any applications bought before any possibility to update any applications bought before

    i' ve changed my password for itunes account and now i can't uppdate any applications bought before?

    Sign out in iTunes and sign back in again with the new password.

  • Set up Company Codes for Contract Accounts Receivable and Payable

    HI,
    I need clarification on "Set up Company Codes for Contract Accounts Receivable and Payable"
    When a company code "ABCD" isn't set up for contract accounts receivable and payable (Menu path:
    SAP Insurance -> Collections/Disbursements -> Organizational Units -> Set up Company Codes for Contract Accounts Receivable and Payable), are postings on this company code "ABCD" within FS-CD not allowed and blocked ?
    Is it mandetory to specify company codes to post in Contract Accounts Receivable and Payable in SAP FS-CD.

    Yes .  It is mandatory to extend company code chart of accounts to CA/CR and FSCD.
    Srinivas

  • What is transaction code for GLA account balance

    Hi All,
    Please tell me what is the transaction code for GLA account balance.
    I have a requirement to develope a report based on this GLA account balance.
    Moderator: wrong forum, thread moved

    This question does not belong on this forum -- this is for Asset Accounting questions.

  • Changing commodity Code for material grp under certain plant

    Hi,
    I would like to change commodity code for some material group under certain plant
    May I know how to do this.
    I went to the following SPRO path, however, the table does not mention the plant and the material group for me to change.
    SD>Foreign Trade/Customs>Basic Data For Foreign Trade>Define Commodity Code/Import Code Numbres by Country.
    Please let me know.
    Thank.
    Tuff

    Hi Tuffy,
    The commodity codes are defined by Country, not at Plant-Material group level.
    You can find this customising on: SPRO > Materials Management > Purchasing > Foreign Trade/Customs > Basic Data for Foreign Trade > Define Commodity Codes / Import Code Numbers by Country.
    I hope this help.
    Kind regards,
    Sandra

  • T-code for GL Account for BDC

    Hi..!!
    I need t-code for GL Account,...
    What r the t-code Available for this...
    I want to know how to upload this t-code through BDC...

    Hi,
    Create new General Ledger Accounts Transaction: FS01
    refer to the link below:
    http://www.sap-img.com/financial/sap-fi-transaction-code-list-1.htm
    with luck,
    pritam.

  • LinkTax Code for particular Account Assignment

    Hi Gurus,
    Does anybody knows if is possible assign a particular Tax Code, depending on which account assignment I selected?
    For Example, if I select Account Assignment A, the system assign Tax Code I1.
                        if I select Account Assignment K, the system assign Tax Code E1.
    I really apprecciate your help.
    Regards,
    Hector.

    HI
    have you assigned the tax codes for your country, i mean go to SPRO - fianancial accountingnew- financial accounting global settings-taxes on sales and purchases and check tax codes for sales and purchases it will be specific for your country and assign tax codes.
    then go to the tab posting and there you can assign the tax codes for your account assignment category. this is done with respect to the chart of accounts.
    hope this helps.
    Regards
    Vignesh

  • HOW DO CHANGE  COUNTRY CODE FOR ITUNBES I STILL HAVE CREDIT IN ANOTHER COUNTRY?

    how do i change country code for itunes if i still have credit in another country?

    Click here and request assistance.
    (63856)

Maybe you are looking for

  • Outraged by lack of info in iTunes about iPad HDMI compatibility?

    I bought an iPad 2 as well as the HDMI adaptor so I could download movies on the go on my iPad and also watch them on my HD TV. Turns out that you can't watch every film you download through iTunes on your TV. So, I download The Princess Bride from i

  • Joining multiple inDesign files into one, can you solve this?

    OK so basically I work at a magazine, the creative's all work on separate spreads so all the inDesign files consist of between 1 and 10 pages then usually they are all spat out in there sets of PDF's and sent to the printers. Now I want to do an onli

  • Macbook Air HDMI adapter not working

    I know there are other threads about this but they are a bit outdated. So anyway I bought an hdmi adapter for my macbook air and it was working perfectly for about an hour and a half when suddenly the tv registered "no signal" yet the macbook was sti

  • Setting the image size within a JFrame!

    This is the code i have implemented import javax.swing.*; import java.awt.*; class SampleJFrame extends JFrame      JLabel l1;      ImageIcon image;      SampleJFrame()           image=new ImageIcon("G:/java files1/images/aa.jpg");           l1=new J

  • Is it possible to calculate AR Due Date via OM Order Date ?

    Hi everyone, Our customer enters Payment Terms at Order Entry (OM). Example: Order Date : 02.01.2009 Payment Term : 60 Days Net Shipment Date : 04.01.2009 AR- Transaction Date : 04.01.2009 Due Date has been calculated as : 05.03.2009 This means that