Diffrent depreciation area entry within one session w/o logging off

Hello friends,
I need your help for a problem. When I do OABW, It asks for a depreciation area. Ok .
I enter the depreciatio area [ USDB] and do some config change and save it, but now I want to
do some config change in another depreciation area.
What I tried: I tried to go back, but it takes me to SAP Easy Menu. I tried executing OABW
it didn't asked me the depreciation area pop up window instead it took directly to the change view
screen bypassing the depreciation area window.
But when I logged out..logged in and did OABW ..it now asked me to enter depreciation area.
How can I enter another  depreciation area without logiing off.
Please help if any one has a solution.
Regards,

Hi,
I assume you mean 'Chart of depreciation' instead of 'Depreciation area'.
Use transaction OAPL to set the chart of depreciation.
Regards,
Rob

Similar Messages

  • OpenDocument ReportPart (The session has been logged off or has expired)

    Hello,
    We are using OpenDocument-Links to embed 3 Report Parts in a single HTML site of the company.
    It works normally the first time, but after refreshing the site we get the error „An error occurred: Unable to reconnect to the CMS AbC. The session has been logged off or has expired. (FWM 01002)”.
    I think the problem is that 3 user sessions are opened at the same time, but should this be a problem?
    We have configured Windows SSO btw., so no login is needed.
    Any ideas? thanks!

    We discovered when we are using Google Chrome, where SSO is not supported, it works always.
    Any ideas what yould be the problem here with IE and SSO? We are using an iFrame for each report part. When we open the 3 report parts in 3 different browser windows it works, but not when we embed the report parts as iframes in a single html site.

  • Many portals within one session?

    Hello,
    I have created three different portals which all need to authenticate
    the user. Is it possible to get those three portals to use just one
    login page, I mean that the user won't have to login more than once? How
    are the sessions handled in Weblogic Servers? In weblogic.properties
    file you define a sessioncomparator for every portal, for my portals I
    am using com.beasys.commerce.portal.admin.PortalSessionComparator, but
    Buy Beans example portal uses
    com.beasys.commerce.axiom.jsp.DefaultSessionComparator, what is the
    difference between these two classes? Allow autologin between browser
    sessions can't be used.
    I am using Weblogic 5.1 and Personalization Server 2.0.1 with Commerce
    Server.
    -Maarit-
    Maarit Linnekoski          [email protected]
    tel. +358 (0)9 2311 6649     AtBusiness Communications Oyj                
    fax +358 (0)9 2311 6601     Itälahdenkatu 19,
    mobile +358 (0)50 569 3044     00210 HELSINKI, FINLAND

    Hi Ture
    I encounter the same problem for keeping login session across portals
    In your example, your invoke the method
    putSessionValue( SERVICMANAGER_USER, userLogin, request );
    Would you please tell me, how can I get the value of userLogin
    Thanks
    Warren
    Ture Hoefner wrote:
    Hello Maarit,
    Here are some answers for you.
    I have created three different portals which all need to
    authenticate
    the user. Is it possible to get those three portals to use just one
    login page, I mean that the user won't have to login more than once?
    How
    are the sessions handled in Weblogic Servers?Yes. You can navigate from portal to portal while maintaining the
    logged-in state of your user. You can do this by setting the
    "TRAFFIC.URI" request attribute equal to the URI of the portal you
    want to go to and then use the PortalJspBase.putSessionValue( ) method
    to put user and destination information into the session. Then you
    could use the PortalJspBase.setLoggedIn( ) method to set the logged-in
    status for the user in the new portal (also in the session) because
    now when you set session values with methods of PortalJspBase, they
    will be fixed up using the URI of the portal you will be going to.
    Therefore, the setLoggedIn( ) method works like it were invoked from
    the portal you will be going to. Then you could direct a request to
    the other portal.
    The PortalJspBase.putSessionValue( ) method "fixes up" the keys of
    the stored values by prepending a string that uniquely identifies the
    portal (made using the TRAFFIC.URI attribute) to avoid naming
    collisions (see javadoc at
    http://e-docs.bea.com/wlcs/javadoc/p13n/index.html ).
    Below is an example I got from someone who implemented such a
    solution (I have not tested it). They did not put values in the
    session for SERVICEMANAGER_SUCCESSOR or
    IMMUTABLE_SERVICE_MANAGER_HOME_PAGE, but they could have.
    Make your first JSP page extend PortalJspBase and do something
    like this (note that the constants that I have not declared come from
    interfaces that are implemented by PortalJspBase (see javadoc):
    <%! // Declaration
    public static final String MY_PORTAL_NAME = "MyPortal"; // portalname
    public static final String MY_PORTAL_URI = "/myportal"; // servlet name
    public static final String MY_PORTAL_DIR = "/myportal"; // workingdir
    %>
    <%
    // Get MyPortal
    String workingDir = MY_PORTAL_DIR;
    String thePage = getPortalManager(request)
    .getPortalFor(MY_PORTAL_NAME).getContentURL();
    // Set user and destination stuff
    request.setAttribute(TRAFFIC_URI, MY_PORTAL_URI);
    putSessionValue( SERVICMANAGER_USER, userLogin, request );
    putSessionValue( PORTAL_NAME, MY_PORTAL_NAME, request );
    putSessionValue( SERVICEMANAGER_HOME_PAGE, thePage, request );
    // Log in the user
    setLoggedIn(request, response, true);
    // Go there
    response.sendRedirect(getTrafficURI(request));
    %>
    In weblogic.properties
    file you define a sessioncomparator for every portal, for my portals
    I
    am using com.beasys.commerce.portal.admin.PortalSessionComparator,
    but
    Buy Beans example portal uses
    com.beasys.commerce.axiom.jsp.DefaultSessionComparator, what is the
    difference between these two classes?The <pt:monitorsession> tag uses a SessionComparator to see if the
    session is valid, and it can be used to disallow access to a page (see
    docs at http://e-docs.bea.com/wlcs/p13ndev/jsptags.htm#1024804
    You specify the SessionComparator that you want to register with your
    portal or personalized application in weblogic.properties with the
    sessioncomparator argument.
    The PortalSessionComparator and DefaultSessionComparator both
    implement the SessionComparator interface, which defines a single
    method, isValid( ) (see javadoc at
    http://e-docs.bea.com/wlcs/javadoc/p13n/index.html ) The
    DefaultSessionComparator class returns true for the isValid( ) method.
    The PortalSessionComparator additionally implements the
    PortalAdminConstants interface and checks session attributes to make
    sure that the minimum attributes are present for proper operation of
    the PortalServiceManager servlet. If you want to add requirements for
    a valid portal session, say that the "PREFERRED_CUSTOMER" attribute
    must be present and the value must be "true", then you would just
    extend PortalSessionComparator and register your new sessioncomparator
    argument in weblogic.properties.
    Notice that BuyBeans example portal does NOT use the
    DefaultSessionComparator. It uses the PortalSessionComparator. The
    BuyBeans demo has an example personalized application that is not a
    portal (registered as "/mpbb" with the JspServiceManager servlet)
    which is used to access an example portal (registered as "/mybuybeans"
    with the PortalServiceManager). The personalized application that is
    not a portal ("/mpbb") uses the DefaultSessionComparator.
    Good luck.
    Ture Hoefner
    BEA Systems, Inc.
    1655 Walnut Street; suite 200
    Boulder, CO 80302
    www.beasys.com
    [att1.html]

  • Revaluation of depreciation for prior year in alternative depreciation area

    Hi,
    I have a problem with a couple of assets. We are using 2 depreciation areas - one for statutory depreciation that is posted against GL accounts and one for fiscal purposes, which is only statistical.
    For some assets the depreciation key in the alternative, fiscal depreciation area was wrong in last two fiscal years. Is it possible to reopen that old fiscal years and change the depreciation area to correct one and revaluate the depreciation only in that parallel depreciation area? If yes - which steps should i carry out in SAP? This depreciation area does not affect GL accounts posting - so I hope it is possible.
    Thank you,
    Karol

    Hi Murali,
    Thank you for your reply.
    My only concern is - I don't want to affect the other depreciation areas (in case anything changed in their depreciation keys).
    Is there a way to just open past years only for this particular depreciation area and to rerun depreciation just for it?
    I thought of OAAR transaction - undo year end closing by Depreciation area - just to focus on it. Do you think it might work the same as AJRW, or should I use AJRW?
    Can I  run AFAR only for the selected depreciation area and it will not affect any other depreciaton area? We are using 4.6C version.
    Thank you,
    Karol

  • How to post depreciation to different depreciation areas

    Hi,
    Can any body explain how to post depreciation to different dep areas other than 01 book dep,
    and how to take the reports according GAAP and IAS.
    Regards,
    prasad

    Hi,
    When you create depreciation areas like Book, Tax, Costing etc., the system posts values like APC and Depreciation simultaneously in all the areas. You don't need to do any thing.
    Just posting values through F-90, F-92, etc and for Depreciation AFABN.
    This above holds good as long as you are posting to a single ledger.
    The above answer is slightly different in case you are having parallel ledgers. Let me explain by taking an example.
    Lets assume you are implementing for an Indian client whose parent compnay is in Dutch.
    As per Indian GAAP you need to submit the local reporting on April to March basis and for Ducth Jan - Dec.
    Assets in Indian GAAP are capitalised with values including frieght, Installation and trial run till Commencement date lets say @ 20%
    Assets in Ducth GAAP are capitalised with only Cost, Frieght & Insurance (This is only an example) and the depreciation rate is 15%.
    In this scenario you will be creating two ledgers(IN SAP sense and not the accounting GLs)  with different fiscal year variants and will be defining Leding ledger and Non leading ledgers and Ledger Groups.
    IN this case lets assueme Indian GAAP is Leading ledger and Dutch GAAP is Non Leading ledger and a ledger Group lets say "LG"
    When you post using the transation code FB01L you will be using ledgers or ledger groups that are effecting with this transaction.
    If you use the regular T codes without using the Ledger Groups, System posts the transaction to all ledgers simultaneously.
    When You want to post the transaction as I said in the above example, you will be using FB01L like capitalising total cost in "LeadingLedger" and upto CIF value to "Non leading ledger"
    NOw from the configuration front you will be creating seperate set of Depreciation keys for each GAAP and will be creating a  depereciation area for Dutch GAAP.
    You will also need to create a derived depreciation area which is the difference of Book Dep Area (as per Leading Ledger) and teh Duthc GAAP depreciation area (Non leading ledger). You can use the Wizard here which will guide you.
    For Book depreciation are its always realtime posting and for other areas its periodic posting. i.e. as a monthend process you need to do,
    For this you need to run TCODE ASKBN (Periodical posting ) anad AFABN.
    ASKBN checks for the difference in APCs, Depreciations, Loss or gain on account of retirements differently for diffrent depreciation areas and posts the values.
    When it comes to reporting all Standard reports will give you the flexibility of taking the reports based on Depreciation areas.
    You have a TCODE "OARP" where in you will get all the asset related transaction reports.
    The above scenerio is explained with an assumption of you using SAP Version above 4.7EE.
    Reward if you find this explanation useful.
    Sarma

  • Parallel Depreciation area

    Hi Fi gurus!
    Two Depreciation Area is required, one for Local Reporting and one for Group reporting. Depreciation area 1 has a minimum of 5000USD while Depreciation area 2 has only 500USD minimum amount acceptable for capitalization. In addition, they have different useful life. Any idea how to handle this in SAP?
    Please throw some light.
    Rose

    this t. ype do work in COD USD but not in USD2. Please advise what are i am missing here
    Regards
    Bali
    I checked the answer provide by yourself and
    1) your first reply - it look exactly same as you advise
    2) Also check the T.code OAXE and maintain the t.type 700 to dep area 99
         The T. Type 700 is assigned to COD GBP2 and only 01 is there with display selection.
    When I try to assigned Dep area 99 and error popped stated Transaction type 600: parallel depreciation area 98 is missing
    Please advise
    Regards
    Bali
    Edited by: Bali1972 on May 27, 2008 5:17 PM

  • Server 2012 R2 RDS – cannot log off user session

    We have a 2 server RDS RemoteApp Farm.
    One server is constantly leaving user sessions in a disconnected state without the ability to kill the session (rebooting is the only way); this is happing 1-2 times per week.
    Servers have been configured to kill a disconnected session after 10 minutes, but some disconnected sessions have been running for days.
    Below is a screenshot of the process running for two disconnected users sessions that I could not disconnect, rebooting the server was the only way of fixing this. No error's were generated when users disconnected the session.
    Is there a known fix for this?

    Hi,
    Did you apply session disconnected policy setting in your environment?
    There are different ways for getting user log off. As you have commented that it’s happening with specific user, once check whether the user profile is not corrupted or any other related case. Also it might relates that some application or related services
    is still running under user profile so that session cannot be logged off. You can also try PowerShell command to log off the user. Also with
    Query user command you can find the related session name and ID and then with “Logoff user command” you can logoff the specific user. 
    For policy related to session setting you can check beneath article. (point 1)
    [Forum FAQ] Restrict number of Active Sessions
    in RDS 2012 and 2012 R2
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Posting entry in one depreciation area

    Hi
    I am capitalizing one expense in company's act depreciation area (i.e. book depreciation area) and capitalizing it in another depreciation area (say IFRS depreciation area)
    How to do this in SAP
    Because i need to create asset master in one depreciation area and post acquisition and depreciation in one depreciation area.
    How to handle it in SAP asset Accounting

    Does it mean i need to create one transaction type and i need to limit it to one depreciation area   YES
    With the limtation from a new transaction type to that depreciation area you want to post to it is only posting in that depreciation area.
    It is not relefant if there are other depreciation areas in the master data from your asset for the posting

  • Stop depreciation and interest on one depreciation area

    We have area 01 depreciation and area 70 - which for us is a managerial (statistical) depreciation posting with interest.  When this depreciation and interest is posted the offset is to a contra account so when looking at the FI side it nets to zero.  The asset is owned by the leasing company and we indicate on the time dependant tab which operating company is getting the statistical depreciation and interest.
    Our issue is the they 'transfer' these assets to another operating company with a fair market value.  The asset itself does not leave the leasing company and true FI depreciation is not touched.  Since we need to show a new value for the asset for the statistical depreciation and it gets a new depreciation schedule we found creating a sub asset and doing ABSO to 'write up' area 70 with the FMV of the transfer amount allows us to start the statistical depreciation to the transfered operating company with no issues.  The issue is stopping the area 70 depreciation and interest on the main asset - to the first operating company. 
    I tried putting a scrap value equal to the remaining book value on the main asset in depreciation area 70 and that did stop the depreciation - but it's still trying to post interest for the next period and beyond. 
    Ideas?  Options you guys can think of?
    Thanks
    Karla

    Hi,
    a) Copy the retirement transaction to a new one and restrict it to post only in area 70. You can then completly dispose the asset in that area.
    b) Use/create a depreciation key in that area that has Shutdown = Yes. In the time dependant tab you can then set the asset to shutdown and it will stop depreciating.
    Kind regards

  • AA implement aaset value for only one depreciation area

    Hi,
    Is it possible change acquisition value of asset for only one depreciation area, the area 20 for example?
    By point of view of FI I can post the accounts of area 20 by  trx OASV,
    but in AA how can I do?
    If I use the trx AB01 the  acquisition value is modified in every area.
    Any assistance would be greatly appreciated.

    You upload the values in AM with the transaction AS91, this don't create postings in FI. It is possible to upload different values by depreciation area.
    With the transaction OASV you create manual the total postings in FI. An other option is to use the transaction  ABF1 (search on this forum with ABF1 how it is working)
    When an area post direct you have to use the transaction OASV (asset account is reconcilation accounts) for the other area you can use a standard FI posting.
    When you use AB01 you can create you own transaction type and limet them to one depreciation area or a group (tray to play with Tty 147, there you can fill in amounts by depreciation area.)

  • 07 Depreciation Area Accouting Entry Problem.

    Dear All,
    I  am  facing  07 Tax Depreciation Area Journal Entry Problem.It would be of Great help if You Provide your Valuable Suggestion / Comments. 
    The Net Effect is Correct for the Entry but Presentation is not Right.
    I am getting this entry in SAP 07 area for std cost.Assset Cost is 210.
    Dr T23056           210
    Dr E23057            90
    Cr E23057           -300
    I want E23057 Account also to be Credited by 210 instead of -300 & again debit to Same Account by 90.
    Pls suggest Where I am missing in Configuration.
    Thanks & Regards,
    Pankaj

    Hi,
    Check your COD config.
    I hope you are having 01,02, 03 and 07 as dep areas in your COD.
    First set your COD with OAPL.
    Use transactions OADB, and OADC.
    in OADB give posting in GL as 1 for dep areas, for which you want to adopt values to GL. For other areas put 0 in posting to GL, and select real dep area for all the areas.
    in OADC specify your dep area type for all the dep areas.
    Now OABC and OABD.
    Put proper settings for each dep area according to SPAIN country regulations.
    Thanks,
    Srinu

  • Creation of assets in only one depreciation area.

    hi
    We have a request to create several assets for an existing asset class (some of them with capitalization date in the past) such that the values reflect only in the local GAAP depreciation area 22.
    For example here is the requirement
    Asset Class     Asset     Description      Period      Year     Amount     Cost center     Comment
    1000     NEW     ABCD     1     2006     50000.00     12345     New asset for dep area 22
    1000     NEW     PQRS     2     2006     75000.00     67890     New asset for dep area 22
    Can someone please provide the steps do it

    Try AS91 to create and OASV to accounting depreciation

  • Why can't I save Tab Groups from one session to the next? When I restart, tab groups are cleared.

    Why can't I save Tab Groups from one session to the next? Is there a way to save Tab Groups from the last session to the next time I start up?
    Mark Kipperman

    Yeah, if this is the way it's supposed to work its a useless and, dare I say, stupid "feature". Wouldn't the whole point of this be to have quick access to groups of pages. If I have to select them each time to create the group what is it doing for me?

  • Deactivate Depreciation Area within Asset

    Hi all,
    When looking at a specific asset, we would like to deactivate a particular depreciation area which isn't required.  When we go into Display (AS03) the Deactivate check box is there, but when we go into Change (AS02) the box isn't there to tick/untick.
    Can anyone please tell us where to switch this function on?
    Many thanks,

    Dear
    Please check that authorizations
    Best Rgds
    Mani

  • How to move entry from one container to another

    Hi!
    We are using DBMS_LDAP package to attempt to move an entry from an LDAP container to another container. We have tried modrdn2_s (takes a session, the old dn, the new dn, and a PLS_INTEGER indicating whether or not to delete the old entry; or at least this is our interpretation of what the function does).
    Attempting to move an entry with this function gives the following error(s):
    ORA-31202:DBMS_LDAP:LDAP client/server error: Constraint violation.
    00002081:AtrErr: DSID--031D0809, #1:
    0: 00002081: DSID-031D0809, problem 1005 (CONSTRAINT_ATT_TYPE), data 0,
    Att d(description)
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_LDAP", line 1455
    ORA-06512: at "SYS.DBMS_LDAP", line 929
    ORA-06512: at "OURSCHEMA.OURPKG", line 606
    ORA-06512: at "OURSCHEMA.OURPKG", line 88
    ORA-06512: at line 45
    I can't look at the SYS.DBMS_LDAP code since that is encrypted.
    I am currently researching ORA-31202 and talking with my LDAP/AD administrator. However I'm still wondering if this is the function that I should use for this. Does anyone know of any examples for what I'm attempting to do?
    Marc

    I spoke to my Active Directory administrator, and he suggested that I try to pass a new DN as an attribute in the modifications array passed to the DBMS_LDAP.modify_s function:
    --- Start of Code Sample ---
    -- create the modifications array
    v_mod_array := DBMS_LDAP.create_mod_array(n);
    -- set other attributes here
    -- set the new distinguished name here
    vl_mod_values(i) := v_new_dn;
    DBMS_LDAP.populate_mod_array(l_mod_array, DBMS_LDAP.MOD_ADD, 'distinguishedName', l_mod_values);
    -- then call the modify function (the modifications array has all the other attributes plus the new dn)
    DBMS_LDAP.modify_s(session, dn, v_mod_array);
    --- End of Code Sample ---
    The above fails too with an ORA-31202 error (which my AD administrator has not solved yet). Still my question is if my approach to moving my entry from one container to another is correct, or if I should be trying some other method. BTW, the directory structure looks like this:
    +<Domain>
    +--<DC=myorg,DC=test>
    ----+--<OU=Team>
    --------+--<OU=Headquarters>
    --------+--<OU=Terminated>
    etc, etc.
    I want to move the entry from the OU=Headquarters container to the OU=Terminated container.
    Any help is dearly welcomed!
    Marc

Maybe you are looking for