Components  Serial number inside order

Dear PM Experts,
Is there anyway that i can add the serial number of the material in the component tab of any maintenance order, as my client wants to specify which material exactly will be withdrawn with reference to the order,
Thanks in advance

Hi,
There is no option for serial number.You can use Batch details for the component.
As its planned components, we dont have option to fix the component with particular serial number.
By enhancement in Order header or additional tab separately, you can capture the Material & reserved Serial number. But it requires lot of validations.
Even reservations are created at Component level not at Serial number level.
Serial number capturing can be for information but restriction is difficult task.
Regards,
Maheswaran.

Similar Messages

  • I just continued my trial on photoshop and need to find my serial number in order to continue. Where can I find that?

    I just continued my trial on photoshop and need to find my serial number in order to continue. Where can I find that?

    Creative Cloud products don't use serial numbers.  Simply log-in with your Adobe ID (email) and password.
    Nancy O.

  • HT200164 where i can watch my serial number inside de software?

    where i can watch my serial number inside de software?

    The Support ID is _only_ listed on the booklet that came with the Logic Studio box. The serial number is in the about box (and on the same booklet as the Support ID).

  • VBAP-ANZSN not getting updated when writing serial number to order

    Hey ABAP,
    i got some Problem with serial numbers.
    We have a rental process, where user gives in serial number at time of delivery.
    Since we need to create orders based on original order, we need to take the serialnumber from the delivery and write it back to the order, so when order is copied, serial number will be copied as well.
    I use following Code to write that serial number into the order, and it works:
    code -> next post
    FYI: This coding is in a rouitine which is called by perform on commit, in an own update task function module which is beeing called in MV50AFZ1.
    So where is the Problem?
    The order gets correctly updated with the serial number which got input in the delivery.
    When looking at it through VA02 all if fine. You can see the serial number, and you also can see that there is 1 serialnumber of 1 serial numbers.
    BUT when having a look at the corresponding VBAP record for this order, VBAP-ANZSN stays empty.
    in copy routines, serialnumbers will only get copied as well if VBAP-ANZSN > 0.
    Cause if its 0 the system thinks: "yikes there are no serial numbers i got nothing to do".
    any ideas?
    Edited by: Florian Kemmer on Sep 30, 2009 12:43 PM

    DATA: lt_ser01            TYPE TABLE OF ser01,
            ls_ser01            TYPE ser01,
            lv_equnr            TYPE equnr,
            lv_sernr            TYPE sernr,
            lv_matnr            TYPE matnr,
            lt_riwol            TYPE TABLE OF riwol1,
            ls_riwol            TYPE riwol1,
            lv_vbeln            TYPE vbeln,
            lv_posnr            TYPE posnr,
            lt_serxx            TYPE TABLE OF rserxx,
            ls_serxx            TYPE rserxx,
            ls_lips             TYPE lips,
            ls_likp             TYPE likp,
            ls_vbak             TYPE vbak,
            ls_vbap             TYPE vbap.
      break fis-kemmer.
      " Lieferdaten besorgen
      SELECT SINGLE *
      FROM   likp
      INTO   CORRESPONDING FIELDS OF ls_likp
      WHERE  vbeln = gv_vbeln_vl.
      SELECT SINGLE *
      FROM   lips
      INTO   CORRESPONDING FIELDS OF ls_lips
      WHERE  vbeln = gv_vbeln_vl
      AND    posnr = gv_posnr_vl.
      " Serialnummer aus der Lieferung besorgen
      SELECT SINGLE *
      FROM   ser01
      INTO   CORRESPONDING FIELDS OF ls_ser01
      WHERE  lief_nr = gv_vbeln_vl
      AND    posnr   = gv_posnr_vl.
      SELECT SINGLE equnr
      FROM   objk
      INTO   lv_equnr
      WHERE  obknr = ls_ser01-obknr.
      SELECT SINGLE sernr
      FROM   equi
      INTO   lv_sernr
      WHERE  equnr = lv_equnr.
      CHECK NOT lv_sernr IS INITIAL.
      " Matrialnummer aus der Lieferung besorgen
      SELECT SINGLE matnr
      FROM   lips
      INTO   lv_matnr
      WHERE  vbeln = gv_vbeln_vl
      AND    posnr = gv_posnr_vl.
      CHECK NOT lv_matnr IS INITIAL.
      SELECT SINGLE vbelv posnv
      FROM   vbfa
      INTO   (lv_vbeln, lv_posnr)
      WHERE  vbeln    = gv_vbeln_vl
      AND    posnn    = gv_posnr_vl
      AND    vbtyp_v  = 'C'.
      " Auftragsdaten besorgen
      SELECT SINGLE *
      FROM   vbak
      INTO   CORRESPONDING FIELDS OF ls_vbak
      WHERE  vbeln = lv_vbeln.
      SELECT SINGLE *
      FROM   vbap
      INTO   CORRESPONDING FIELDS OF ls_vbap
      WHERE  vbeln = lv_vbeln
      AND    posnr = lv_posnr.
      ls_riwol-sernr = lv_sernr.
      ls_riwol-matnr = lv_matnr.
      APPEND ls_riwol TO lt_riwol.
      ls_serxx-anzsn      = ls_ser01-anzsn.
      ls_serxx-vbtyp      = ls_ser01-vbtyp.
      ls_serxx-sdaufnr    = lv_vbeln.
      ls_serxx-lief_nr    = gv_vbeln_vl.
      ls_serxx-posnr      = gv_posnr_vl.
      ls_serxx-kunde      = ls_likp-kunnr.
      ls_serxx-obknr      = ls_ser01-obknr.
      ls_serxx-datum      = ls_ser01-datum.
      ls_serxx-letznr     = ls_ser01-letznr.
      ls_serxx-vorgang    = ls_ser01-vorgang.
      ls_serxx-uzeit      = ls_ser01-uzeit.
      ls_serxx-vbtyp      = ls_ser01-vbtyp.
      ls_serxx-bwart      = ls_ser01-bwart.
      ls_serxx-vkorg      = ls_ser01-vkorg.
      ls_serxx-vtweg      = ls_ser01-vtweg.
      ls_serxx-spart      = ls_ser01-spart.
      ls_serxx-ltsps      = ls_ser01-ltsps.
      ls_serxx-sd_auart   = ls_vbak-auart.
      ls_serxx-sd_postyp  = ls_vbap-pstyv.
      ls_serxx-werk       = ls_vbap-werks.
      break fis-kemmer.
      APPEND ls_serxx TO lt_serxx.
      CALL FUNCTION 'IWOL_WV_ADD_OBJECTS'
        EXPORTING
          i_sdaufnr           = lv_vbeln
          i_sdposnr           = lv_posnr
          to_type             = 'SD'
        TABLES
          t_riwol1            = lt_riwol
          t_ser02             = lt_serxx
        EXCEPTIONS
          no_object_list      = 1
          entry_exists        = 2
          invalid_material    = 3
          invalid_serialnr    = 4
          invalid_equipment   = 5
          invalid_location    = 6
          invalid_assembly    = 7
          status_not_allowed  = 8
          equi_foreign_key    = 9
          equi_system_failure = 10
          customer_exit_error = 11
          OTHERS              = 12.
      IF sy-subrc = 0.
        CALL FUNCTION 'IWOL_WV_POST_OBJECT_LIST'
          EXPORTING
            i_sdaufnr      = lv_vbeln
            i_sdposnr      = lv_posnr
          EXCEPTIONS
            no_object_list = 1
            other_errors   = 2
            OTHERS         = 3.
      ENDIF.
    Edited by: Florian Kemmer on Sep 30, 2009 12:46 PM

  • I am trying to work on a flyer I downloaded from a website called graphic river. The flyer is a Adobe  file. When I try to open the file it says I have to provide a serial number in order to move on. So I downloaded Photoshop extended and I cannot find it

    I need to have this flyer prepared by tonight. Please, if anyone can help me get this situated that would be great.

    Myke19772 if you wish to evaluate Photoshop CC 2014 to edit your photo then please see Install and update apps - https://helpx.adobe.com/creative-cloud/help/install-apps.html for information on how to download and install the software.
    If you continue to be prompted for a serial number then I would recommend reviewing Sign in, activation, or connection errors | CC, CS6, CS5.5 - http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html.

  • Serial Number allocation Order Status Management

    Hi Gurus
    I have a scenario in Status Management in Production Order of FG
    I want to track the STATUS of FG by User Statuses
    During Status Change I want to Assign Serial Numbers at that particular User Status
    Your early responses will be highly appreciated
    thanks
    K.Prabakaran

    Hi Prabakaran,
    try using trigger point t.code CO31
    If it solve reward
    Thanks
    Bala

  • Report based on Serial Number generated in the Production Order

    Hi,
    I wish to generate a Customized report, which shall include the total consumption based on Sales Order/Line Item/Serial Number/Production Order matching the Serial Number generated in the Production Order where in we can get the required data.
    Need your help and suggestions in creating this report..
    Thanks in advance..
    Ashok Vardhan
    Edited by: Ashok T Vardhan on Jan 19, 2012 11:38 AM

    Hello Tman,
    This is a slightly tricky question. The reason being, the report options like the report path etc, are set before you see the serial number prompt when you run your UUT. There might be other ways of getting around this, but a quick solution would be modifying the process model.
    I modified the PreUUT callback to set the report options. I passed the reportOptions as a parameter to this sequence. In the PreUUT sequence, I set the following fields:
    Parameters.ReportOptions.GeneratePath=False
    Parameters.ReportOptions.ReportFilePath= "c:\\"+ Locals.SerialNumber +"\\report.xml"
    I hope this would give you an idea.
    SijinK

  • Serial number in Equipment BOM component

    Hi Experts,
    Can we attach a serial number for a component in the Equipment BOM?
    My requirement is we sell an equipment with components to customers. Each component has got a serial number when it has gor produced (at the time of GR to FG store), when we issue we refer to the serial number and issue it to customer. Later all components are assembled at customer place. After job is completed we generate a serial number intern an equipment master is created. Now I create the equipment BOM with all those components. Here for the tracking purpose, can I maintain those components serial number in the equipment BOM????
    Regards,
    praveen

    Hi,
    You can do the hirerchay by using Ibase. I am not sure we can assign serial numbers in the BOM. Or alternate is to create subequipments with all those serial number and Material number combination. And here you can pass on warranty too. Which I think you can not achieve in IBase. Even I base can be generated with reference to production order.
    Hope it helps.
    Regards,
    N.Nagaraju
    Edited by: NAGARAJU NANDIPATI on Feb 5, 2011 3:26 PM

  • IPhone 5 weak signal become iPhone being tempered with no serial number. Horrified!

    I faced weak wifi signal problem with my new iPhone 5. Hence i went to the service provider, Singtel  to check the problem and was told after they open up my iPhone that there was no serial no. inside the phone. As such, they  were not able to help me cos mine was a tempered product.
    But,
    1. I received the new iphone from Singtel by renewing my contract. How would I know the phone was tempered.
    2. I was not there when the phone was opened, as they took the phone into their backend room. How would I know if Singtel tempered it themselves?
    The chance is low but who knows. Afterall, this is the same logic they gave me, since they say they don't hold responsibility for tempered phone as they won't be sure if I have tempered the phone even though the chance is low. Obviously, I would be real dumb to not expect they would open the device to check if I really wanted to cheat.. And for a corporate phone, it has to be a really desperate person to want to resort this.
    3. If I had not observed the wifi signal weakness, I won't have even bothered to go to the service centre. In fact I was still holding on to my iPhone 4 and resisted to switch as all my data was there. I switched only when my singtel cut my iPhone 4 service and i had to activate my iPhone 5.
    4. So the thing is, I would be cheated with a tempered product had I not have my weak wifi signal problem. I wonder how many other consumers are cheated.
    5. Anyway, I though each device comes with an unique serial number. My iPhone 5 serial was registered in my phone when I activated it. Is it not proof that this is a genuine phone?
    I am supposed to be a short changed customer to have to waste my time visiting Singtel for a phone problem and then being told that my phone has been tempered with and hence my warranty for the new phone is void.
    I would really appreciate it greatly  if someone could share with me how I should best resolve this. Thanks so much!
    Best regards,

    Thanks for your advice and taking the time to reply. :)
    Actually, I thought so too that the serial number in my setting would identify my iPhone as a valid apple iPhone. However, the service provider who supply the phone with the plan do not recognise that. They told me that under their policy, if a phone has been tampered with, in this case no serial number inside the iPhone, ( amazingly the iPhone was supplied by them and who would thought of opening up the iPhone to check the components when you purchase it?) , they will not recognise the iPhone.
    So In a nutshell, i went to the technical centre for help in my weak wifi signal problem for a new iphone and ended up being told that my phone which I just received in nov is a tempered iPhone....

  • Change UUT serial Number with Single Pass in Batch model

    How do I change the UUT serial Numbers with Single Pass in Batch model ?
    I also like to change the UUT report path, so that each UUT saved in it's own directory.
    TIA
    George Zou
    http://webspace.webring.com/people/og/gtoolbox

    the path to the UUT report can be configured in the report options.
    You can't specify unique path for each UUT in the report options.
    Both report path and UUT serial number are stored in the sequence context during execution. So if you want to know where those variables are located (in order to change their values during runtime), you can set a breakboint in your sequence, change to the variabels tab and do a search for the variables (you perharps have to play around a bit with the searchstring though).
    I've already find the place where TestStand holds the information.  The problem is that there is no proper callback I can override.
    I can only change the serial number in my sequence file.  But that is too late to include the serail number in the report file name.  The serial number inside the report does get changed.
    By the way, I can't change the process model.  User wants out of box batch model.
    Thanks for reply.
    George
    Message Edited by zou on 06-19-2008 08:40 AM
    Message Edited by zou on 06-19-2008 08:43 AM
    George Zou
    http://webspace.webring.com/people/og/gtoolbox

  • I just bought a adobe photoshop elements 12 for windows in the store , why the serial number on the box is invalid ?

    i just bought a adobe photoshop elements 12 for windows in the store , why the serial number on the box is invalid ?

    Hi,
    Does your serial number have 24 digits starting with 1057?
    Note: Please don't quote your number as this is a public forum
    If your number is not like that it may be a redemption code. See if the following helps.
    http://helpx.adobe.com/x-productkb/global/redemption-code-help.html
    If you need help in finding a serial number inside the box, please see here
    http://helpx.adobe.com/x-productkb/global/find-serial-number.html
    If you still need help, then you will have to contact Adobe. Look at the end of the page I first gave and you should see "Still need help" - click on that.
    Good luck
    Brian

  • Cannot get Serial Number !

    Hi I was trying to resolve a problem with my "Broken" Iphone and It says I Need a serial number in order to talk to the Apple Staff. Well, My phone is in 'Recovery Mode' and this means I Cannot turn my phone on, to get my Serial number, and when I plug it into Itunes it will not show me the number, all it says Is I Need to restore my device... which is what my problem is as it wont restore properly. But in order to sort this out they need my Serial Number but how am I going to get it? I Cannot get my serial number any other way! So please help me!

    Read here:
    http://support.apple.com/kb/HT4061

  • Serial Number Woes

    Hi everyone,
    I'm hoping someone will be able to help me out! I recently ressurected a G4 powermac - PCI graphics and succefully installed OS 10.4, office etc. However, I have now realised that the computer must have been repaired at some point and the logic board appears to have lost its serial number (cannot be seen in hardware summary). This wouldn't normally be an issue, however a program I would quite like to run requires the serial number in order to start.
    From looking around i've worked out that this would normally require a trip to an apple tech who would use something called a serializer boot disc. Does anyone have any ideas of how to fix this issue? I would welcome any work arounds!
    Jon

    Are you sure the software is asking for that kind of serial number? Is it explicitly stating that the processor needs the serial no and its not asking for a registration number.
    There is a utility that shipped with Mac OS server for modifying the serial on the processor. I'm afraid unless Google can turn one up then you are stuck with needing a friendly service technician.

  • I'm trying to install CS6 onto my new Mac.  However, the installer is saying that my serial number has been revoked.  HELP

    I purchased CS6 in June of 2012 and have been using it without a problem ever since.  I just purchased a new Mac however, and want to install my current version of CS6.  I downloaded the installer from adobe.com and am to the point of entering my serial number.  However, I am now receiving an error message stating that my serial number has been "revoked" and that I my product cannot be downloaded.  I have the purchase receipt and can provide documentation of the serial number and order number.  Will someone please help?

    contact adobe support by clicking here and, when available, click 'still need help', https://helpx.adobe.com/contact.html

  • Elements 8: Serial Number Accepted, Log-on Okay; Download 30 day Trial.

    I have purchased Photoshop Elements 8; my serial number is accepted, and account opens under my name and welcomes me back.  I receive a notice that I have a notice "check out some quick tips to see what you can do with your 30-day trial of Photoshop Elements 8".
    I get no option to contact Customer Service by Email.  I am on the East Coast, Time Zone "-5"; I can't even get "On-Line Chat".
    I am going to delete the program, and absorb the cost; this is not the only program available for processing photographs!  I plan to find another program that has an easier Customer Service function.  I am doing all of their work, and find it impossible to get satisfactory Customer Service.
    PS:  I am also deleting Adobe "Reader 9" from my system!
    John Anderson, 20 Haven Avenue, Abingdon, MD 21009.

    Hi John,
    Glad to hear that you havent given up on PSE.
    Just a suggestion: If PSE 8 is already installed right now on your machine and you are planning to upgrade your OS now, then please uninstall it first and then upgrade the OS. This way you will be able to make sure that you dont run into any issues which may be caused by OS upgrade.
    I am not much aware of how sales team works to be very frank, but I know that there have been instances on the forum where users have contacted Adobe sales team, talked to them over the phone, explained the situation and got a backup/duplicate DVD by confirming that they are having a valid serial number/purchase order of PSE 8. Try it out and you might be lucky to get a copy for yourself.
    Regards,
    Ankush

