AS01 with reference to existing asset

Hello,
I am trying to create a new asset with reference to an existing asset.  In this case, the new asset will be in a different asset class from the original asset.
The two asset classes have been configured for different depreciation terms.  However when I use AS01 and enter the reference asset, the depreciation terms on the new asset now become the same as the reference asset.
I realize it can be changed while creating.  However, I am wondering if there is a simple config step that says don't copy the depreciation keys from the existing asset, use whatever the new asset class is configured for.
Thank you.

Hi,
Go AO21 then un-check the copy box against depreciation key.
Thanks
Javed

Similar Messages

  • Sub-Asset creation with reference to other asset

    Hello
    Due to company code merger, we are doing inter-company asset transfers.
    For that we are first creating new assets in transferee company code with reference to existing assets in transferor company code via AS01.
    Currently I am facing issue that the newly created asset in the transferee company code is always created with asset sub-number 0 even if the transferor asset is having sub number. This is because system automatically generates asset no and sub number as zero
    Any idea how can we create a new asset with exactly same asset sub-number as transferor companyu2019s asset data.
    If you have any pointers in this context, request you to share the same at the earliest.
    Thanking you in anticipation
    Arti

    Hello Everybody
    I could manage to resolve it by changing OAOA config
    Regards,
    Arti

  • Creation of Change request with reference to existing change request

    Hi
    I want to do Creation of Change request with reference to existing change request for MDG-F and MDG c/MDG S Is it possible? If yes, How?

    Hi Sanjay,
    No , its not out of box functionality in MDG. Reason being, MDG framework provided some standard API's with the help of which we can do our development with ease.
    Like Governance API                            : IF_USMD_GOV_API
           Convenience Governance API         :IF_USMD_CONV_SOM_GOV_API
           Change Request API Interface:       IF_USMD_CREQUEST_API
    With the help of which you can play around with your data in MDG with the pre-defined methods of it.
    Best Regards,
    Kaustubh

  • Create customer master record with reference to existing division

    how to create customer master record with reference to existing division?

    what type of reports sd consultant configure in implementation project?and in supporting project?

  • Create condition record with reference to existing condition record

    how to create condition record with reference to existing condition record?

    Hi,
    See this link :
    http://help.sap.com/saphelp_47x200/helpdata/en/de/7a8534c960a134e10000009b38f83b/frameset.htm
    You can create with reference with Tcode : VK14 (or VK34)
    Or in VK12, you can copy condition records with copy rules.
    Regards,
    Lionel

  • Document is not creating with reference to existing doc?

    Hello
    I am trying to COPY the MS Word(document 'as is' including formatting options) of my_existing_word_doc into a new_word_doc, both documents path is local machine, so, i wrote the code as below,
    REPORT  ZWORD_TEST.
    INCLUDE ole2incl.
    DATA: w_word            TYPE ole2_object,
          w_document        TYPE ole2_object,
          w_selection       TYPE ole2_object,
          w_find            TYPE ole2_object,
          w_replacement     TYPE ole2_object,
          w_font            TYPE ole2_object,
          w_paragraphformat TYPE ole2_object,
          w_line(80).
    START-OF-SELECTION.
    * Create OLE automation object of type Word.Application.
      CREATE OBJECT w_word 'Word.Application'.
    * Display MS-Word when executing the program.
      SET PROPERTY OF w_word 'Visible' = 1.
    * Open doc
      CALL METHOD OF w_word 'Documents' = w_document.
      CALL METHOD OF w_document 'Open' EXPORTING #1 = 'C:\Users\MIKE1\Downloads\Desktop\my_existing_word_doc.docx'.
    * Add data to the new MS-Word document.
      CALL METHOD OF w_word 'Selection' = w_selection.
    *  CALL METHOD OF w_selection 'ParagraphFormat' = w_paragraphformat.
    *  CALL METHOD OF w_selection 'Font' = w_font.
    *Select All
      CALL METHOD OF w_selection 'WholeStory'.
    *Copy
      CALL METHOD OF w_selection 'Copy'.
    *Close Doc
      CALL METHOD OF w_document 'Close'.
      FREE OBJECT w_document.
      FREE OBJECT w_selection.
    *  FREE OBJECT w_paragraphformat.
    *  FREE OBJECT w_font.
    *Open new blank doc
      CALL METHOD OF w_word 'Documents' = w_document.
      CALL METHOD of w_document 'Add'.
    * Add data to the new MS-Word document.
      CALL METHOD OF w_word 'Selection' = w_selection.
    *  CALL METHOD OF w_selection 'ParagraphFormat' = w_paragraphformat.
    *  CALL METHOD OF w_selection 'Font' = w_font.
      CALL METHOD of w_selection 'Find' = w_find.
    *Paste from Clipboard
      CALL METHOD of w_selection 'PasteAndFormat'
        EXPORTING #1 = 1.
    *Find and Replace
      CALL METHOD of w_find 'ClearFormatting'.
      CALL METHOD OF w_find 'Execute' EXPORTING
        #01 = 'Old_text'
        #10 = 'Revised_Text'
        #11 = 1.
      FREE OBJECT w_document.
      FREE OBJECT w_word.
    but,
    1) Its not creating any new document at all!
    2) When should i pass my new document name as "my_new_word_doc", and where should i mention the saving location/path for this new doc?
    3) Even i am not sure that, its copying the doc as whole? bcz i can check becausem, its niot creating a new doc!
    Thank you

    Hi
    As per STD SAP, all billing items will be updated in RG1 register.
    The control is in J1ID where you have to select "Material and Chapter ID combination" and choose the tab "Material type".
    There against the billing material code, maintain "F"
    Also check setting
    IMG --> Logistics General --> Taxes on Goods movements --> India Check Basic Settings, Master Data, A/c deteremination, Business transactions and Tools.

  • Creating sales order document with reference to billing document

    I have to create sales order with reference to existing billing document. I have tried to following bapis.
    1. BAPI_SALESORDER_CREATEed
    I have successfully created document with following details.
    -->ORDER_HEADER_IN:
    DOC_TYPE = ZRK
    SALES_ORG = 3000
    DISTR_CHAN = 00
    DIVISION = 00
    ORD_REASON = 100
    SD_DOC_CAT = L
    CURRENCY = EUR
    REF_DOC = 100000028
    REF_DOC_CA = M
    -->ORDER_ITEMS_IN:
    ITM_NUMBER = 000010
    MATERIAL = 701791
    TARGET_QTY = 0000000001000
    CURRENCY = EUR
    REF_DOC = 100000028
    REF_DOC_CA = M
    -->ORDER_PARTNERS:
    PARTN_ROLE = SP
    PARTN_NUMB = W12001
    COUNTRY = NL
    by providing this input i am able to create the document but it is not picking up the net value. so i have passed some extra paramters in ORDER_ITEMS_IN
    COND_TYPE = PNET
    COND_VALUE = 14,56
    COND_D_UNT = PC.
    folowing error is occured: Condition PNET is missing in pricing procedure A V Z0000.
    is it something related to configuration problem?
    2.BAPI_SALESORDER_CREATEFROMDAT1 or BAPI_SALESORDER_CREATEFROMDAT2
    I have used same test data that is used for BAPI_SALESORDER_CREATEFROMDATA (where in i coudl succefully create doc). but here i encounterd following error.
    Unpermitted combination of business object BUS2032 and sales doc. category L.
    When i created manually using transaction : VA01
    I could do the same by passing following inputs:
    DOC_TYPE = ZRK
    SALES_ORG = 3000
    DISTR_CHAN = 00
    DIVISION = 00
    Reference document number.
    Please suggest me right way of approach.

    Hi,
    In SAP, when the sub-sequent document is existing , we can not cancel the preceeding document. Therefore if you want to cancel the billing document you need to calcel the documents which are created with reference to that.
    Check and confirm.
    Regards,
    Ravi Duggirala

  • Create Sales Order With Reference to Billing Document Using BAPI_SALESORDER

    Hi,
    How can i create a sales order With Reference to Billing Document Using BAPI_SALESORDER_CREATEFROMDAT2?
    Thanks in advance,
    Alejandro.

    I have to create sales order with reference to existing billing document. I have tried to following bapis.
    1. BAPI_SALESORDER_CREATEed
    I have successfully created document with following details.
    -->ORDER_HEADER_IN:
    DOC_TYPE =                  ZRK
    SALES_ORG =              3000
    DISTR_CHAN   =            00
    DIVISION =                    00
    ORD_REASON =            100
    SD_DOC_CAT   =          L
    CURRENCY       =         EUR
    REF_DOC          =         100000028
    REF_DOC_CA    =         M
    -->ORDER_ITEMS_IN:
    ITM_NUMBER    =           000010
    MATERIAL          =          701791
    TARGET_QTY     =          0000000001000
    CURRENCY        =          EUR
    REF_DOC           =          100000028
    REF_DOC_CA     =          M
    -->ORDER_PARTNERS:
    PARTN_ROLE      =          SP
    PARTN_NUMB      =         W12001
    COUNTRY             =         NL
    by providing this input i am able to create the document but it is not picking up the net value. so i have passed some extra paramters in  ORDER_ITEMS_IN
    COND_TYPE          =        PNET
    COND_VALUE        =        14,56
    COND_D_UNT        =         PC.
    folowing error is occured: Condition PNET is missing in pricing procedure A V Z0000.
    is it something related to configuration problem?
    2.BAPI_SALESORDER_CREATEFROMDAT1 or BAPI_SALESORDER_CREATEFROMDAT2
    I have used same test data that is used for BAPI_SALESORDER_CREATEFROMDATA (where in i coudl succefully create doc). but here i encounterd following error.
    Unpermitted combination of business object BUS2032 and sales doc. category L.

  • Facing Problem in creation on Customer Master Record with reference

    Dear SAP Experts,
    I am making a New Customer master record with referenec to existing one. Account  Group """ Stock Transfer - Depot""" do not use internal no assignment, we put external no to customer code. but when we enter the customer master with reference to existing one, system shows the error.....enter a no between A001 and Z999.
    Customer Record Details-
    Account Group - Stock Transfer Depot
    Customer - 1101
    Compnay Code- 1000
    Sales Organisation - 1000
    Distribution Channel -20
    Division - 01
    Reference:
    Customer - 2001
    Comapny Code - 2000
    Sales Organisation - 2000
    Distribution Channel - 20
    Division - 01
    Error: ENTER A NO BETWEEN  A001 AND Z999
    I m not getting why system showing this type of error, should i need to configure new customer code sumwhere in IMG if yes please let me know.
    Lokking forward for your quick response on the same.
    Regards
    Parul Deshwal

    Hi Parul Deshwal,
    - The number range is created in XDN1.
    - The number range is assigned to the account group "Stock Transfer - Depot" in SAP Customizing Implementation Guide>Financial Accounting>Accounts Receivable and Accounts Payable>Customer Accounts>Master Data>Preparations for Creating Customer Master Data>Assign Number Ranges to Customer Account Groups
    Remember - If you are entering an external number it generally means the number is created in an external system and replicated to your system.
    Help - Check what external number was used last by doing SE16 on table KNA1 and use the account group "Stock Transfer - Depot" as a selection parameter.
    Best regards,
    Glynn

  • Return order with reference to the billing document created via IDOC.

    Dear Colleagues,
    I’m struggling to understand and confirm whether standard functionality of ORDERS05 idoc allows creating a return order with reference to existing billing document?
    I have tried using standard segment E1EDK02 and E1EDP02 with qualifiers 009,010,011,087 but unfortunately idol is not creating a return order with reference and ignoring this segment.
    Have any one came across similar problem? If yes then will be grateful for sharing his experience.
    Best regards,
    AL

    Dear Friend
    Welcome to SDN
    Return order is itself a challenge to SAP standard settings
    There are some scenarios
    1. Return order qty should not be increasesd say Billed qty of material X is 20 units
    While returning Material X should be a maximum of 20 units
    If made 21 it should throw error T code OVAH message class V4 message no 299 convert from warning to error thro customization
    2.Return order should be created only once referencing billing doc
    To control that T code SE91 message class V1 message no 499 convert from warning to error thro ABAP help
    3 Your issue is same like case 1 but the material X is entered as second line item in the return order with some qty
    This case system is not throwing even a warning
    Yes correct
    This is to be handled with userexit
    Discuss the same with ABAPer
    Check these threads on return issues which is of different scenario than of yours
    Forum post in ERP - Sales and Distribution (SD) General: Order Qty.
    Order Qty.
    Forum post in ERP - Sales and Distribution (SD) General: Return order
    Return order
    Regards
    Raja

  • Header Text pop up not coming up when creating Quotation with reference when created from CJ20N

    I have done my configuration in VOTXN and it works.
    If I create a quotation with reference with transaction VA21 the pop up comes up and the header texts are copied.
    But if I do the same from transaction CJ20N (it also executes transaction VA21) the pop up windows does not come up and the text is not copied.
    If someone can please tell me why this is happening?
    Regards,
    Carlos

    Hi carlos,
    with reference to existing quotation you are creating new quotation ?
    but Quotation creation from project will done using DP81 ( not by VA21)
    can you explain a bit ?
    thanks
    santosh

  • With reference sale orde text issue

    While creating  sale order with reference to exisiting sale order of document type OR , the text should not be copied.
    What i did is while creating with reference to existing sale order when ever the text comes for copying i will select delete option so that it wont copied to current sale order creating, What i did is a correct way or any other method is there to stop copying the text during with reference to sale order creation.
    Thanks,
    Suresh

    Dear  suresh,
    As per the understanding of your requirement,
    Instead of doing that why don't you delete the text determination procedure for the document which the text is applying.
    You can use the transaction code VOTXN you select the sales document header/item in that select change.Then go to Text procedure assignment
    Hope it will be use full.
    Let me know if you have any further clarifications
    Thanks&Regards
    Raghu.k

  • Creating asset with reference

    Hi,
    I am facing the following problem: When we use transaction AS01 to create a new asset and use another asset as a reference none fields are copy to the new asset.
    I think that this must be a customising issue but i do not finf anything relative to that.
    Can someone tell me how can i solve the problem?
                   Best Regards
                             João Fernandes

    Hi,
    Creating an asset with reference is a much easier way of creating asset.
    There is no customising issue .
    The basic idea of creating an asset with reference is that it allows us to define default values( particularly depreciation terms) more exactly and comprehensively.
    Fields like cost centre etc have to be entered manually.
    Thanks
    GU

  • IE01 Create Equipment with reference

    Hello,
    I have an existing equipment with an asset# attached to it.
    I then create another equipment (IE01) with reference to that equipment. This will automatically bring in the asset# to my new equipment but I don't want.
    So, is there any User-Exit or BADI that I can remove this asset value at the point of saving (IE01) or even before that? I have tried with some User-Exits (IEQM0001, IEQM0002, IEQM0003, IEQM0007) and BADIs (BADI_CCM_FULLY_EQUI, EQUI_UPDATE) but it doesn't work.
    Thanks in advance for your help.

    Radhika,
    On Initial Screen IE01 = Equipment Cat
    Then In General Screen = Description, and other data optional and required.
    Locatin Tab = Main Plant and Location
    Organisation = Cost center
    Structure = if this equipement is under any other equipment or function location then click on right hand   box and mention the fnction location or equipment.
    Now you can save.
    Riyaj

  • Invoice VF01 with reference to the sales order

    Dear Experts,
    Our business requirement is to book the invoice with reference to the sales order without posting delivery and PGI. Provide me the step by step process to complete this configuration.
    Is that suggestible to change the existing document type which the business is using by creating delivery PGI and Invoice to the document type where invoice booking with reference to sales order or I have to go with the new document type only.
    With Regards
    Uday
    Message was edited by: G Lakshmipathi
    Please dont add such text in your post which is not encouraged in SCN.

    TW Typewriter
    can you help, by creating the entire process in Sandbox and informing uday about the configuration steps?
    At the outset, please refrain posting like this which, being a senior member of SCN, you should be aware of rules where spoon feeding is definitely not encouraged.  Those sort of efforts have to be taken by OP.   This forum is only to guide the people wherever they get stucked. 
    cc: Phanikumar V
    You should also be knowing the forum rules and I thought, you would have expressed like what I said above.
    G. Lakshmipathi

Maybe you are looking for

  • Can you transfer music from one ipod to another???

    Is that even possible??

  • Displaying workitem/task execution online rather than in SAP inbox

    Hi All, I am using the workflow WS01000045 when implementing the ESS scenario - Employment and Salary Verification. The user has the option of printing or faxing these details. When the user clicks PRINT the step 81(Print Employment and Salary Verifi

  • MSI Z97 Gaming 9 AC PCI lanes all empty

    Hey guys, I've been slamming my head on the wall in frustration for the past few hours and I'm stuck. My problem is that the board is not recognizing any PCI cards. (Went into bios and hardware manager, says all are empty) I've tried graphics cards,

  • Additional file in File adapter

    Hi, I have two File scenario inbound and outbound. Outbound: In this scenario we are sending a File using File Adapter.Our requirement is we have to count number of data records and then write the number of records in other file.We won't be writing n

  • My skype name hacked

    my skype name nasadam is taken someone.. and also change my email address as well..