Extracting Serial numbers to bw

Hi,
I need to extract serial numbers associated with deliveries. not sure how to go about it.
Please guide me do this.
Thank You,
GRao

Hi,
Look at DB connect functionality!
http://help.sap.com/saphelp_erp2004/helpdata/en/a1/89786c3df35c4ea930a994e884bb4c/frameset.htm
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/biw/s-u/transferring%20data%20with%20db%20connect.pdf
Hope it helps!
Bye,
Ravi

Similar Messages

  • Cisco Prime - extract list of hostnames and their serial numbers.

    Hi all,
    is there a way of extracting a list of hostnames ( for devices in EMEA ) and their associated serial numbers from Cisco Prime and into say a csv file?
    Many thanks,
    Paul

    Hi Paul,
    if you have Prime Infrastructure then  run the below report :
    Report > Report Launch Pad > Device > Detailed Hardware > Detailed Hardware Report Details
    If Prime LMS then :
    Reports > Inventory > Detailed Device
    Hope it will help
    Thanks-
    Afroz
    ***Ratings Encourages Contributors ***

  • 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

  • Retrieve Multiple Serial Numbers for given Delivery Document and Item

    Hello Experts,
                          I am currently working on a 2Lis datasource to extract Delivery information.Now it is required to append the
    datasource with field (say ZZSERNO) which should extract ALL Serial Numbers from OBJK table for a given Delivery Item.
    I know that there is a link between table SER01 and OBJK to retrieve the same.However, my concern is- C_T_Data table is
    already providing the Delivery Information and along with that I want to display ALL Serial numbers for a given Delivery Item.
    A delivery Item can have more that one serial number linked to it as what I see in VL03N for a Delivery document.
    So currently in RSA3, I retrieve say 1 record for a given Delivery Document and Item .Now an Item has say 10 Serial Numbers
    associated with it, so i should see 10 Records for that Delivery Document and Item, after executing RSA3.
    Please provide me with the CMOD logic to do so.

    Hi,
    You can Link LIPS and OBJK tables with Delivery and Del Item.........refer below for the code.
    1) Declare an Internal table of type OBJK with fields DEL DOC, DEL ITEM and ZZSERNO .
    2) Declare another Internal Table ITAB_LIPS of type LIPS with required fields say in your case *DEL DOC, DEL ITEM and ZZSERNO....etc.
    3) Use below select statement to extract records from LIPS into ITAB_LIPS that you have declared for to fetch LIPS data.
    Select DEL DOC, DEL ITEM ( here i have included only few fields but as per requirement please add fields here)   from
    LIPS into corresponding fields of Table ITAB_LIPS.
    4) write one more select statement to fetch Serial number data.
    Select DEL DOC, DEL ITEM ZZSERNO  from OBJK into corresponding fields of TABLE ITAB_OBJK for all entries in ITAB_LIPS
    where DEL DOC = ITAB_LIPS-DEL DOC and
                DEL ITEM = ITAB_LIPS-DEL ITEM.
    Loop at ITAB_OBJK.
    Read table ITAB_OBJK into ITAB_LIPS with keys DEL DOC    DEL ITEM.
    ITAB_LIPS-DEL DOC = ITAB_LIPS-DEL DOC
    ITAB_LIPS-DEL ITEM = ITAB_OBJK-DEL ITEM.
    IF SY-SUBRC = 0.
    ITAB_LIPS-ZZSERNO = ITAB_OBJK-ZZSERNO.
    ENDIF
    ENDLOOP.
    Hope the above code helps
    Sujan

  • How to collect all UCS-C series minor serial numbers

    Assuming one is deploying a stand alone C220 chassis which will be managed through CIMC, is there an efficient way to collect all the serial numbers for all the minor parts in the chassis?
    Cutting and pasting from the GUI is painful because complete rows and / or areas (i.e. storage adapter tab) can't be copied. It needs to be done one "cell" at a time.
    Other posts indicate using "connect debug-shell"  or "show server inventory", but seem to be available only on B series or possibly different chassis versions.
    The server_inventory.txt you get as a result of Admin | Utilities | Generate Technical Support Data unfortunately does not include serial numbers or much detail.
    Now I'm looking at simply running the following and massaging it into a pleasant spreadsheet:
    show chassis
    scope chassis
    show cpu detail
    show dimm detail
    show psu detail
    ow pciadapter-pid detail
    show network-adapter detail
    show storageadapter detail
    Does anyone have any better suggestions?  I'm currently looking at CIMC v1.5(2) if it makes a difference.

    Hello,
    Are these rack servers managed by UCSM ?
    If yes, you can export the inventoy that will include serial number information.
    If not, we can use XML API to extract necessary information.
    http://www.cisco.com/en/US/docs/unified_computing/ucs/c/sw/api/b_cimc_api_book_chapter_01.html
    As as example,following XML query would return server model and chassis serial number
    The doc has detailed information about each class.
    Padma

  • How to see serial numbers which have been sold

    Hi,
    I want to see serial numbers which has been sold.
    How to see that.
    Regards
    Gaurav Jain

    Hi there,
    There is no standrd table that will display all the serial num that are sold in a given time.
    You can write an ABAP query / report for this. In the report, you can code in such a way that if you give the validity dates, it should give all the deliveries that are created within that period & serial num of serialized products in those deliveries. This is because serial num are assigned only of the item that is serialized. Non-serialized items willnot have serial num.
    For this, you will have to 1st extract all the entries in LIKP for a specific sales org / plant / shipping point within that period. Then you will have to extract LIPS values of those deliveries. Then you will have to pick up only serialized items from the list.
    Ask you ABAPer to check if it is possible to develop this kind of a query / report.
    Regards,
    Sivanand

  • Retrieve HP IP phones serial numbers from Lync Server

    Hello everyone.
    I'm wondering if there's anyway to retrieve HP phone serial numbers from Lync Server using a script or any method there ? 
    If there's not, Is there any tool that would extract the serial numbers of the phone from HP Phones? I know until now there's two HP phones that's compatible with Lync.
    4110 and 4112.
    I would appreciate any comment. 
    thanks
    Mohammed JH

    I got it, 
    This batch file will do the job, I created a folder on Lync and made it available for me on the network so I can get a daily report of the HP connected phones along with serial numbers. 
    The folder name is C:\PublicFolder
    The below batch file will check for the word (HP) on the Lync imageupdates folder and will send all files which have HP inside them to the public folder. 
    I will run a schedule task on daily basis to do this. 
    Thanks.
    setlocal
    set SourcePath=C:\Lyncshare\1-WebServices-7\DeviceUpdateLogs\Server\Audit\imageUpdates
    set TargetPath=C:\PublicFolder
    set FileMask=*.*
    set Search=HP
    for %%a in ("%SourcePath%\%FileMask%") do (
    echo Processing %%~nxa ...
    findstr.exe /r "\<%Search%\>" "%%a" >NUL
    if not errorlevel 1 (
    copy "%%a" "%TargetPath%"
    echo Done.
    Mohammed JH

  • Serial Numbers for Production Orders

    Hi All
    Can anyone tell me the table in which the serial numbers are stored for the production orders?  I have created a production order and have assigned serial numbvers to it.  Now I want to extract these serial numbers from the table.
    Thanks in advance.
    Tom

    Hello Jack,
    In table SER05, the list of serial number details can be obtained.key the order noin ser05 table, get field OBJKNR, then pass this OBJKNR in table OBJK .
    Some useful table for serial numbers
    SER00 Generic table for serial numbers
    SER01 Serial numbers assigned to a delivery
    SER02 Serial numbers assigned to a guarentee
    SER03 Serial numbers assigned to a material document
    SER04 Serial numbers assigned to an inspection lot
    SER05 Serial numbers for a production order
    SER06 Serial numbers for Handling Units
    SER07 Serial numbers for Stocktaking
    SER08 serial numbers for Orders (SD)
    The assignment of serial numbers to a production order can be done either via transaction CO02 or at the latest when the GR from Production is made.
    I hope that this information clarifies the issue.
    Regards,
    R.Brahmankar

  • Goods Receipt and Serial Numbers

    I'm getting the following error "[IGN1.WhsCode][line: 1] , 'This entry already exists in the following tables (ODBC -2035)'" when trying to add a goods receipt document containing a single item that is serial number managed via the DI API.  We are running against Business One version 2005A SP01 PL9.  The Goods Receipt PO transaction is reporting the same error.  The Goods Issue and Delivery transaction appeared to work correctly. The Goods Receipt transaction posted correctly when created in the B1 Client (GUI) application.  So it is an issue with the DI API.  We are using the SBODemo_US company database but we added a new item and configured it for serial number management.  This same code works with B1 2004A.  Our application is suppose to work with both versions of B1, so our application is built with version 2004A DI API.  Should this work, or do I need to use the 2005A version of the DI API when communicating with a 2005A system?  Would this version of the DI API work correctly with a 2004A system?
    Thanks,
    Jason Eiler

    I remembered encountering the same problem working with B1 2004A.  For the Goods Receipt and Goods Receipt PO documents, when receiving items that are serial managed I would fill in the InternalSerialNumber data member of the Document Lines Serial Numbers object.  The fix was I also had to provide some value for the SystemSerialNumber field.  I just always set it to a value of 1.  In B1 2005A, this issue must have been resolved, because when I commented out this line of code, the document was added successfully.  I don't have to provide a SystemSerialNumber, the system must generate one, as I would expect.

  • I have adobe elements 6 program and my disk got distorted.  i have all my serial numbers still as i have all packaging.  is there a way the program can be downloaded.  my computer had to be wiped out and was trying to reinstall

    hi.  i have the adobe elemenets6/premiere elements 4 package and my disk has gotten destroyed from getting all scratched up.  my laptop i had my program on had to be wiped out and everything has to be reloaded.  is there a way the program can be downloaded from the internet? i have the packaging still where it shows my serial numbers.

    iPods do not work with "accounts."  They work with your iTunes library.  You don't have to set up a new iTunes library for each iPod.  One iTunes library can sync with as many iPods, iPhones, and iPads as your own, at the same time.  iTunes connects to and treats each device separately.
    However, if your iPod nano is set up for automatic syncing with an iTunes library that is NOT your current iTunes library, you cannot sync your current library to it without replacing its existing content.  Do you have access to the previous iTunes library, the one the iPod currently synced to?  If so, you should transfer your song files from that iTunes library to your current iTunes library.  Then, sync our iPod to your current iTunes library.  You can post back to get more info about the procedure.
    If you don't have access to that previous iTunes library, the approach is to first offload the song files from the iPod to your computer's drive, then add the song files to your current iTunes library.
    You cannot use iTunes to transfer song files from iPod to computer, except for songs purchased from the iTunes Store.  However, there are third-party methods and utilities that can transfer from iPod to computer.  If you do a Google search on something like "ipod transfer," you should get some links.
    You can then sync your iPod to your "consolidated" iTunes library.

  • I have just purchased photoshop elements and premiere package. I tried to download them but it tells me the serial numbers are inapplicable. I notice the platform says windows and I am using a mac book pro.  It didn't give me an option when purchasing. wh

    I purchased Photoshop Elements and Premiere package today.  I have been trying to download them but it tells me the serial numbers are inapplicable.  I am using a mac book pro and I have just noticed that the platform in my receipt says 'win" .  I don't remember being given an option for mac or windows  when purchasing.  what can i do now?

    Return, cancel, or exchange an Adobe order

  • Serial numbers on sales orders

    Hi
    can somebody tell me how do we maintain the serial number in Sales order in VA01/02...
    Inputs on SD serial numbers also welcome
    Thanks
    Muthu

    hi,
    You can get the information you need in the below link
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/LOMDSN/LOMDSN.pdf
    page no 17
    thanks
    krishna prasad

  • Goods movement with serial numbers

    Hi,
    1. Is there any report or table where I can see goods movement of material with their serial numbers?
    2. Also in MMBE i can see 'On order stock'. I know this is PO open PO quantity.
    Now this open PO qty will not be there against any storage location. I got some stock on this status in some storage location.
    How I can move to 'unrestricted stock' status?
    Please advice.

    Hi
    Check these tables,
    SER00 General Header Table for Serial Number Management
    SER01 Document Header for Serial Numbers for Delivery
    SER02 Document Header for Serial Nos for Maint.Contract (SD Order)
    SER03 Document Header for Serial Numbers for Goods Movements
    SER04 Document Header for Serial Numbers for Inspection Lot
    SER05 Document Header for Serial Numbers for PP Order
    SER06 Document Header for Serial Numbers for Handling Unit-Content
    SER07 Document Header for Serial Numbers in Physical Inventory
    And in order to move On Order stock to Unrestricted you need to close those POs by doing GR.
    Hope it helps
    Rgds
    ramesh

  • Goods movements of material with serial numbers

    Hi,
    1. Is there any report or table where I can see goods movement of material with their serial numbers?
    2. Also in MMBE i can see 'On order stock'. I know this is PO open PO quantity.
    Now this open PO qty will not be there against any storage location. I got some stock on this status in some storage location.
    How I can move to 'unrestricted stock' status?
    Please advice.

    Hi,
    Is Serial number is the one obtained thro stadard batch management or is it a Zfield.
    On Order stock cannot be converted to unrestircted stock unless a GR is made.
    With regards,
    Jeeva

  • Serial numbers stock on posting date

    Hi,
    user want's to know the serial number stock on a specific date.
    I know MB5B which shows me the stock on the desired day. Now they want to know the different serial numbers to the stock count out of MB5B.
    Material 13498 Stock on 01.01.2009: 188 PC
    Serial numbers: C1101, C1102, C1103, ....
    Any ideas?
    Thanks for your support, regards martin

    HI,
    Try IQ09 or
    Have a look at the following programs:
    RIMMSF00: Stock validation
    RISERNR9: Copying of the changed stock flag
    Thanx
    MK

Maybe you are looking for