Loading Individual serial numbers through interface

We are on R12. How do we load individual serial numbers (non sequential) through the receiving interface. I know we can do it through forms (select the “Lot/Serial” button, click on the “Individual” radio button).
In the receiving interface, MTL_SERIAL_NUMBERS_INTERFACE table only has From_serial_number and To_serial_number and this way we can only load the sequential serial numbers. How do we load non-sequential SN's through program? Any advise?
Thanks,
Krish

Just populate FM_SERIAL_NUMBER and TO_SERIAL_NUMBER with the same, i.e. individual, serial number for each of your non-sequential series.
Regards,
Jon

Similar Messages

  • HT4061 How do I find serial numbers through itunes

    How do I find serial numbers through itunes, I lost my phone, tracking it but it is offline. I am trying to register it to prevent someone from trying to use it after wiping it.

    Thanks man. Losing an Iphone *****. Hopefully now that it is in lost mode, and registered it will prevent someone from being a would be thief. Again thank you for the quick reply.

  • I need individual serial numbers from my standard packet.(which I have purchased)..

    I have to reinstall all my software, but cannot find the cd's. I have downloaded photoshop, indesign and illustrator, which are all included in the packed I own. now the installer is asking for serial number but I only have the one for the whole packet, and it seems I need individual ones for each application.
    where can I find this?

    Hi hellosindrehello,
    If you have downloaded the Suite, then all the programs that are part of the suite can be activated using the ssame serial key.
    Which version of Creative Suite are you using and for what OS?

  • How to Query serial numbers on VXI smip modules.

    I'm trying to write a program in C# that will query the VXI SMIP Switch Modules for their serial numbers.  Right now I am able to view all the serial numbers through the soft front panel provided with the drivers but I need to automate this process and extract the serial numbers for further processing so I need to access the modules directly and read the data.
    My current  Setup:
    [Computer with PCI-MXI-2 Board] ------> [ Racal Chassis  with  "SM1000E double wide Carrier" that can hold 6 VXI SMIP switch module plugin cards]
    I'm able to see all resources in NI MAX.
    The VXI resource is shown in NI MAX as : VXI0::26::INSTR
    The VXI SM1000E Carrier that holds the 6 plugin module has logical address 26
    and there are 6 modules in there carrier that is 0 based, module 1 is 0, module 2, is 1, module 3, is 2 and so on...
    To my understanding, Visual Studio can automatically create wrapper code using the "Driver Wrapper Wizard" included with the T&M ToolKit.  And by doing this I was able to access some of the functions of the drivers associated with this module.
    I'm trying to use the vtvmSmip_QuerySmip function, which will return the NonVol data for up to six plug-in cards at once according to the documentation in the driver header file.  The definition of the SMiP NonVol structure can be found in the vtvmSmip.h file. But I'm still unsure how to use it.
    Using Visual Studio 2003, the function is available but it requires some arguments.
    Below is the wrapper code generated.
    [code]
    private void button1_Click(object sender, System.EventArgs e)
     // This code creates and initializes an instance of the VXIplug&play wrapper class
     // TODO:  Insert your appropriate values for address, idQuery etc.
     Agilent.TMFramework.InstrumentDriverInterop.Vxipn​pWrappers.VtvmSmip myVtvmSmip;
     myVtvmSmip = new Agilent.TMFramework.InstrumentDriverInterop.Vxipnp​Wrappers.VtvmSmip("GPIB0::7::INSTR", true, true);
     // TODO:  Add your code here.  For example:
     // myVtvmSmip.Reset();
    [code end]
    I was wondering if, I want to use myvtvmSmip.QuerySmip();  What should I pass in as the arguments?  This fuction suppose to return all 6 modules information. not sure how...
    Its definition is as follows:
    void VtvmSmip.QuerySmip(int smipStruct)
    "smipStruct points to the locaton where the data is to be sotred.  The Structure is of type vtvmSmip_SMIP_TYPE.  Look in vtSmipDefs.h for the definition of vtvmSmip_SMIP_TYPE.  Note:  The Plug&Play spec prohibits exporting data structures, so the structure is not exported."
    s
    I get and exception when I use this as:
    myVtvmSmip.QuerySmip(1);
    didnt work gave me exception..
    Another fuction I coulduse was this one.
    myVtvmSmip.ReadNonvol();
    I guess this returns 1 module at a time.
    Definition:
    voidVtvmSmip.ReadNonvol(short smodNmbr, System.Text.StringBuilder nvData)
    I suppose smodnmbr responds to each module, 0, 1, 2, 3, 4, and 5.
    I hope this isnt too much information.. I just want to be able to read the serial numbers of of these switch modules so I can process them.  If anyone can help, that would be great.  Thanks.
    Chan

    Hi Matt,
    Thanks for your replay. Right now im trying to query the VXI Tech SMP1200 double slot carrier that holds 6 SMP5004 modules.  But I have other SMP switches as well after I figure this one out, I belive if I can do this one, they should be the same for the other switches.
    SMP1200 Product Link:
    http://www.vxitech.com/ProductDescription.aspx?PID​=218
    SMP5004 Product Link:
    http://www.vxitech.com/ProductDescription.aspx?PID​=242
    I belive I have the drivers from the manufacturer.  When I try to implement the code below, I get an exception error.
    The logical address of the SMP1200 Carrier is 26. And it has a resource name of "VXI0::26::INSTR" as should in NIMAX.
    The SMP1200 holds 6 switch modules and I think its zero based ( Module 1 is 0, Module 2 is 1, Module 3 is 2 etc..up to 5)
    reading through the vtSmipDefs.h file included with the drivers, It says QuerySmip() returns information about 6 modules at once.
    ReadNonvol() reads one module at a time I belive.  Not sure how this works because using these functions, they dont return a value.  I don't know If I have to somehow read it back.
    [CODE]
    private void button1_Click(object sender, System.EventArgs e)
     // This code creates and initializes an instance of the VXIplug&play wrapper class
     // TODO:  Insert your appropriate values for address, idQuery etc.
     Agilent.TMFramework.InstrumentDriverInterop.Vxipn​pWrappers.VtvmSmip myVtvmSmip;
     myVtvmSmip = new Agilent.TMFramework.InstrumentDriverInterop.Vxipnp​Wrappers.VtvmSmip("VXI0::26::INSTR", true, true);
     // TODO:  Add your code here.  For example:
     // myVtvmSmip.Reset();
    myVtvmSmip.QuerySmip(1);
    [CODE}
    The code above is automatically generated using the built in Agilent T&M Toolkit driver wrapper wizard in the menu in Visual Studio 2003.  using this code, the intellisense menu does appear to show all the class members functions from the driver.
    When I run the program, I get an exception error.
    Ill post the exact data as soon as im back at work.
    I can also send you a link to the drivers and the help files that have some information about it. 
    Im kinda a newbie here with programming in C# and also VXI/MXI.  This is just part of my whole application im writing.  So far I've been able to query all the instruments(meters, scopes, etc) through the GPIB using IDN query so far.  Just the VXI left and its killing me.  Appreciate you help.  Look forward to your reply.
    Thanks Chan

  • Serial numbers and equipment

    Hi,
    We have a setup where materials are managed with serial numbers (through serial number profile).
    An equipment record is created automatically together with each serial number.
    The serial numbers are assigned manually at the time of goods receipt. The equipment master is created in background.
    The problem is that the serial numbers are unique: I cannot for example not assign serial number 100000000 to both material A and B.
    Is there any solution to this? Is it possible to somehow allow the same serial number/equipment number created for 2 different materials? Or is it impossible with equipment requirement at serial number profile?
    Thanks,
    Lars

    Yes thats what i am saying...
    i will explain you in detail:
    First follow this path:
    Spro-Plant Maintenance and Customer Service-Master Data in Plant Maintenance and Customer Service-Technical Objects-Serial Number Management-Define Serial Number Profiles..
    Now check the "Indicator: Serial Number Existence Requirement" infront of your Serial number profile.....
    Now maintain master data in IQ04 for both materials.
    Utsav

  • Serial Numbers on an RFID Tag

    I am new to RFID technology. My question is: Can 1 RFID tag be designed to capture and transmit 5 non-consecutive serial numbers contained in 1 container box?
    If you can tell me if this is possible with minimum effort or much effort, please let me know.
    Then, if you also know Oracle's e-Business Suite (EBS), let me know if it's possible to have the scanning of such an RFID tag with 5 non-consecutive serial numbers populate the Serial Numbers form in EBS like on a shipping transaction.

    Thanks, Sam.
    The EBS modules would be Inventory and Shipping. We do not use WMS.
    Uh, I do not know 'edge'. We do not use RFID currently and our volumes are small.
    Here's the business issue, whether the solution is RFID or not: Our company makes lasers for fiber optics. Originally, we just made high-end lasers (low volume, high dollar) that were placed into individual container boxes with a barcode label with its single serial number on the outside. All of these lasers were serialized as finished goods in Oracle. Whenever we ship such a laser, we have someone scan the picked lasers manually with a barcode reader one container box at a time. This has not been an issue, since volumes are small.
    But now we sell low-end lasers (higher volume, lower dollar), which often are sold in containers of 5. Each of the 5 small lasers have an individual, non-consecutive serial number. Our business areas want these items serialized in Oracle EBS as well, even though it makes more sense to me to track these items by LOT NUMBERS, not individual SERIAL NUMBERS.
    The dilemma is: When we ship, let's say, 1000 of these small lasers by picking 200 multi-pack containers, how do we have the shipping guy scan in the 1000 serial numbers?
    One way is to print 5 small individual S/N barcode labels on the multi-pack container, then have the poor guy scan in 1000 S/N's into the Oracle Shipping form from the 200 containers.
    That's why I was asking if there could be an easy RFID solution. Perhaps log the 5 S/N's in the multi-pack container onto 1 RFID tag. Then have the guy scan the RFID tag and have it insert the 5 S/N's onto the Shipping S/N form, one S/N at a time with a tab entry to go to the next S/N line. That way, the guy only scans 200 RFID tags. Is this crazy (not possible)?

  • Finding serial numbers to install upgrade, reading classic files on OS10.6

    My old Mac had "classic" and I used Photoshop and Illustrator on it. This Macbook 10.6 OS can't open them the CDs, and I can't the the serial numbers I registered with Adobe to open a Photoshop CS2. I am also unable to even read my old Illustrator files. Any suggestions on this or  finding my old serial numbers through your system--same name but different email, address, etc?

    JudyHudd123 if you have registered your products you should be able to locate the serial numbers on Adobe.com.  Please complete the following steps to locate your serial number:
    Sign in to your Adobe account with your Adobe ID (your email address) and password.
    Click My Adobe, and then click My Products.
    In regards to opening your files.  Can you at least see the files?  If so can you give us an example of a filename?  If you were using the files with classic it is possible they may not have a file type associated with them.

  • Uploading serial numbers in MIGO_GR screen

    Hi all,
    The customer is using serial numbers option while preparing the goods receipt against a purchase order through tcode MIGO_GR. The customer receives the material in huge quantities say 20000 nos. or more. At present in the MIGO_GR screen the user can only enter six serial numbers at a time, which has become very cumbersome for the customer to enter serial numbers for such huge quantites in the MIGO_GR screen.
    The customer want to upload the serial numbers through the excel sheet in the serial number screen of the MIGO_GR. Please give a solution for the same.
    Please give details of either BADI or BAPI or User exit resolving this issue.
    Thanks in advance.
    AJ

    Hi
    While doing GR , there is a Find option in the serial number tab(Binocular Button)
    Provided if the serial numbers are already created in the system, user can click that button after entering the material,plant,sloc etc in the migo line item , internally it will go to IQ09 tcode , then user can enter the range in the serial number from to field or user can enter multiple serial numbers by selecting the multiple arrow mark option in the serial number field, after getting the serial numbers list user can click the select all option at the left top corner(green button) so that system will take the serial numbers based on the qty entered in the MIGO line item.
    At a time user can select even 50,000+ serial numbers through this binocular option
    if there is range ask the user to enter the range , other wise from the excel sheet copy all the serial numbers and paste in the serial number multiple arrow mark field at one shot in the IQ09 selection after clicking the binocular button
    Regards
    Amuthan M
    Edited by: Amuthan M on May 21, 2010 10:27 AM

  • Purchased software download card for Adobe photoshopelements13 and adobepremiereelements13 at my campus bookstore on Friday morning Oct 31.  Went through the process of entering product/serial numbers etc. and became "verified".  Downloaded the product (~

    Purchased software download card for Adobe photoshopelements13 and adobepremiereelements13 at my campus bookstore on Friday morning Oct 31.  Went through the process of entering product/serial numbers etc. and became "verified".  Downloaded the product (~2 hours in time), the proceeded to install.  At this - THIS point I was "told" I needed the 64 bit version (I have a 64 bit Lenovo T431s laptop).  My patience wearing thin... I returned to the Adobe site from which I had done everything to this point.  NOTHING with regard to a choice of 32 or 64 bit!  Looked closely at the info that came with the download card... again, nothing regarding 32 or 64 bit option.  Outlined this matter to Identit-e customer service... they said I need to contact Adobe.  Adobe site does not make it easy to do that.  Anyone have a solution and/or a suggestion?

    You can download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    Adobe Photoshop Elements 13 Direct Download Links, Premiere too | ProDesignTools

  • Adobe Activation error I bought a used CS2 application with serial numbers: it loads fine and works, but I cannot activate it and it will run out in 26 days. I bought it on ebat for 40 dollars. I am willing to pay a royalty fee. In 2006, or so, I bought a

    Adobe Activation error I bought a used CS2 application with serial numbers: it loads fine and works, but I cannot activate it and it will run out in 26 days. I bought it on ebat for 40 dollars. I am willing to pay a royalty fee. In 2006, or so, I bought a student version of CS2 at the College bookstore legally and registered it and it is still running on my 2002 eMac, but my Mac cannot communicate with my wireless printer I just got. So I looked for a copy of CS2 to put on my second hand IBM PC.

    Error: Activation Server Unavailable | CS2, Acrobat 7, Audition 3

  • Interface: Populating serial numbers for materials in idoc

    Hello All,
    Do you know how can we transfer serial numbers in idocs and then updating them in sales orders agains materials......
    Lets say, i have 10 materials as 10 line items in my sales order so i would get these details in idocs and then we need to create one sales order with these 10 line items and assign serial numbers to all of them......
    Could you please reply me at the earliest if you know how to do this.....
    Thanks,
    Patil.

    Hi Shankar;
       I am unaware of any function module, I searched for it high and low a few months ago...  This website describes the process of getting the serial numbers using WM if it is of any help to you...
    http://www.sapgenie.com/sapfunc/serialnumbers.htm
    Cheers,
    John

  • I loaded Yosemite OS on my Mac and then had to go back to Mavericks OS. Now my creative suite is asking for serial numbers which I no longer have. Need help! I was on a site license but have since retired and don't have access to the serial numbers...What

    Need info on how to get serial numbers for my creative suite.

    Atwittsend I would recommend uninstalling and reinstalling the installed Adobe Creative software titles.  It is likely reinstalling Mac OS 10.9 will lead to damage of the licensing files.  Please make sure to use the uninstallers located in the Applications/Utilities/Adobe Installers folder.

  • Re-load OS and serial numbers for apps are missing

    I had to reinstall my OS and it seems all my applications are asking for my serial numbers. I unfortunately installed and put my previous system in a separate folder. I moved all my programs back but I suppose the serial numbers are stored in Library somewhere. Any help?
    I finally got my email back running again and think I have recovered all of my emails, although all of my sent emails are someplace else. I think it may have put them in the junk folder. I also have about 10 or 12 blank emails that have the date my email was down but although I highlight them and say to trash they are still showing up in same place. But now if I highlight one the button says undelete. This seems strange.

    Application serial numbers are often stored in preference files in the user's library, not in the system folders.

  • Control of serial numbers in productions (parts and final product serials)

    Hi,
    We are starting using our production module in SBO 9.0 PL11 and it is all quite messy.
    We need to manufacture an item that has a serial number made of parts, some of which have serial numbers. Just imagine a car. The car will have its own serial number, but the engine, the radio and so on will have their own serial numbers. But the cables, tyres, etc do not have  a serial of their own.
    We set a BOM model, made of every part (with or without serial) and set every line to manual.
    Then we place a PO for our parts, and then do a Goods Receipt and enter the individual items' serials.
    Then, we issue a Production order for our final product made of all of our parts in the BOM. Then we release it for production.
    Next, it all gets messi. If we create a receipt from production, we can issue the serial number of each of our final products.
    If we create an Issue for Production, we can choose what serials to pick for production.
    Big problem is that we loose all traceability. There is no way (or we can't find it) to know what are the serials of the parts that created the final product.
    Not only this, issue for production looks (serial number transaction report-wise) looks like a goods issue, so just a way to decrease your parts stock. And receipt of production looks like a goods receipt. So you just now you received something for production or that you issued it to production, but there doesn't seem to be a link between them. No traceability at all.
    Can anyone throw some light into this? I am sure we are doing something really wrong, but can't see what.

    Hi,
    1. But how do we control what serial numbers for each part we used to create the final product specific serial? (I use engine #003 and radio #376) to create product with serial #076. And we always produce in quantities greater than 1.
    Please provide an sample process production with FG item and components with required serial format to check
    2. This query is not returning any rows. I am inputing a final product code, with production orders, and nothing shows up.
    As mentioned, the above query works for batch managed items. Once we conclude process, I can try modify above query to meet your purpose.
    3. It sounds really complicated to have to open both receipt and issue to track a single manufacturing operation.
    You can use relationship map option to view both issue and receipt for single production.
    4. Besides that, what is the exact workflow? I don't quite understand issue and receipt, should I run both independently?
    Standard work flow for production order:
    1. Create bill of material
    2. Create planned production order based on above BOM
    3. Make sure required components are arrived.
    4. Change planned to released status.
    5. Issue components to production by issue production
    6. Receive finished item from production through receipt from production.
    Thanks & Regards,
    Nagarajan

  • Difficulty locating CS6 serial numbers for discounted Creative Cloud plan

    Hello
    I have Adobe CS6 (mostly all apps) on my Mac Book Pro which i do not use any more.
    I want to move these licenses to my iMac or even buy Creative Cloud subscription but at the discounted rate (because i already own CS6).
    I have moved countries last year ( from India to Canada) and do not have access to any serial numbers. I tried to update Adobe ID etc through individual app hoping it will lead me to a registration page or show my serial number, but safari open up with an error
    413
    Header Length too Large
    Please advice on how to resolve situation!
    Thanks
    the_anim8r

    https://www.adobe.com/account.html for your Adobe orders page... or
    Lost serial # http://helpx.adobe.com/x-productkb/global/find-serial-number.html

Maybe you are looking for

  • Logic pro 9.1.7 does not show note velocity data with velocity tool

    Anyone have an issue with files not showing note velocity and duration data with velocity tool in the piano roll in Logic 9.1.7? It only show the note and the velocity change (+1 or -1 for instance). I have to use Logic 9.1.5 because of that.

  • Multiple selection from a LOV

    I need to create an LOV from which the user needs be able to make more than one selection. Is this possible via an LOV (i.e can the LOV somehow return an array of values instead of just one)? If I should be using a different technique alltogether for

  • USB ports problem

    Hi all, I have got a brand new laptop Pavilion dv6-2060ea and have noticed problems with the usb ports. I generally use linux as a primary OS but I have noticed the same problem on Windows 7 as well. The laptop sometimes doesn't recognize usb devices

  • Apple TV and Marantz 7005 receiver

    I cannot get my ATV to show up when trying to run it through my Marantz 7005 receiver. I've tried different HDMI slots but nothing is working. Can anyone help?

  • [SOLVED] Keeping openbox from different distros from clobbering

    I have been using Crunchbang as my everyday OS for awhile now, but recently installed Arch in parallel with the idea of migrating for good once I have things set up the way I like. I've been doing this for awhile now -- working with two different dis