Opem Item Management needs to be activated for GL Account

Hi Friends,
While creating GL A/c (Loss Claims Recoverble) not select Open item management.
I want to update the GL A/c with Open item management selection button in GL master.
While running program : RFSEPA02 giving Message as
"Do not use the report program to set up open item management for the account.
Create a new account with the correct account assignment. Post your items to the new account. If you want to use the original account number, you must bring the account balance to zero, change the account assignment, and repost the items. You can remove the old items by archiving the documents."
and coming out of the program execution mode.
What shall I do.
Regards,
Suresh
Edited by: Suresh Kumar on Sep 26, 2008 3:39 PM

Hi,
What is the process to revert line items to become account value Zero.(0),
Again how can we repost line items to the same account.
My idea is to revert entries through : F-02, is there any other way to revert open items.
Regards,
Suresh

Similar Messages

  • Open Item Management activation for GL accounts in ECC 6.00

    Hi Experts,
    There is an issue about Open item Management activation for GL line items of FBLL03 for VAT GL code. Unexpectdly do not check the open item management in VAT GL account Master record while created the GL master record in 2007. Now we activated Open item Management in GL master record for same GL to nulify the balances with setoff account and same reversed after activation. Now issue is how it is possible to activate Open item Management for previously posted documents ? Is there any standard SAP Program for ECC 6.00 Release SAP _APPL 600.
    Please revert.
    Best Rgds
    SumaMani

    Hi PVC,
    I got below mentioned message while execute the suggested program in SAP.Please suggest
    Do not use the report program to set up open item management for the
    account.
    Create a new account with the correct account assignment. Post your
    items to the new account. If you want to use the original account
    number, you must bring the account balance to zero, change the account
    assignment, and repost the items. You can remove the old items by
    archiving the documents.
    Best Rgds
    SumaMani

  • No externally managed transaction is currently active for this thread

    Got the following exception after updating an entity bean and call persist method. Code the given below the exception.
    Exception [TOPLINK-23010] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.exceptions.TransactionException
    Exception Description: No externally managed transaction is currently active for this thread
    public Object persistEntity(Object entity) {
    em.flush();
    em.persist(entity);
    return entity;
    private void modifyUser (Iuser user, String newHandle, Hashtable userDetails) throws UnknownException, WarningException {
    if (user == null) {
    throw new WarningException (new CatalogHelper("ITOOLS_000015", "to modify a user"));
    boolean handleUpdate = false;
    if ((newHandle != null) && !newHandle.equals("^\\s*$")) {
    handleUpdate = true;
    String oldHandle = user.getUserhandle();
    if (handleUpdate && oldHandle.equalsIgnoreCase(newHandle)) {
    handleUpdate = false;
    if (!handleUpdate && (userDetails == null) || (userDetails.size() == 0)) {
    return;
    if (handleUpdate) {
    userDetails.put("userhandle", newHandle);
    IToolsUtil.validateInputData("iuser", userDetails, false);
    if (handleUpdate) {
    userDetails.remove("userhandle");
    System.out.println("handleUpdate " + handleUpdate);
    // For User admin, handle, isactive, isadmin cannot be changed.
    if (oldHandle.equals("admin")) {
    if (handleUpdate) {
    throw new WarningException (new CatalogHelper("ITOOLS_000045", "Handle"));
    String active = (String)userDetails.get("isactive");
    if ((active != null) && !active.equals("Yes")) {
    throw new WarningException (new CatalogHelper("ITOOLS_000045", "Is Active"));
    String admin = (String)userDetails.get("isadmin");
    if ((admin != null) && !admin.equals("Yes")) {
    throw new WarningException (new CatalogHelper("ITOOLS_000045", "Is Admin"));
    System.out.println("user transaction started");
    if (handleUpdate) {
    FinderMethods fm = new FinderMethods();
    try {
    fm.findByUserHandle(em, newHandle);
    throw new WarningException (new CatalogHelper("ITOOLS_000043", newHandle));
    } catch (ObjectNotFoundException onfe) {
    user.setUserhandle(newHandle);
    System.out.println("User handle modified");
    } catch (SQLException se) {
    se.printStackTrace();
    throw new UnknownException (new CatalogHelper("ITOOLS_100000", new Object[]{"modifyUser", se.getMessage()}));
    String lname = (String)userDetails.get("userlname");
    if (lname != null) {
    user.setUserlname(lname);
    String fname = (String)userDetails.get("userfname");
    if (fname != null) {
    user.setUserfname(fname);
    String email = (String)userDetails.get("useremail");
    if (email != null) {
    user.setUseremail(email);
    String passwd = (String)userDetails.get("userpasswd");
    if (passwd != null) {
    user.setUserpasswd(passwd);
    String active = (String)userDetails.get("isactive");
    if (active != null) {
    user.setIsactive(active);
    String admin = (String)userDetails.get("isadmin");
    if (admin != null) {
    user.setIsactive(admin);
    System.out.println("details are updated");
    persistEntity(user);
    System.out.println("committed");
    How to resolve this issue? I am using Jdeveloper 10.1.3.0.4 (SU4)
    regds
    -raju

    The stack trace is given below. This exception is occured at "em.flush()" method. I even tried removing em.flush() method. Even then I got the same exception.
    I tried a different way of overcome this problem. Used UserTransaction instance say "ut" before create / modify the entity bean and later comitted. In that case I am not getting any exceptions. However, commit is happening only when new instance is created, commit works, but modification of an existing instance, commit is not working. Looks like there is some serious problem with EJB 3.0 in OC4J. Basic functionality is not working.
    Stack trace when flush method is called:
    Local Exception Stack:
    Exception [TOPLINK-23010] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.exceptions.TransactionException
    Exception Description: No externally managed transaction is currently active for this thread
         at oracle.toplink.exceptions.TransactionException.externalTransactionNotActive(TransactionException.java:98)
         at oracle.toplink.internal.ejb.cmp3.transaction.base.JTATransactionWrapper.checkForTransaction(JTATransactionWrapper.java:39)
         at oracle.toplink.internal.ejb.cmp3.base.EntityManagerImpl.checkForTransaction(EntityManagerImpl.java:322)
         at oracle.toplink.internal.ejb.cmp3.base.EntityManagerImpl.getActiveUnitOfWork(EntityManagerImpl.java:314)
         at oracle.toplink.internal.ejb.cmp3.base.EntityManagerImpl.flush(EntityManagerImpl.java:164)
         at com.itools.vs.model.session.AdminSessionBean.persistEntity(AdminSessionBean.java:57)
         at com.itools.vs.model.session.AdminSessionBean.createUser(AdminSessionBean.java:124)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Stack trace when persist method is called:
    Local Exception Stack:
    Exception [TOPLINK-23010] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.exceptions.TransactionException
    Exception Description: No externally managed transaction is currently active for this thread
         at oracle.toplink.exceptions.TransactionException.externalTransactionNotActive(TransactionException.java:98)
         at oracle.toplink.internal.ejb.cmp3.transaction.base.JTATransactionWrapper.checkForTransaction(JTATransactionWrapper.java:39)
         at oracle.toplink.internal.ejb.cmp3.base.EntityManagerImpl.checkForTransaction(EntityManagerImpl.java:322)
         at oracle.toplink.internal.ejb.cmp3.base.EntityManagerImpl.getActiveUnitOfWork(EntityManagerImpl.java:314)
         at oracle.toplink.internal.ejb.cmp3.base.EntityManagerImpl.persist(EntityManagerImpl.java:74)
         at com.itools.vs.model.session.AdminSessionBean.persistEntity(AdminSessionBean.java:57)
         at com.itools.vs.model.session.AdminSessionBean.createUser(AdminSessionBean.java:123)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)

  • What needs to be activated for ECC 6.0 EHP5

    Hi All,
    Enhancement package 5 (EHP5) is insatalled in my project server. However I am not able to see the PS functions (Intermediate save, ACL...).
    Is there any particular component has to be activated for PS???
    Regards
    Prabu K

    Hi Prabu,
    Please search in forum, you will get detailed answer. To get you started check tcode SFW5.
    Regards
    Shrikant

  • I want to define a concurrent manager to be only used for create accounting

    Hello
    Our create accounting results in few entries not being posted to GL.They remain stuck with status of processing
    I researched and found out that I have to have more concurrent managers.
    So i am thinking of defining more concurrent managers solely for create accounting process.
    Can anyone please tell me how would i define and restrict them for only create accounting process and limit its usage only for specific users?
    We are using 12.0.6 and db 10.2.0.2.0
    Secondly, I applied the trial balance remodel patch 4 on test server..after that create accounting is resulting in error or warning
    Please advice

    Hi,
    So i am thinking of defining more concurrent managers solely for create accounting process.
    Can anyone please tell me how would i define and restrict them for only create accounting process and limit its usage only for specific users?Have a look at this thread.
    Creating new custom concurrent manager
    Re: creating new custom concurrent manager
    Regards,
    Hussein

  • Need help with Rules for mail accounts

    Today I deleted a rule for a mail account and now I cant receive mail in 4 of 8 accounts. I'm not experienced with Mac's Mail program. Id there something you have to do for multiple accounts to recieve all mail? I can send but not receive.
    Help!
    ~ Tammy

    It's hard to believe that deleting a rule could have a bearing on the ability to receive messages from any account... unless that rule did something that prevented subsequent rules to process the messages that you apparently can't receive now.
    That is, either having deleted the rule has absolutely no bearing on your problem, or the problem is that those messages are now being processed in an unexpected way by some of your other rules.
    What type of accounts are these (POP, IMAP, .Mac)? What does "I cant receive mail in 4 of 8 accounts" mean?

  • FSCM BADI's need to be activated for ECC 6.4

    Hi Gurus,
    Could you please help me in implementing BADI's for Master data, these are the BADI's provided by SAP standard,
    MAP_PARTNER_2_CUSTOMER
    MAP_CUSTOMER_2_PARTNER
    MAP_CONTACTPARTNER_2_CONTACT
    MAP_CONTACT_2_CONTACTPARTNER
    Do we need implement above ones and also help me with step by step process in achieving the distribution of data to collections management.
    Best Regards,
    Sai

    Unless you have some very specific custom need, you wouldnt have to activate/implement these BADIs.
    In order to achieve distribution of data as per co code functionality, make sure that all the required settings under the following  node in SPRO
    FSCM -- Coll M -- Integration with AR -- Distribution of data in CM
    Once all settings are in place, plz run the prog --> FDM_COLL_SEND_ITEMS or tcode FDM_COLL_SEND01 and send data according as per your reqmnts.

  • Is iCloud needing to be activated for 10.8 to run smoothly?

    I am moving to 10.8 from 10.6. 
    I read that in 10.8 iCloud is pretty actively promoted by Mac and many application will ask for it to be on.  Is it possible to have it run 10.8 without turning iCloud on?  Anything I need to do to make sure it runs smooth?
    Thanks.

    Also, it will work properly without iCloud. Before upgrading, make a backup of your files with Time Machine, Carbon Copy Cloner or Disk Utility's Restore feature, and check that your applications are compatible > http://www.roaringapps.com

  • Activate Open Item Management for a tax GL account

    Hi experts
    I have tried different options and explored forums but haven't been able to find the solution as yet.
    I have some tax GL accounts (Tax Category field in their GL master is < or > i.e. Input or Output Tax Account). There have been postings to these accounts but these accounts are not open item managed. To perform clearing for these accounts, I need to activate OIM for which I'm trying FAGL_ACTIVATE_OP but the system gives me error"
    "Not possible to determine tax indicator in company code xxxx
    Company code xxxx is not considered for the activation"
    When I further drilldown the error, i find the following information:
    Diagnosis
    Postings to the selected account require a tax code. On the basis of the company code data (T001), the system tried to determine a tax code for zero tax. However, there is no such tax code stored for the company code.
    Procedure
    Specify the tax code for zero tax in the company code. You do this in Customizing for Financial Accounting Global Settings (New) under Assign Tax Codes for Non-Taxable Transactions.
    I have checked settings in OBCL for Non-Taxable Transactions and found that I0 and O0 are maintained for Input and Output tax (also tax jurisdiction). In Table T001 I also find these entries so these seem to be complete.
    Can somebody please help me sorting out this issue.
    Many thanks!
    Moazzam

    Hi,
    Some G/L accounts cannot be managed on an open item basis,
    specially G/L accounts that are used in account determination for
    automatic transactions (ie: accounts set up as bank accounts, Tax
    accounts, raw material accounts, reconciliation accounts, profit and
    loss accounts).
    It is the standard design of the FAGL_ACTIVATE_OP that there is no
    conversion of a tax account to open item management.
    Processes as the posting of the sales/purchases tax payable do not
    process any clearing transactions therefore the open item management is
    not necessary. Clearings must really never be posted to an input VAT or
    output vat tax account, otherwise it would prevent subsequent processes
    on the actual open items (Customer or vendor). The only tax account on
    which the open item management should be possible is the G/L account of
    the deferred tax.
    Hope my information was helpful for you.
    Regards,
    Cristiano

  • Activation of open item management for loans taken.

    Dear Experts,
                          How to activate opem item management for loans taken. Also how to link a vendor to business patner if both are same.

    Hello,
    In your case, though balance is ZERO, they are not cleared against each other. It is the reason you are still facing the problem.
    If ther is no open item management check box, then copy program RFSEPA02 to ZRFSEPA02 and append the initialization control.
    If there is already open item management but you want to remove then copy RFSEPA03 to ZRFSEPA03 and append the initialization control.
    Do the following steps:
    1. Block the account for postings (all check boxes) in FS00
    2. Run the customized Z program (Give the company code and account number)
    3. Unblock the account for postings (remove all check boxes) in FS00
    Take help from your ABAPer to stopping the initilization error check.
    Hope this solves your issue.
    Regards,
    Ravi

  • Change Open Item management for FX valuation

    Hi,
    We have one case here where one GL had Open item management and it was revaluated with open items using an adjustment account. It ws done for a while and the user realize that this account was needed to be revaluated with the same account.
    Therefore, they remove the "open item" mark to the account and fill the "Exchange  rate diff key" in the master data and set up the KDB transaction for the FX valuation without open item. But the system is still working as before, the account is revaluated with the Adjustment account instead with the same account. It seems that the change from "open item" to NON open item is not working.
    Any advice?
    Thanks a lot,
    Adela.

    Hi,
    See the  Note 203329 - RFSEPA02 generates FH099 alth. balance = item total
    Symptom
    Report RFSEPA02 generates the error message FH099: 'Line item total does not tally with account balance' although the item total tallies with the balance and SAPF190 does not show any differences.
    Additional key words
    RFSEPA01, FIINCON
    Cause and prerequisites
    Open item management has already been activated once and items were cleared so that cleared items exist in the system for the account. These are not taken into account during the check of the item total with the account balance and cause the error message.
    Solution
    Reset the clearing transactions using Transaction FBRA.
    Thanks & Regards,
    Shashi Kanth

  • Change Open Item Management for GL accounts

    Hi All,
    Good Day.
    I would like to asked if you have any idea on how to solve the error we encountered upon opening our open item management for our GL? The error is Line item total does not tally with account balance. Message no. FH099.
    We have a Z* program customized from program RFSEPA02, we test it out in our QA and it was working fine. Even if the GLs has balance in QA.
    But when we transfer it in Production, we encountered this kind of error.
    Any idea how to solve it, i tried reading other questions on this forum with the same error, but i cant find any solution specific for this error.
    Please help.
    Thank you.

    Hi,
    See the  Note 203329 - RFSEPA02 generates FH099 alth. balance = item total
    Symptom
    Report RFSEPA02 generates the error message FH099: 'Line item total does not tally with account balance' although the item total tallies with the balance and SAPF190 does not show any differences.
    Additional key words
    RFSEPA01, FIINCON
    Cause and prerequisites
    Open item management has already been activated once and items were cleared so that cleared items exist in the system for the account. These are not taken into account during the check of the item total with the account balance and cause the error message.
    Solution
    Reset the clearing transactions using Transaction FBRA.
    Thanks & Regards,
    Shashi Kanth

  • Open item management tick status for all gl

    is thr any  t.code by which we can check on which gl the open item management tick available on our chart of account in fs00...?

    Hi,
    1. First got to the transaction se16 , give  table  T001 and give the COA in the field KTOPL then derive all the respective CC(BUKRS) assigned in it.
    2. Then Go to SKB1 and give all the field values in BUKRS which are derived above and flag the field XOPVW as "x" and execute
    Now you are going to get all the OI mgmt enabled GL accounts for a particular COA.
    Definately this is going to resolve your Querry.

  • Post open items with clearing for a account nt previously open item managed

    Hi,
    We have a current VAT account which was not open item managed till April 2008. Since the account has a zero balance we were able to make it open item managed from May onwards.
    Using transaction code FS10N we see that there are some items which are open  (type SB and SA). We want to post these items with clearing.
    Moreover the postings made in the vat account are done every month but they are manual postings only using T.Code FB50 and as checked using the transaction code OB40.
    We are not also allowed to run program RSEPA02. as this is not a standard program and not recommended to be run by SAP.
    Could anyone please sujjest how can we post the previous items with clearing.
    Thanks and regards,
    Priyajit.

    Hi,
    In this case when you are shifting account from open item to non open item all the open item debit and credit side to a dummy account and when account is converted into open item you have to reverse the earlier entries.
    Check this with what exactly you have done.
    Assign points if solved the problem.
    Warm Regards
    Edited by: MILIND on May 20, 2008 10:29 AM

  • Open item management- prob

    Frnds
    By some of the configuration mistake, we are not managing the Check Out A/C (Bank Clearing A/c) on an open item management.
    But now we need to keep it on opem item management, but there are already some opem items, which was created at the time of vendor payments.
    1. as i know that we can chagne it to the open item management, but we have to clear those open items.
    2. as someone suggested to open another GL acct and post all the opem item to tht A/c, but we do nto want to change the GL A/C no because we have done account determination in Automatinc payment program and Bank statement Reconciliation.
    please suggest the right way to do it
    THanks

    Sure
    actually i noticed it later, i am sorry for tht

Maybe you are looking for