Scrap Asset and its sub assets in one transaction code

Please suggest if it is possible to scrap an asset and all its sub assets in one transaction as opposed to scrapping them separately in ABAVN.
regards
Rekha

Click on the button Multiple assets and fill in there the main asset and sub numbers. You have to fill them all in. There is no transaction that you can do this with filling in only the main-asset number

Similar Messages

  • How to differentiate migrated assets and newly purchased assets?

    Hello Experts,
    I would like to make a report for fixed assets, and that report has a field for beginning balance.
    I have a question on this beginning balance field.
    As you know, we have migrated fixed assets from legacy system and new assets that are purchased at SAP system.
    When I make above report, how do I differentiate migrated assets and newly purchased assets from the beginning balance point of view?
    Please let me know the database fields to classify above two things.
    Thanks.
    BR,
    Chris

    Hello Lakshmaiah and Ajay,
    The reason we want to have this kind of report is that this one is for tax reporting.
    As Ajay mentioned, SAP standard asset reports like S_ALR_87011990 is good but they are not enough.
    When I looked around some tables related to fixed asset values, I found out there are 2 fields might be related to above questions.
    They are ANLC-KANSW and ANLC-ANSWL.
    There is no value at ANLC-KANSW field in SAP cut-over year if it is new asset, and ANLC-ANSWL has no value if it is migrated asset.
    I guess if I use above 2 fields, I might be able to classify two things.
    Do you guys agree with me?
    Thanks.
    BR,
    Chris

  • HT5961 I reset my iphone and its asking me for my verification code. What am I supposed to put?

    I reset my contents and setting and its asking me for a verification code. I have submitted different codes but its not letting me in. What am I supposed to put?

    To remove the Restrictions passcode you will need to Restore the Device as New...
    You will not be able to perform a backup as this would include the Restrictions passcode... which is what you have to remove...
    Details Here  >  http://support.apple.com/kb/HT4137

  • Planned order and Production order Not appearing cm21 transaction code

    Hi
    I have created a planned order for a material through MRP run
    As soon as the planned order is created its available in the cm21 transaction code . But once i dispatch the planed orders , the planned orders can be seen only as a BAR in the upper right side of the screen .
    1.Can any body please let me know how i can view the details of this dispatched planned orders in the same way when the planned orders were un dispatched ?
    2.If i create a production order manually or convert a planned order to production order i cannot see these production orders in cm21 neither on cm22 , can any body please let me know what i have to do so that i can view these production orders as well in cm21 or cm22 transaction code.
    Thanks and regards
    Sankar N

    Hi Pradeep
    I have checked the generate capacity requirements and it worked ,Thank you
    Presently i can view only the work centre details in cm21 screen extreme left , how can i see the details of the orders that are dispatched at this work centre ,in the similar way we see in the order pool, bottom left of cm21 screen .
    Thanks
    Sankar

  • Delete Asset Master with Sub-Assets

    Hi Gurus,
    A client of mine has an Asset with out any values, but it has sub-assets under it with values and depreciation.
    Is it possible to delete the main asset and still have sub-assets? If not what is the way I can delete the main asset and still retain sub-assets?
    Thanks.
    regards,
    Raj

    Hi Gurus,
    Thanks for the replies.
    The user has in the mean time went ahead and deleted the main asset that did not have values, now we are able to only see the asset when we go to the report (asset balance report), but not able to see when we go to Display Asset (AS03).
    Is there any way we can undo this?
    Thanks.
    regards,
    Raj

  • Mapping and creating new instances of a node and its sub-nodes

    hi,
    i need to map every 3 items from source interface to 1 in target interface.
    i have on target interface parent node which is called 'item' and occurs 0..unbounded (and other sub-nodes).
    this node have a sub-node which is called 'item_data' and occurs 0..3.
    i created a mapping:
    source_item ->counter->checking mod 3--->if   
    """""""""""""""""""""""""""""" source_item  -
    > then -
    >item.
    when i test mapping with 1-3 source_item the sub-nodes 'item_data' are created,
    but when i try 4-5 and more , 'item' node is created  twice but the second instance has no sub-nodes of
    'item_data' (it has other sub-nodes).
    can someone tell me how to solve my problem?
    thanks in advance.
    Tomer

    I would like to be clear about the requirement first,
    Source                              Target
    item           -
    >             item
       item_data     -
    >               Item_data
    item           -
    >            
       item_data     -
    >               irem_data
    item           -
    >            
       item_data     -
    >               item_data
    item           -
    >             item
       item_data     -
    >               item_data
    item           -
    >            
       item_data     -
    >               item_data
    item           -
    >            
       item_data     -
    >               item_data
    for the mapping of item node the queue should look like:
    contextchange
    Then for the mapping of item_data the queue should look like:
    item_data
    item_data
    item_data
    context change
    item_data
    item_data
    item_data
    I guess you have used some udf for the target parent node (item) mapping. I am trying myself to generate the queue for item_data using standard functions, but yet to come up with the desired result. If achieved will let you know..................for now it seems that writing a UDF (queue) would be the best approach.
    iterate through the input queue array (source item_data values all in same context using RemoveContext) and insert a ResultList.CC after every third element in the array.
    Hope you can come out easily with the java for this logic. Let me know if it's helpful.
    Regards,
    Suddha

  • Getting all webI reports in a folder and its sub-folders using java sdk.

    hi,
    I need a java code to get the Id of all webi  reports in a folder and recursive sub folders .
    Is there any sample code or tutorial  available for It?
    regards,
    nitin

    I didn't test this but it should work. Import required packages.
    <%
    String username = "administrator";
    String password = "<password>";
    String cmsname = "<cmsname>";
    String authtype = "secEnterprise";
    IEnterpriseSession oEnterpriseSession = CrystalEnterprise.getSessionMgr().logon(username, password, cmsname, authtype);
    IInfoStore oInfoStore = (IInfoStore)oEnterpriseSession.getService("","InfoStore");
    getWebi(oInfoStore,0,out);
    oEnterpriseSession.logoff();
    %>
    <%!
    public void getWebi(IInfoStore oInfoStore, int sourceFolderID, javax.servlet.jsp.JspWriter out)
    try
         String query = "select * from ci_infoobjects where si_kind='webi' and si_instance =0 and si_parentid =" + sourceFolderID ;
         IInfoObjects oInfoObjects = oInfoStore.query(query);
         for(int i=0;i< oInfoObjects.size(); i++)
              IInfoObject oInfoObject = (IInfoObject) oInfoObjects.get(i);
              out.println(oInfoObject.getID() + "  " + oInfoObject.getTitle() +"<br>");
         String query = "select * from ci_infoobjects where si_kind='folder' and si_parentid = " + sourceFolderID ;
         oInfoObjects = oInfoStore.query(query);
         for(int i=0;i< oInfoObjects.size(); i++)
              IInfoObject oInfoObject = (IInfoObject) oInfoObjects.get(i);
              getWebi(oInfoStore, oInfoObject.getID(), out);               
    catch(SDKException e)
         out.println(e.toString());
    %>

  • Delete and insert same Object in one transaction?

    Hi all,
    Can be possible in one transaction delete and then insert same object into the database?
    If I want change PK in some record in DB, then I must delete the Object and then insert new Object (row). And this I want realize in one transaction - Unit of Work.
    Is this possible?
    Thx advance,
    best regards,
    KLD
    P.S. Sry for my English

    Generally not always a good idea, but may be possible. If you are using JPA, you should be able to do a flush() after deleting the object, then re-persist the new one.
    For the UnitOfWork API, writeChanges() is the same as flush, but it only allowed to be called once, so you may need to use the RepeatableWriteUnitOfWork, or performDeletesFirst option.
    Or just use two separate units of work.
    James : http://www.eclipselink.org

  • One Transaction code for many reports

    Dear all,
    I have some new requirement in Profitability Analysis for each new country a new currency and operating concern is to be define. and for each of this it is necessary to create a transaction code respectively  per new operating concernThis will lead to a high number of transaction codes in the Area menu for the Standard reports in CO-PA.To avoid this high no. of transaction codes, two help transaction have to be created, to act as a transaction for calling the correct report or transaction for the respective OC. The result will be, that only this new transactions (one for the EBIT report; one for the MI IIa report) will be in the area menu The function of these transactions is to call the correct transaction or report for the regarding OC. so I am required to create 2 new transactions which will do all the things .
    any body have idea how to go about it . and any help code
    Thanks & Regards
    Vinayak

    .

  • How to attach two maintenance views to one transaction codes

    Hi
    I have created two master Ztables and also created two maintenance views in SM30 for them.
    Now my req is i have to attach these two maintenace views to one TCODE only Not two transaction codes.
    How i can do that.
    Pls give me some inputs.
    Regs
    Manas Ranjan Panda.

    Hi,
      Goto SE54..Click on the edit cluster view..Enter a cluster view name...Then press the create button..IN the resulting screen you can add multiple maintenance views..
    Check this documentation for creating cluster views..
    http://help.sap.com/saphelp_46c/helpdata/EN/d0/999246b2aa11d1a5700000e82deaaa/frameset.htm
    Once you create the cluster view..
    Then you can a parameter transaction in SE93 with the transaction as SM34 and give the cluster view name ...
    THanks,
    Naren

  • Changing useful life an asset and its impacts

    Hi Gurus,
    if we change the useful life of an asset, what are the steps do we follow ?  do we need to post the write up first and then change the useful life ? can you detailed the steps and impacts on this change with exapmles.. pl
    Venkat Rajesh Kumar

    Hello Parul
    Sorry but this functionality is only available as of release 6.0 if you have the
    new depreciation engine activated. Note 965032 will provide you more details. In
    particular section 4. c) Managing time-dependent depreciation parameters:
    With the new depreciation calculation, you now have the option to 
    change depreciation terms during the fiscal year. This means that 
    the changed parameters are included in the calculation always     
    from the period for which the period is also valid.
      The following depreciation terms can be maintained   time-dependently on the   fixed asset:                 
      -  Depreciation Keys                                                                               
    -  Useful life                                       
      -  scrap value/scrap value percentage rate                                                      
      -  variable depreciation portion                     
    Regards
    Javier

  • IDOC - How to relate a segment and its sub segment

    consider this scenario
    E1MBXYH : Goods movements for mobile data entry (header data)
    Status: Required , min. number : 1 , max. number : 1
        E1MBXYI : Add goods movement from external system: Item
        Status: Required , min. number : 1 , max. number : 9999
             E1MBXYJ : Create Goods Movement from Non-SAP System: Item++
             Status: Optional , min. number : 1 , max. number : 1
    E1MBXYJ is a sub segment of EIMBXYI
    For every record in segment EIMBXYI i have to find 1 coressponding record in segment EIMBXYJ
    Loop at idocdata where segname='EIMBXYI'
    Loop at idocdata where segname='EIMBXY'  and   ?
           endloop
    endloop
    How do i find the relation between the 2 segments. There are no common fields for the segment structures.
    Message was edited by:
            raja

    Hi Raja,
    The is automatically governed by the hierachy and the occurrences that is defined in WE30 for an IDoc type.
    In WE30 we create the segment hierachy (parent and child). Double clicking any segment will lead to its occurrences (min and max). You can also navigate to segment editor to see the fields in that segment.
    Idoc data is just an internal table, we just append segments to that table based on the occurrences in the sequence (child cannot occur before parent) shown in the hierarchy in WE30.
    So you have to deal with indexes in this case. So EIMBXYI will occur first followed by child E1MBXYJ in the idoc_data internal table.
    If there are 10 E1MBXYI then also this order will be followed - E1MBXYI followed by E1MBXYJ and so on..
    Hope this helps.
    Regards,
    Gajendra.

  • Error While Using Crystal Report and Its Print SAP Business One

    Hi Experts,
    I am using SAP Business One 8.82 PL 11. On my Server there is a problem in Crystal Report tool.
    When I am trying to see preview and tried to get print of any Crystal report layout It gives me error "Unknown Database Connector Error"
    Please give me solution on same ASAP.
    Also I have attached Screen shot of error.
    Thanks.
    Ajit.

    Hi Ajit,
    Please repost to the SAP B1 space.
    -Abhilash

  • Firefox 4: have 4 users and its not working for one. The actual Firefox search bit doesn't load properly: very bare and search doesn't work . However, bookmarks etc seem OK

    Have just upgraded to Firefox 4 today, and seems OK for 3 out of 4 users, but not for one of us. It's just that bit in the middle with the red fox logo and the search box that don't load properly - looks very bare - and can type into box but nothing happens when press 'search'

    Don't know - the bit in the middle of the web page which sounds like the search container!
    However, have found a work around - opening up Google and saving that as the home page.
    Thanks for your reply.

  • Get active employees of organization unit and its sub organization unit

    Hi,
    I have OU in selection screen. If I give 50000000 in the selection screen and my list displays all the active employees under that organization unit.
    but under 50000000 OU,it contains some other OU like 500000010 nd so on.. (ie,sub OU). now i want to display the active emplyees of these sub OU also...
    give me any function module to get this???
    thanks n advance

    Eg:
    ACT_OTYPE        -
                   O
    ACT_OBJID         -
                  00100000
    ACT_WEGID          -
                 O-O-S-P
    ACT_INT_FLAG
    ACT_PLVAR            -
               DA
    ACT_BEGDA             -
              02.06.2009
    ACT_ENDDA           -
                02.06.2009
    ACT_TDEPTH                          0
    ACT_TFLAG       -
                    X
    ACT_VFLAG        -
                   X
    AUTHORITY_CHECK        -
             X
    TEXT_BUFFER_FILL
    BUFFER_MODE
    F8 - execute
    check for the result in
    RESULT_TAB
    u can check the level in RESULT_STRUC

Maybe you are looking for