Maybe you are looking for

  • I purchased 2 itunes ecards and they were not received and I am unable to edit them.  support is non existent!!  Any ideas how I can cancel these since they weren't received?

    I ordered two itunes cards tonight and my granddaughter didn't receive either of them! I was unable to obtain online support of any kind. The gift view will not allow me to edit the gift, delte or change it.  Any ideas how I can delete these from my

  • Fault Message in Asynchronous

    Dear Friends,       In Message interface there is a option to select synchronous or asynchronous. If we select synchronous the fault message appearing and if select assynchronous the fault message disappearing, then in this case how can we do fault h

  • Tax coses/conditions for sales tax report in J1i2

    Hi, I would like to know whether the following information can  be pulled from SAP standard reports  : Supplier no, supplier RS/TIN, invoice no., Assessable value, Tax rate, tax  both for local and CST purchases . or ABAP report to be developed to ge

  • Query using DBLink

    Iam using 10.1.0.2.0 Version . Both table structure is same in both DB .I want to do both update and insert based on my below query Source: DB - Different Server Table 1: src_Tab_A Columns : c_id,seq, code,type,s_code [has composite pk c_id,seq] Tabl

  • Show HTML in Personal Profile?

    i'd like to show HTML (from a file or from a string) in any kind of component in an app running on a PDA. Probably i will use Personal Profile (and WSDD). Are there any components I could use to show HTML. Maybe in AWT? I know there are components li