Change serial number in Asset using BAPI

Hello Experts,
I need change serial number in Asset using BAPI. Could You give me some FM and examples which can do this.
Thanks in advance,
Marcin

Hi,
Can anyone tell me whether there is any concept of "Serial Number" that is associated with Assets in Asset Accouting module? I know there is something called as "Serial Number Profile" for Material/Plan Maintenance etc. But I'm wondering if something similar exist for Assets too. Can you tell me what is the transaction code/path for the same, if any?
Thanks
Mahesh

Similar Messages

  • Installation : my laptop ssd crashed. after changing serial number cannot be used. pls advise.

    The website help is

    yes. I tried to download again and the error message is :
    Sorry,
    It is too late to download this file. You were allowed to download within
    30 days.
    If you have any questions, please contact Digital River Customer Service at
    [email protected]

  • Problem while creating assets using BAPI

    Use table enhancement BAPI_TE_ANLU
    Diagnosis :The BAPIs for creating and changing assets currently support only those customer enhancements that relate to the user fields created using SAP enhancement AIST0002.
    Can anybody give the appropriate solution why this error is coming while creating assets using BAPI.

    Looks like you are trying to transfer custom fields into the asset master data that were not added following the steps in enhancement AIST0002.
    Using EXTENSIONIN parameter, you can transfer user fields from the asset master record. However, it is not possible to transfer fields that are updated in user-defined tables. Only user fields that were defined using SAP enhancement AIST0002 and are automatically updated in table ANLU can be udpated in this way. This means you have to use table extension BAPI_TE_ANLU.
    Enhancement AIST0002 contains function module EXIT_SAPL1022_001 as a component in which user fields can be implemented.
    The documentation ( BAPIPAREX) of the structure that forms the basis for this parameter contains additional information about using this parameter.
    Please check how table ANLU has been enhanced and also go through the documentation of enhancement AIST0002.
    Regards,
    Shyam

  • I want to change serial number in the Batch report and in the special UUT report

    I use Batch Model, sequential mode.
    I want to change serial number in the Batch report and I want to change UUT serial number in each TestSocket report.
    I overrided ModifyReportHeader, I did
    Parameters.UUT.SerialNumber = "....."
    but the serial number changed only in the Batch Report, not in UUT Report. How can I change serial number in UUT Report too?

    Marta,
    There is actually a ModifyBatchReportHeader in addition to the ModifyReportHeader that you already used.  That would be the first thing to do.
    After that, I think I need a more detailed description of what you are trying to do (perhaps with screenshots) in order to be able to help effectively.
    Josh W. | National Instruments | Applications Engineering
    Josh W.
    Certified TestStand Architect
    Formerly blue

  • I recently got my ipod replaced and i have its serial number. now i used to play a game on it which requires me to have its UDID for account transfer so how do i get its UDID when i dont have the ipod now. i have a new one now.

    i recently got my ipod replaced and i have its serial number. now i used to play a game on it which requires me to have its UDID for account transfer so how do i get its UDID when i dont have the ipod now. i have a new one now.

    I would try contacting Apple.
    http://www.apple.com/support/ipodtouch/contact/

  • Goods Issue Stock with serial number to asset

    Hi xperts,
    When i GI a stock with serial number to asset (mvmt 241), the serial number is not updated in the asset master. I believe it's due to the asset number has been created before the GI. Is there any way (BADI or user exit) that would allow the serial number to  be updated in the asset master after/during GI postings.
    Thanks in advance.

    HI,
    The serial number is not updated in the asset master & there is no user exit for updating the same . You need to maintain it manually in the Asset master through Tcode AS02. Then after that do the GI,then the serial number would get updated automatically when you manually enter Asset code under  account assignment tab.
    Regards
    Manish Joshi

  • I would like to move 2 users to creative cloud, but maintain all the other users (myself included) on CS5. Can I still get the reduced monthly rate? What serial number should I use?

    I would like to move 2 users to creative cloud, but maintain all the other users (myself included) on CS5. Can I still get the reduced monthly rate? What serial number should I use?

    Hi Thomasjewell,
    Yes you can avail the discounted prices even you are upgrading the product just for two users. You can use the serial number for your Creative Suite 5 product.
    You can follow the link: https://creative.adobe.com/plans in order to purchase Creative Cloud for Teams product.
    Let me know if it works or not.
    Thanks,
    Ratandeep Arora

  • Change of open sales order : using BAPI

    Hi
       this  is ravi
                      can any one help me on this  topic
            1)change of open sales order  using BAPI .With appropriate reason( like header level reason)
                       thanks & regards

    hI,
        chk this FM BAPI_SALESORDER_PROXY_UPLOAD how the FM BAPI_SALESORDER_CHANGE was used
    Check this code,
    REPORT Z_SALES_ORDER_CHANGE
    NO STANDARD PAGE HEADING
    LINE-SIZE 132
    LINE-COUNT 65(0)
    MESSAGE-ID ZZ.
    TABLES: VBAP.
    DATA:
    V_FILEIN(90) TYPE C,
    V_RECIN TYPE I,
    V_RECVBAP TYPE I,
    V_RECORDER TYPE I,
    V_VBELN LIKE VBAP-VBELN,
    ORDERHEADERINX LIKE BAPISDH1X.
    DATA: BEGIN OF I_ORDERS OCCURS 0,
    VBELN LIKE VBAK-VBELN,
    POSNR LIKE VBAP-POSNR,
    BRGEW(18) TYPE C,
    VOLUM(18) TYPE C,
    END OF I_ORDERS.
    DATA: BEGIN OF I_OUTPUT OCCURS 0,
    VBELN LIKE VBAK-VBELN,
    POSNR LIKE VBAP-POSNR,
    GEWEI LIKE VBAP-GEWEI,
    BRGEW LIKE VBAP-BRGEW,
    VOLUM LIKE VBAP-VOLUM,
    CKWGT TYPE C,
    CKVOL TYPE C,
    END OF I_OUTPUT.
    DATA: BEGIN OF ORDERITEMIN OCCURS 0.
    INCLUDE STRUCTURE BAPISDITM.
    DATA: END OF ORDERITEMIN.
    DATA: BEGIN OF ORDERITEMINX OCCURS 0.
    INCLUDE STRUCTURE BAPISDITMX.
    DATA: END OF ORDERITEMINX.
    DATA: BEGIN OF RETURN OCCURS 0.
    INCLUDE STRUCTURE BAPIRET2.
    DATA: END OF RETURN.
    DATA: BEGIN OF BAPIRETURN OCCURS 0.
    INCLUDE STRUCTURE BAPIRET2.
    DATA: END OF BAPIRETURN.
    PARAMETERS:
    P_PATH(45) TYPE C DEFAULT '/usr/users/ftpsapom/' LOWER CASE,
    P_FNAME(32) TYPE C DEFAULT '/sweetjo.txt' LOWER CASE.
    START-OF-SELECTION.
    CONCATENATE PATH AND FILE NAME INTO ONE VARIABLE
    CONCATENATE P_PATH P_FNAME INTO V_FILEIN.
    OPEN DATASET
    IF V_FILEIN IS INITIAL.
    MESSAGE E002 WITH 'FILE' V_FILEIN 'DOES NOT CONTAIN ANY DATA!'.
    ELSE.
    OPEN DATASET V_FILEIN
    FOR INPUT
    IN TEXT MODE.
    IF SY-SUBRC = 0.
    READ DATASET
    DO.
    READ DATASET V_FILEIN INTO I_ORDERS.
    IF SY-SUBRC = 0.
    APPEND I_ORDERS.
    ELSE.
    EXIT.
    ENDIF.
    ENDDO.
    CLOSE DATASET
    CLOSE DATASET V_FILEIN.
    IF SY-SUBRC <> 0.
    MESSAGE E002 WITH 'ERROR - CLOSING' V_FILEIN.
    ENDIF.
    ELSE.
    MESSAGE E002 WITH 'ERROR - COULD NOT OPEN' V_FILEIN.
    ENDIF.
    ENDIF.
    SORT AND REMOVE DUPLICATES FROM I_ORDERS
    SORT I_ORDERS BY VBELN POSNR.
    DELETE ADJACENT DUPLICATES FROM I_ORDERS.
    POPULATE I_OUTPUT
    LOOP AT I_ORDERS.
    SHIFT I_ORDERS-POSNR LEFT DELETING LEADING SPACE.
    CONCATENATE '0' I_ORDERS-POSNR INTO I_ORDERS-POSNR.
    SELECT SINGLE BRGEW VOLUM
    FROM VBAP
    INTO (VBAP-BRGEW, VBAP-VOLUM)
    WHERE VBELN = I_ORDERS-VBELN
    AND POSNR = I_ORDERS-POSNR.
    IF SY-SUBRC = 0.
    IF VBAP-BRGEW = 0.
    I_OUTPUT-CKWGT = 'X'.
    ENDIF.
    IF VBAP-VOLUM = 0.
    I_OUTPUT-CKVOL = 'X'.
    ENDIF.
    I_OUTPUT-VBELN = I_ORDERS-VBELN.
    I_OUTPUT-POSNR = I_ORDERS-POSNR.
    I_OUTPUT-GEWEI = 'ST'.
    I_OUTPUT-BRGEW = I_ORDERS-BRGEW.
    I_OUTPUT-VOLUM = I_ORDERS-VOLUM.
    APPEND I_OUTPUT.
    CLEAR: I_OUTPUT.
    ENDIF.
    V_RECIN = V_RECIN + 1.
    ENDLOOP.
    POPULATE BAPI DATA AND RUN BAPI
    CLEAR: ORDERHEADERINX, ORDERITEMIN, ORDERITEMINX,
    RETURN, BAPIRETURN.
    REFRESH: ORDERITEMIN, ORDERITEMINX, RETURN, BAPIRETURN.
    ORDERHEADERINX-UPDATEFLAG = 'U'.
    LOOP AT I_OUTPUT WHERE CKWGT = 'X' OR CKVOL = 'X'.
    V_RECVBAP = V_RECVBAP + 1.
    IF I_OUTPUT-VBELN <> V_VBELN AND SY-TABIX <> 1.
    V_RECORDER = V_RECORDER + 1.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
    EXPORTING
    SALESDOCUMENT = V_VBELN
    ORDER_HEADER_INX = ORDERHEADERINX
    TABLES
    RETURN = RETURN
    ORDER_ITEM_IN = ORDERITEMIN
    ORDER_ITEM_INX = ORDERITEMINX.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    WAIT = 'X'
    IMPORTING
    RETURN = BAPIRETURN.
    WRITE OUT RETURN
    LOOP AT RETURN.
    WRITE: / RETURN.
    ENDLOOP.
    WRITE: / BAPIRETURN.
    SKIP.
    CLEAR: ORDERITEMIN, ORDERITEMINX,
    RETURN, BAPIRETURN.
    REFRESH: ORDERITEMIN, ORDERITEMINX, RETURN, BAPIRETURN.
    ENDIF.
    ORDERITEMIN-ITM_NUMBER = I_OUTPUT-POSNR.
    ORDERITEMIN-UNTOF_WGHT = I_OUTPUT-GEWEI.
    IF NOT I_OUTPUT-CKWGT IS INITIAL.
    ORDERITEMIN-GROSS_WGHT = I_OUTPUT-BRGEW.
    ORDERITEMINX-GROSS_WGHT = 'X'.
    ENDIF.
    IF NOT I_OUTPUT-CKVOL IS INITIAL.
    ORDERITEMIN-VOLUME = I_OUTPUT-VOLUM.
    ORDERITEMINX-VOLUME = 'X'.
    ENDIF.
    APPEND ORDERITEMIN.
    ORDERITEMINX-ITM_NUMBER = I_OUTPUT-POSNR.
    ORDERITEMINX-UNTOF_WGHT = 'X'.
    ORDERITEMINX-UPDATEFLAG = 'U'.
    APPEND ORDERITEMINX.
    V_VBELN = I_OUTPUT-VBELN.
    ENDLOOP.
    RUN BAPI ON LAST ORDER
    IF NOT ORDERITEMIN IS INITIAL.
    V_RECORDER = V_RECORDER + 1.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
    EXPORTING
    SALESDOCUMENT = V_VBELN
    ORDER_HEADER_INX = ORDERHEADERINX
    TABLES
    RETURN = RETURN
    ORDER_ITEM_IN = ORDERITEMIN
    ORDER_ITEM_INX = ORDERITEMINX.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    WAIT = 'X'
    IMPORTING
    RETURN = BAPIRETURN.
    WRITE OUT RETURN
    LOOP AT RETURN.
    WRITE: / RETURN.
    ENDLOOP.
    WRITE: / BAPIRETURN.
    SKIP.
    ENDIF.
    WRITE OUT RECORD COUNT FROM FILE
    WRITE: / 'RECORD COUNT FROM FILE ', V_RECIN.
    SKIP.
    WRITE OUT RECORD COUNT FROM FILE
    WRITE: / 'RECORD COUNT OF LINES TO CHANGE ', V_RECVBAP.
    SKIP.
    WRITE OUT RECORD COUNT FROM FILE
    WRITE: / 'RECORD COUNT OF ORDERS TO CHANGE ', V_RECORDER.
    SKIP.
    TOP OF PAGE
    TOP-OF-PAGE.
    WRITE:/1(5) TEXT-H01, 6(8) SY-DATUM MM/DD/YY,
    100(8) TEXT-H02, 126(8) SY-PAGNO.
    WRITE:/1(5) TEXT-H03, 6(8) SY-UZEIT USING EDIT MASK '__:__:__',
    20(77) TEXT-H04,
    100(8) TEXT-H05, 108(25) SY-REPID.
    WRITE:/1(6) TEXT-H06, 8(12) SY-UNAME,
    20(4) TEXT-H07, 25(32) SY-HOST,
    100(13) TEXT-H08, 121(8) SY-SYSID,
    129 '/', 130(3) SY-MANDT.
    ULINE.
    SKIP
    <b>Reward points</b>
    Regards

  • Is it possible to change serial number in FCP?

    I have two licenses of FCP. Just installed on a new Mac Pro, and I installed with the wrong serial number (which results in protection error when both FCP programs are open). Is it possible to change serial number without reinstalling (takes hours..)?

    Further to my above comment Tom, I have done a quick test.
    Removing the FCS System ID had no apparent effect on launching FCP.
    Removing the ProAppsSystemID brought up the serial number etc. window.
    Any idea why I have got 2 of these things?
    Anything to do with having FCE installed as well?

  • My serial number cannot be used to use my warranty.How can i service my iPhone 5s?

    My phone has a lot of dents but i cannot service it because my warranty's serial number cannot be used.How?

    Call AppleCare by phone.

  • I am having problems to run logic pro 9, there is an error display that says I need to set bonjour and that this app serial number has been used by another red user,  could anybody guide me?

    I am having problems to run logic pro 9, there is an error display that says I need to set bonjour and that this app serial number has been used by another red user,  could anybody guide me? actually, my computer can't start  since three days ago, could it be the same problem?

    Logic is the APPlication (program, app) that you are having the problem with.
    Logic Pro can take advantage of other computers on your local (home or work) network to help it do "heavy lifting" data chores by using Bonjour and a feature called Nodes.   It seems that Logic is attempting to find and connect to another machine on your network.
    Do you have Logic installed on another computer there?  That may be the source of the confilict.
    You might want to post this question in the Logic Pro Community.
    Be sure to indicate the version of Logic Pro that you are using.  I'm sure the folks there can help you out.

  • HT4061 Excute me !! i want to asked to my Idevice (iphone 4 GSM) Serial Number is 5K1455MAA4S used to fix any correct time no? U sent answer to my email! thanks apple store

    Excute me !! i want to asked to my Idevice (iphone 4 GSM) Serial Number is 5K1455MAA4S used to fix any correct time no? U sent answer to my email! thanks apple store
    Serial Number: 5K******A4S
    <Personal Information Edited by Host>

    This is Community forum. Apple does not read this.
    Visit Apple store for availing warrantee or paid services.

  • Possibilit​y to change serial number of DAQ board

    Hello,
    In our company we need to build duplication of one measuring/adjusting station.
    We already bought necessary hardware, unfortunately in the current application is probably some kind of protection :-(
    When I replace in the PC current DAQ board (PCI-6052-E) to the new one then application stop running!
    My thought, this application just check serial number of DAQ board! Is there any possibility to change serial number in the new board to the same value as is in the original card ???
    Thanks in advance
    Jan Srajer

    I would hope that you would still have access to the source code. If you do, I would recomend you delete that portion that relies on detecting a specific serial number or whatever other scheme might be in place. It seems rather non-sensical to do such a thing for an internal application, at least without providing for a method to add a new tester without re-compiling the application. I know of no way to modify the serial number of an NI DAQ board. You might also want to look for other methods of protection such as reading of the MAC address or hard drive serial number.

  • Bapi or func to change serial number in delivery

    Hi
    does exist a bapi or a FM to modify the serial number in a delivery.
    with BAPI_OUTB_DELIVERY_CHANGE is not possible.
    thanks for your answer
    serge

    it's ok with
            CALL FUNCTION 'WS_DELIVERY_UPDATE_2'
              EXPORTING
                VBKOK_WA                           = LWA_VBKOK
      SYNCHRON                           = ' '
      NO_MESSAGES_UPDATE                 = ' '
               COMMIT                             = 'X'
                DELIVERY                           = P_ITEM-VBELN
               IT_SERNR_UPDATE                    = LT_SERIALS
               IMPORTING
         EF_ERROR_SERNR_UPDATE              = L_SERNR_UPDATE.

  • Change serial number

    I work for a multinational and for our new IT project, we need to change the servicetags in the bios  of all our notebooks. How can we change this tags?
    Solved!
    Go to Solution.

    I don't know why you are looking at changing the serial number, but if it is for your internal tracking, you can use "Asset Tags".
    http://support.lenovo.com/en_US/detail.page?LegacyDocID=MIGR-75237

Maybe you are looking for

  • RMAN (DP6.0) backup failure on Oracle10g

    Hello, I am using DP6.0 with Oracle10g environment for backup. While I was able to successfully able to allocate the channels I am getting the below error message stack when the backup script is executed. Thanks RMAN> CONNECT TARGET * 2> run { 3> all

  • JDBC sender channel running but not picking up the data from sp

    Hi, One of the jdbc sender channels in production is running at its schedule time but it is not picking up the data from the sql side, we have checked with the sp side and they are saying that sp is running fine. No changes have been done in its conf

  • What is this process called in Elements?

    I purchased PE9 and inside the box cover they show that you can take two picture s and change the faces of a person if one looks better. What is this process called because I want to look up some tuto rials on how to use this great feature. Thank you

  • Change log.properties without restarting server

    Hi , Am using OIM9102 with App server WebSphere6.1 How can I handle changing log level in xellerate/config/log.properties file with out restarting server. Thanks

  • Showing TV Show Titles

    I have loaded a couple of TV show seasons on my iPod Classic. The display shows the series name and underneath shows Unknown Release Date. I would like it to show the Episode Title in lieu of Unknown Release Date. Does anyone know if this can be done