AUC Settlement - values are not updated in all depreciation areas

Dear Friends,
I got a problem with Asset AUC settlement.
We have created a AUC, while creating asset master, we mistakenly deactivated one of depreciation area(area 70). After few days my user run settlement (in the year 2014). When user run settlement all values move to new asset except depreciation area 70 because in AUC asset area 70 is deactivated. But in new asset area 70 is required.
Now user realised it, is there any way to enter values in area 70, becuase we are using parellel ledger concept, area 70 is assigned ot one ledger when user run GL balances system showing differences in balances.
Please help me to solve this issue.
Thanks
Sudheer

Hi Sudheer,
This t.code will activate the dep.areas for all existing assets. If you want to activate for specific assets, then it is not possible. Alternatively, you select the check box "Leave values initial" and run the program. Here the check box will not update any values for the new dep.area for the existing assets. After that create a custom transaction type and limit the transactions for the new dep.area, after that do posting for the asset which you want postings.
Regards,
Mukthar

Similar Messages

  • ICloud playlist are not updated correctly, iCloud playlist are not updated correctly

    I have configured multiple iTunes playlists on my iMac (which is using iTunes Match).
    Some of these are not properly updated on my iPhone 4S.
    For example I had a playlist folder Genre and in there a Sports (just a simple playlist, not even a smart one).
    I decided to move the Sports playlist to the toplevel so that I can more quickly access it when running.
    Well this playlist just remains in the Genre folder on my iPhone... I tried killing the Music.app, rebooting the iPhone.
    Nothing works.
    I renamed the folder from Genre to Test on my iMac and now I see the Sports list in the Test folder on my iPhone.
    What is going on ? How can I properly organize my playlists/smartplaylists so that they sync correctly (including re-arranging or renaming playlists) ?

    When I disable iTunes match on my iPhone4S, quit the Music.app and then re-enable the iTunes Match on my iPhone4S it suddenly starts working. I don't want to do that everytime I changed my playlist on my iMac!!!

  • 2LIS_02_S896 issue : Records are not updated into BW

    Hi
    ->We use 2LIS _ 02 _ SCL extractor to pass PO's to BW with delta.
    ->Works fine until the last week ,
    ->But on a particular date ( 15.05.2007) some of the records are not updated in BW.They are even not found at PSA level itself
    ->For eg for a material X there are two entries found in R/3 ( MB51 ) for the same posting date, now one of them is picked in BW (PSA level ) and other is not.
    ->There was no load fail / delta fail in BW and there is no exit written for this.
    ->Records are not updated in RSA3.
    Let me know how this issue can be fixed.Its urgent.
    Thanks,
    Jilani

    Hi Gagan,
    Kindly check if you have any selection restrictions in your infopackage.
    Regards.

  • Qty and value in PO list are not updated (after a Service Entry)

    Hi Experts,
    Qty and value still to be delivered in the ME2L are not updated:
    I have performed a service entry (ML81N) but qty and value are not updated in the list of the PO in the ME2L.
    Could anyone explain?
    Many thanks in advance.
    Regards,
    Cesar

    Thanks for quick reply.
    I do not configure anything in SPRO (Define release strategy for SES) but I got a red light in the top of the screen near the field "No acceptance" so I presume that the SES should be accepted but as I do not configure anything regarding release startegy, I do not know how to accept the SES.
    Besides, I cannot perform MIRO: when I put the PO number, system indicates that there is no (suitable) item found for PO
    I should have miss something. Could you please guide me?
    Thanks,
    Cesar

  • Excise values are not updating in factory sales

    Dear SCN's,
    I'm facing an issue while doing factory sales, while creating sales order and billing I'm using J1IIN for excise invoice and then updating in J1I5 transaction but the values are not updating in table J_2IRG1BAL. Can anyone suggest what to do in order to get the values updated in table.
    Thanks & Regards,
    Kumar

    The following note explains how you need to update J_2IRG1BAL table.
    Note 951955 - CIN: General clarifications for RG1 goods
    Have a look at this.
    G. Lakshmipathi

  • Custom propertie's values are not updated for workflow metadata

    Hi,
    I've a requirement where I need to add and update some properties. to /etc/workflow/instance/<Instancename>/data/metadata node.
    I've two workflow Process steps,
    Process step 1:
        Adds some properties to metadata.
    Process step 2:
        Updates the propertie's values which are added in Process step 1.
    But the issue is update is not working when the node is /etc/workflow/instance/<Instancename>/data/metadata.
    i.e. In the step 1, Properties are added to metadata node but In the step 2 propertie's values are not updated to the same node.
    Here is my process code:
    =================================================
    import java.util.Locale;
    import java.util.StringTokenizer;
    import javax.jcr.Node;
    import javax.jcr.Session;
    import org.apache.felix.scr.annotations.Component;
    import org.apache.felix.scr.annotations.Properties;
    import org.apache.felix.scr.annotations.Property;
    import org.apache.felix.scr.annotations.Reference;
    import org.apache.felix.scr.annotations.Service;
    import org.osgi.framework.Constants;
    import javax.jcr.Value;
    import com.adobe.granite.workflow.WorkflowException;
    import com.adobe.granite.workflow.WorkflowSession;
    import com.adobe.granite.workflow.exec.WorkItem;
    import com.adobe.granite.workflow.metadata.MetaDataMap;
    import com.adobe.granite.workflow.exec.WorkflowProcess;
    import com.adobe.granite.workflow.model.WorkflowModel;
    import org.apache.sling.api.resource.ResourceResolver;
    import org.apache.sling.api.resource.ResourceResolverFactory;
    import org.apache.sling.jcr.resource.JcrResourceUtil;
    import org.apache.sling.api.resource.PersistableValueMap;
    import org.apache.sling.api.resource.PersistenceException;
    import org.apache.sling.api.resource.Resource;
    @Component
    @Service
    @Properties({
           @Property(name = Constants.SERVICE_DESCRIPTION, value = "Test"),
           @Property(name = Constants.SERVICE_VENDOR, value = "Adobe"),
           @Property(name = "process.label", value = "Test 1")})
    public class Test1 implements WorkflowProcess
        @Reference
        private ResourceResolverFactory resourceResolverFactory;
              public void execute(WorkItem workItem, WorkflowSession wfsession, MetaDataMap metadata)
                                  throws WorkflowException {
                        System.out.println("Testing");
            try{
                ResourceResolver resolver;
                resolver = resourceResolverFactory.getAdministrativeResourceResolver(null);
                String instancePath = workItem.getWorkflow().getId();
                Node instanceNode=null;
                Session jcrSession = wfsession.adaptTo(Session.class);
               String payload = (String) workItem.getWorkflowData().getPayload();
               //instanceNode=JcrResourceUtil.createPath(payload+"/jcr:content", "nt:resource","nt:resource", jcrSession, true);
                                  instanceNode=JcrResourceUtil.createPath(instancePath+"/data/metaData", "nt:resource","nt:resource", jcrSession, true);
                                  System.out.println("Test: instance PAth:"+instanceNode.getPath());
                Resource resource = resolver.getResource(instanceNode.getPath());
                    if(resource != null)
                        PersistableValueMap valueMap= resource.adaptTo(PersistableValueMap.class);
                        valueMap.put("name", "Rajesh");
                        valueMap.put("id", "A002");
                        valueMap.put("designation","SE");
                        valueMap.save();
                        System.out.println("Name:"+valueMap.get("name"));
                        System.out.println("Id:"+valueMap.get("id"));
                jcrSession.save();
                resolver.close();
            }catch(Exception e)
                System.out.println("Exception:"+e.getMessage());
    ===================
    The code works fine when the node is payload/jcr:content.
    Note : Process 1 and Process 2 code is same expect the values I'm passing to the PersistableValueMap.
    Any pointers would be more helpful..
    Thanks
    Siva

    Is there anything wrong in my code/ it's a bug..  
    Thanks
    Siva

  • GR's are not updating "Actual" Value under the limit tab in PO

    Hi Friends
    Can anyone tell me the possible solution for GR's value are not updating in the "Actual" Value under the limit tab in the service PO.
    Thanks in Advance

    Hi,
    I hope this is a service PO with item category D and the GR you mean is the service entry sheet.
    Do you have an entry in the Purchase order history for the PO for this?
    Do you have an acceptance for the service entry sheet which is complete?
    Best regards,
    Sridhar

  • What do i do when iPhoto Deletes my recent pic's all the way to 2010????? i opened the program and it said i needed to update my library otherwise i wouldn't be able to view the images that were not updated-- and now they are gone!!!!!! WHat do i do!!!!!!

    what do i do when iPhoto Deletes my recent pic's all the way to 2010????? i opened the program and it said i needed to update my library otherwise i wouldn't be able to view the images that were not updated…… and now they are gone!!!!!! WHat do i do!!!!!!  Is this some type a virus???? my mac is protected!!!!! tried to chat with an IT person but they keep asking if its like a tech problem and it is just iphoto

    You should get your keyboard checked as it's repeating  on a lot of keys and makes you look silly.
    There are 9 different versions of iPhoto and they run on 9 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • KP06 Plan Values are not updating in Cost center  report

    Hi,
    I have configured KP06 and uploaded through excel,It is getting uploaded successfully.
    But after uploading planned values are not updating in the S_ ALR_87013611 Report.
    What could be the reason.kindly give me some inputs regarding this.
    Thanks
    Supriya

    Hi Supriya,
    After uploading the entries have you saved or have you verified with excel values.
    Please check.
    Sateesh

  • Data Migration Opening Balances are not updating in the Report F.08

    Hi,
    We have uploaded the GL balances in 2008 for the year 2007. But they are not updating in the F.08 report when i executed for 2008.
    Why they are not updating in the report. In which table can i check the Data migration values in the system?
    Thansk
    Kishore

    Hi We have uploaded all the values in 2008 with 2008 date. fiscal year is K4.
    F.08 Report for the year 2008 is showing only 2008 accumulated values. But not showing the Opening balances which we have uploaded in 2008 for the before years like 2007.
    Why it is showing like that?
    Thansk
    kishore

  • Condition Value is not updated

    Hi All,
    I am using bill of services, so i have a sales order and as a subsequent document a service entry sheet, my invoice is created with reference to the service entry sheet.
    In my price procedure i have a percentage guarantee condition.
    In the sales order i insert a percentage for the condition, afterwards i create a service entry sheet with reference to the sales order and all the conditions values are copied correctly, till here everything ok.
    In the SES i change the guarantee condition value and then i create the invoice, but the guarantee condition value is not updated and takes the value i inserted before in the sales order.
    I already tried to change the condition copy control but no sucess.
    Anyone can help me with this issue??
    Thank you.
    Best Regards,
    Tiago Ferreira

    Hi Madhu,
    Here is my code:
        SALES_CONDITIONS_IN-ITM_NUMBER = I_UPLOAD-ITMNUMBER.
        SALES_CONDITIONS_IN-COND_TYPE = I_UPLOAD-COND_TYPE.
        SALES_CONDITIONS_IN-COND_VALUE = I_UPLOAD-COND_VALUE / 10.
        APPEND SALES_CONDITIONS_IN.
        CLEAR SALES_CONDITIONS_IN.
        SALES_CONDITIONS_INX-ITM_NUMBER = I_UPLOAD-ITMNUMBER.
        SALES_CONDITIONS_INX-COND_TYPE = I_UPLOAD-COND_TYPE.
        SALES_CONDITIONS_INX-UPDATEFLAG = 'U'.
        SALES_CONDITIONS_INX-COND_VALUE = 'X'.
        APPEND SALES_CONDITIONS_INX.
        CLEAR SALES_CONDITIONS_INX.
    I am just creating a CMR with reference to billing document. Its creating condition recod 'ZAP0' correctly, which i am passing manally. But, its not  populating condition value to levy condition it should determine automatically.
    Please suggest.
    Regards,
    Srikanth.

  • Excise details are not updating in MIGO

    hai, i am working with CIN,,i raised a Purchase Order and all the taxes maintained are updating in Invoice tab of PO...
    whn i am tryimg to enter GR ,
    the excise Invoice and excise item tabs are displaying but the excise values(BED,AED )are not updating frm PO..
    can anyone help me

    Hi,
    1) check whether u have mantained the Default condiition types in CIN settings.
    Path SPRO->Log Gen->Tax on goods movt->india->maintain Excise defaults.
    2)Check the JMX1,JEX1,JHX2 condition maintained as 100% in FV11
    regards,
    sujit

  • Excise rates are not updated

    Hi friends
    When i am creating ARE3 document, in item details Duty rates tabe- excise rates are showing 0, whereas Duty values are coming,
    I have checked in table j_1iexcdtl - duty rates are not updated and duty values are updated
    How to update the table j_1iexcdtl
    Thanx and Regards
    srini

    Dear MBS
    Thanks for reply
    I am doing deemed export process
    I am using TAXINN calculation procedure and pricing procedure was ZDEEM.
    as you said i have already done the classify condition types as below
    ZDEEM - JEXP - BED percentage
    ZDEEM - JECS - ECS percentage
    ZDEEM - JA1X - AT1 percentatge
    I have checked the table and it was updated,
    now i am trying to create ARE3 document but the values are not coming into ARE3 document, only ECS percentage is coming and all the values are showing 0
    and how to resolve the issue
    Regard
    srini

  • Hi. My itunes library is in current 10.5.2 but my old ipod touch 4th or 3rd gen is not updating at all its still in current 4.2 and there is some apps i cant download that requires a 4.3 update but in my itunes it wont. Please help!

    Hi. My itunes library is in current 10.5.2 but my old ipod touch 4th or 3rd gen is not updating at all its still in current 4.2 and there is some apps i cant download that requires a 4.3 update but in my itunes it wont. Please help!

    Are you sure you have a 4g/3g iPod?   If you don't have a camera, it's definitely not 4G.  If it has no camera and is 8 or 16 Gb it is a 2G and can't go beyond 4.2.1. 

  • Contract Release Value is not updated with Confirmation or Invoice value

    The release value for a contract in SRM EBP shows the value of purchase orders created using that contract.  It does not take into account confirmation and/or invoice values.
    For example I create a PO for 10 items at £100/each using Contract ABC.  The total value of the PO is £1000 and the release value contract ABC would be £1000.  If I then only confirm and invoice 5 items (£500) for the PO, the release value of contract ABC stays at £1000 even though I would expect it to update to £500
    Therefore the release value of the contract could be incorrectly overstated if purchase orders are created against the contract but not actually invoiced/confirmed for their total value.
    Please could you confirm the correct functionality and how I could find out the the true invoice value of purchases made using a contract?

    Hi
    <u>Which SRM and R/3 versions are you using ?</u>
    <b>Meanwhile, please go through the following SAP OSS Notes, which will help in this case -></b>
    Note 622045 Net value in release overview of contract is incorrect
    Note 493519 Release quantities are not updated
    Note 1108322 BBP_CONTRACT_CHECK wrong calculation of values
    Note 1102886 Contracts: Lesser Field length for Target Value
    Note 1082548 Check of Released quantity and released value in contract
    Note 656181 Release synchronization of releases on services
    Note 874920 Currency not allowed to be changed for a 'Released' Contract
    Note 703771 Resetting release values during purchase order item deletion
    Note 643823 BLAREL: Incorrect values in service segment
    Note 519879 BBP_CTR_MAIN: No message when values in Contract are reset
    Note 520734 Target value not converted if currency is changed
    Note 528897 Documents not displayed in contract release order overview
    Note 430373 BBP_CON_MNT: No releases available
    Note 491993 Entry of contracts with target values
    Note 437491 Purchase contract: Incorrect update of the call-off values
    Note 406799 BBP_CON_MNT: Fields after contract release ready for input
    Note 398168 Purchase contract: Target value is not changed
    <b>Do let me know.</b>
    Regards
    - Atul

Maybe you are looking for

  • Using "-" in a variable without calculating

    This should be an easy one... when I have a # in the output, to cancel it out, I add another one (ie. color=##ffffff). But I'm having problems with the same type of thing if I use a hyphen/minus sign "-". I have three variables that I'm trying to mer

  • Changing Row Color In JTable !

    Hi friends I have two JTables. The first one has 7 columns and 10 rows (with data) but the second one is empty. The user can choose one row from first table and by pressing the ((copy)) button , copy that row to the second table. Is it possible to ch

  • Too many photos....Too many places....Too much of a newbie

    I am currently working on a windows based computer...Have just purchased a Macbook Pro, cs5 upgrade and  LR3....Still waiting for both to come UPS but have started reading a quick start guide on LR3.....I have approx 10,000 photos on my old laptop an

  • Screen Scraper in Java

    If I have a checkbox on Line 1 and Line 2 and to the right of these I have text, is there anyway to "scrap" or get this text depending on whether the checkbox has been clicked on (visable) ? I assume I have to have some sort of listener for this and

  • Why do my 2 iphones ring at the same time even though they have different numbers?

    Why do my 2 iphones ring at the same time even though they have different numbers?