Do I need multiple Vendor ID and device ID ?

Hi
I am developing a Compact PCI/ PXI card. Will I need a different DEVICE ID for each card, so that Labview can recognise between two cards. Is the distinction between two cards having the same vendor ID done on the basis of Device ID's or is it done on the basis of the slot it is in.
Any input is greatly appreciated.
Thank you,
Sincerely,
Sandeep

Hi Sandeep,
Thank you for contacting National Instruments.  If you are developing a Compact PCI / PXI card or a PCI card, it should have the same vendor ID and the same device ID.  In order to differentiate in LabVIEW between two cards of the same model, the Measurement and Automation Explorer (MAX) will provide an alias or device name to NI hardware (e.g. Dev1, Dev2).  However, this is specific to NI hardware only. 
You can differentiate between your custom card by looking at the slot number it is in, or perhaps by looking at information on your card such as the serial number or reading information off of the EEPROM. 
I hope this helps.  There are some other discussion forum posts that may help more too, which I've linked here. 
Regards,
Daniel L.
Applications Engineer
National Instruments

Similar Messages

  • Process single chq for Multiple Vendor Invoice and other Non-Vendor GL

    Hello Experts,
    Scenrio :
    In most of the cases, Vendors of our client have the same Banks as that of our client. our client provides facilty to thier Vendors by depositing chqs in thier account upon due date.
    Procedure :
    I want to process a manual transaction (with a single chq for intra-bank transfer). the total amt on chq would be the total of selection of several invoices & some other payable GLs.
    Query :
    which T-Code should i use & how do i proceed.

    Hi Hussein Merchant ,
    For your requirement you have to do single payment at F-53.There you need to select Other account check box at open item selection.Give the all open item vendor codes and get a cleared document number.
    Go to FCH5 and assign manual single check here
    May be this information is useful to you
    If you have any doubt feel free to ask
    Regards
    Surya

  • Subcontracting (Multiple Vendors Involved) and Production Version's

    Hello all,
    I would like to know more about this stuff. So do share your valuable thoughts.
    I was trying out a sub contracting scenario with multiple Vendors and Production Versions involved. The production version is designated in such a way that lot size/quantity of the requirement determines which of the available version's to be taken into consideration whilst generating procurement proposal via MRP.
    #1. Production Version:
    5 Version's of the BOM are assigned to various lot sizes.
    #2. I had 5 different info records created for the material-Vendor combination. Each one of them were assigned with a Prod version to it.
    Sample:
    #3. Post these settings i had a MRP run executed. Well !!! the results were different off-course. I neither did see the procurement proposals classified based on the prod version nor the first prod version assigned to the procurement proposals ( i meant i had a different prod version(version 4) assigned to the procurement proposals generated).  
    Questions:
    #1. Well the first thing that did strike my mind was how could i get the source list work for such scenario's ? I guess i can't go with quota arrangement coz which would split the procurement proposals into many halves and assign's it accordingly to the vendor.
    #2. How come production version 4 given the top priority here ?
    Source List state:
                             a. I had an item (tried the others as well) checked with fixed vendor indicator but the info record of the material-vendor combination had a different Prod. Version in it (well not PR4, i can guarantee you on that)
                             b. I had nothing marked with fixed vendor indicator. Results post MRP still did pick the same prod version (Version 4).
    #3. Last but not the least how can i get this thing to work ?
    Please do help out.
    PS: MRP 4 selection Method: 2 - Selection by Prod.Version
    Regards,
    Rahul

    Hello Rajen,
    Well as per your comment "
    Regarding the splitting, Not Always.
    There are two types of quota arrangement - Allocation quota and splitting quota."
    so meaning that allocation quota doesn't split the procurement proposal is it ? If so how are they assigned to vendors ? any other criteria being used up here
    Anyhow i had a new lot size method created with the splitting quota field unchecked. So how do i proceed from here ? meaning that how should i manage my quota file to not have my procurement proposals split ?
    Please do help out.
    Regards,
    Rahul

  • Converting report output to pdf by submit spooland email to multiple vendor

    Hi all,
               my current program converting the report output to pdf and then downaloding andsending  to vendor email.If user enter single vendor is o.k. but if suppose user enter multiple vendors,report is dipalying with multiple vendor information and all this information converting to one pdf file only.but i need particular vendor pdf have particular vendor info only excluding remaining vendor info.I am pasting my code.can anyone suggest?
    TYPES: BEGIN OF type_data,
           lifnr TYPE ekko-lifnr,
           matnr TYPE lips-matnr,
           vgbel TYPE lips-vgbel,
           vgpos TYPE lips-vgpos,
           mfrgr TYPE lips-mfrgr,
           vbeln TYPE ekes-vbeln,
           erdat TYPE ekes-erdat,
           lfdat TYPE ekes-eindt,
           lgort TYPE lips-lgort,
           verur TYPE ekes-xblnr,
           lfuhr TYPE ekes-uzeit,
           lfimg TYPE lips-lfimg,
           meins TYPE lips-meins,
           posnr TYPE lips-posnr,
           kdmat TYPE lips-kdmat,
           dabmg TYPE ekes-dabmg,
           eindt TYPE eket-eindt,
    * Add by liza DEVK989704
           park TYPE ZPO_PARK-menge,
    * End by liza DEVK989704
           END OF type_data.
    DATA: gt_data TYPE STANDARD TABLE OF type_data.
    DATA: gw_data LIKE LINE OF gt_data.
    form display_list.
    DATA: lv_maktx   TYPE makt-maktx,
            lv_adv(01) TYPE c.
      DATA: lv_menge TYPE zomm_t0104m-menge.
    *-- Set titles
      title1 = 'Shipping notifications'.
      title2 = '(Formerly Known As Matsushita Industrial )'.
      title3 = sy-title.
      IF NOT pa_fax IS INITIAL.
        NEW-PAGE LINE-SIZE 120 LINE-COUNT 44.
        title3 = 'Outstanding shipping notifications by supplier'.
      ENDIF.
      SORT gt_data BY lifnr lfdat matnr vgbel vgpos eindt.
      LOOP AT gt_data INTO gw_data.
        AT NEW lifnr.
          NEW-PAGE.
          sy-pagno = 1.
    *-- Get the vendor name
          CLEAR: gv_name1,
                 gv_telf1,
                 gv_telfx.
          SELECT SINGLE name1 telf1 telfx
                 INTO (gv_name1, gv_telf1, gv_telfx)
                 FROM lfa1
                 WHERE lifnr = gw_data-lifnr.
        ENDAT.
    AT NEW matnr.
    *-- Get the material description
          CLEAR lv_maktx.
          SELECT SINGLE maktx INTO lv_maktx
                 FROM makt
                 WHERE matnr = gw_data-matnr
                   AND spras = sy-langu.
        ENDAT.
    *-- If "only pending shipping notifications" is selected, remove all
    *   entries with no pending quantity
        IF gw_data-lfimg LE gw_data-dabmg AND
           pa_pend = 'X'.
          CONTINUE.
        ENDIF.
    *-- Highlight entries where the SN delivery date is before the PO
    *   delivery date
        IF gw_data-lfdat < gw_data-eindt.
          FORMAT INTENSIFIED ON.
          lv_adv = 'X'.
        ELSE.
          FORMAT INTENSIFIED OFF.
          CLEAR lv_adv.
        ENDIF.
        lv_menge = gw_data-lfimg - gw_data-dabmg.
    * Add by liza DEVK989704
        clear: PARKING, T_PARK.
        refresh: T_PARK.
        Select * from ZPO_PARK into T_PARK
        where vbeln = gw_data-vbeln
        and lifnr = gw_data-lifnr
        and matnr =  gw_data-matnr.
        Append T_PARK.
        Endselect.
        Loop at T_PARK.
          PARKING = PARKING + T_PARK-menge.
        Endloop.
        gw_data-park = PARKING.
    * End by liza DEVK989704
        IF pa_fax IS INITIAL.
          WRITE:/2(18) gw_data-matnr,
                  (40) lv_maktx,
                       gw_data-vgbel,
                       gw_data-eindt,
                  (04) gw_data-mfrgr,
                  (18) gw_data-verur,
                       gw_data-vbeln,
                       gw_data-lfdat,
                  (07) gw_data-lfimg UNIT gw_data-meins,
                  (07) gw_data-dabmg UNIT gw_data-meins,
                  (07) lv_menge UNIT gw_data-meins,
                       gw_data-lgort,
                       gw_data-erdat,
                  (01) lv_adv,
    * Add by liza DEVK989704
                  (08) gw_data-park.
    * End by liza DEVK989704
        ELSE.
          WRITE:/2(12) gw_data-matnr,
                  (26) lv_maktx,
                       gw_data-vgbel,
                  (16) gw_data-verur,
                       gw_data-vbeln,
                       gw_data-lfdat,
                  (07) gw_data-lfimg UNIT gw_data-meins,
                  (07) gw_data-dabmg UNIT gw_data-meins,
                  (07) lv_menge UNIT gw_data-meins,
                       gw_data-lgort.
        ENDIF.
        PERFORM write_vline.

    AT END OF lifnr.
         If pa_dtim NE '000000'.
          ULINE.
          SKIP.
          WRITE:/12 TS_VEND.
          WRITE:/12 TS_ATT.
          WRITE:/12 TS_FROM.
          SKIP.                                     "D01K934099
          WRITE:/12'DELIVERY TIME:',pa_dtim.        "D01K934099
          SKIP.                                     "D01K934099
          WRITE:/12 TS_TEXT1.
          WRITE:/12 TS_TEXT2.
          WRITE:/12 TS_TEXT3.
          WRITE:/12 TS_TEXT4.
        Else.
          ULINE.
          SKIP.
          WRITE:/12 TS_VEND.
          WRITE:/12 TS_ATT.
          WRITE:/12 TS_FROM.
          WRITE:/12 TS_TEXT1.
          WRITE:/12 TS_TEXT2.
          WRITE:/12 TS_TEXT3.
          WRITE:/12 TS_TEXT4.
    Endif.
    ENDAT.
         move-corresponding gw_data to t_data.
         move : lv_maktx  to t_data-maktx,
                lv_menge  to t_data-menge,
                lv_adv    to t_data-adv,
                parking   to t_data-park.
           append t_data.
    L_X = 'X'.
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
       EXPORTING
         NO_DIALOG                      = L_X
       IMPORTING
         OUT_PARAMETERS                 = GS_PRINT_PARAMS
         VALID                          = G_VALID
      IF SY-SUBRC  0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
          GS_PRINT_PARAMS-PAART = 'X_65_80'.
          GS_PRINT_PARAMS-LINSZ = '185'.
    *   /*----------store the current selection screen details---------/
      CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
        EXPORTING
          CURR_REPORT           = SY-REPID
        TABLES
          SELECTION_TABLE       = T_RSPARAMS
       EXCEPTIONS
         NOT_FOUND             = 1
         NO_REPORT             = 2
         OTHERS                = 3
      IF SY-SUBRC  0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    *   /*--- importing variable value set at first time to restrict the infinite loop --------/.
    IMPORT VAR FROM MEMORY ID 'abc' .
      VAR = VAR + 1 .
      P_UNAME = SY-UNAME .
      P_REPID = SY-REPID .
    * /*------checking variable to restricted scecond time exction of this block of code---------/
      IF VAR = 1 .
        V_MEMID = 1 .
        EXPORT VAR TO MEMORY ID 'abc' .
    * /*-----------submitting the spool request--------------/
        SUBMIT (P_REPID) WITH SELECTION-TABLE T_RSPARAMS
                           TO SAP-SPOOL
                         SPOOL PARAMETERS GS_PRINT_PARAMS
                         WITHOUT SPOOL DYNPRO
                         AND RETURN.
    endif.
    FREE MEMORY ID 'abc'.
    *  /*-------Calculating the lenth of report name--------/
      v_len = STRLEN( P_REPID ) .
    *  /*-------consutrucing the database variable  rq2name to search the spool request---------/
      IF v_len >= 9 .
        CONCATENATE P_REPID+0(9)
                    P_UNAME+0(3) INTO LC_RQ2NAME .
      ELSE.
        V_LEN1 = 9 - V_LEN .
        DO V_LEN1 TIMES .
          CONCATENATE V_TEMP '_' INTO V_TEMP .
        ENDDO.
        CONCATENATE P_REPID V_TEMP
                    P_UNAME INTO LC_RQ2NAME .
      ENDIF.
    *  /*--------selecting the spool request using the above constructed variable----------/
      SELECT  * FROM TSP01 INTO TABLe IT_TSP01
              WHERE RQ2NAME = LC_RQ2NAME .
    * /*--------sorting the internal table-----------/
      SORT  it_tsp01 BY RQCRETIME DESCENDING .
    * /*--------reading the first spool request-------/
      READ TABLE IT_TSP01 INDEX 1.
    * /*--------Convert Spool to PDF-----------/
      IF GS_PRINT_PARAMS-PDEST IS INITIAL.
        GS_PRINT_PARAMS-PDEST = 'LOCL'.
      ENDIF.
      CONCATENATE P_DEST T_DATA-LIFNR '.PDF' INTO G_FILENAME.
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          SRC_SPOOLID                    = IT_TSP01-RQIDENT
         NO_DIALOG                      = SPACE
       IMPORTING
         PDF_BYTECOUNT                  = G_BYTECOUNT
       TABLES
         PDF                            = T_PDF
       EXCEPTIONS
         ERR_NO_ABAP_SPOOLJOB           = 1
         ERR_NO_SPOOLJOB                = 2
         ERR_NO_PERMISSION              = 3
         ERR_CONV_NOT_POSSIBLE          = 4
         ERR_BAD_DESTDEVICE             = 5
         USER_CANCELLED                 = 6
         ERR_SPOOLERROR                 = 7
         ERR_TEMSEERROR                 = 8
         ERR_BTCJOB_OPEN_FAILED         = 9
         ERR_BTCJOB_SUBMIT_FAILED       = 10
         ERR_BTCJOB_CLOSE_FAILED        = 11
         OTHERS                         = 12
      IF SY-SUBRC  0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.

  • Need internal register info and map for PCI-6036E

    I'm going to be using NI-PCI-6036E Data Acquisition cards using a hard real time extension package for Windows. As a result, we will have to write a driver for the 6036E cards to access them in real time. Consequently, I need a map of and information on the internal registers e.g. a programming model. and the PCI vendor ID and device ID

    I would definitely recommend that you download our Measurement Hardware Driver Development Kit (DDK). This is a free download from our website, and can be found at www.ni.com or at the following direct link.
    NI Measurement Hardware DDK (Driver Development Kit)
    http://sine.ni.com/apps/we/nioc.vp?cid=11737〈=US
    This kit provides development tools and a register-level programming interface for NI data acquisition hardware. This works with E Series devices, including the 6036E.
    For questions specific to the DDK, please leverage the discussion forum catageory "Driver Development Kit (DDK)."
    Best Regards,
    Justin Britten
    Applications Engineer
    National Instruments

  • Need Multiple Units of Measure for a given material due to multiple vendors

    Hello,
    We have a requirement where we must have multiple units of measue (each, box, case, pallet) for a given material.
    Background:
    We have multiple vendors for one SAP material number. We need to store 4 levels of units of measure for each vendor+material combination.
    Unit of Meaure levels
    1. Each
    2. Innerpack (ex: 12 each = 1 innerpack)
    3. Box (ex: 36 eaches = 1 box)
    4. Pallet (ex: 100 eaches = 1 pallet)
    Standard SAP allows in MM01 additional data --> Units of Measure only 1 Ea, Box, Plt, etc.
    Our requirement is to allow multiple Units of Measure due to multiple vendors providing the same material.
    So, our unique combination is by a Material+Vendor.
    We are considering adding the vendor name and vendor number to the material master --> additional data --> Units of Measure tab.
    Does this seem like a good solution? What impacts do you foresee with approach?
    Any alternatve solutions?
    We thought we could enhance the purchasing info records to allow multiple units of measure too but then we need to also add many fields to hold the weight, lenght, height, width, volume, country of origin, etc.
    Please recommend a best practice or solution to handle this requirement.
    Thanks in advance!!!

    Hi,
    Maintain the alternative units in Material Master in Additional Data -> Units of Measure section with proper conversion factors.
    Create individual info-records i.e. per mtl-vendor combination & in the info-record maintain the order unit, along with other details as required.
    Now when you create a PO, the details will be read from the info-record. To test the same, create them in your sandbox & see if it meets your requirement.
    Hope the above clarifies your query.
    Regards,
    Vivek

  • E9280t can't boot with USB 3.0 cards (multiple vendors tried) New e9280t BIOS version needed

    Hello...
    I purchased a new e9280t last year from the HP Website complete with 9 gb memory (now 16), Blu-ray/DVD writer & reader, Hauppauge Digital TV tuner, ATI Radeon 4850 Dual Monitor video card, etc... SInce then I've added more memory and a 3 port Firewire 400/800 card. Its running Win 7 Pro (sp1) and the BIOS is v5.29.
     I purchased a external USB 3.0 WD drive (3 TB) and a StarTech USB 3.0 card (Amazon.com). After installing the USB 3.0 card, the system would power on for one second and die and then do it again a couple seconds later and the cycle continued until the power cord was pulled. I then pulled the USB 2.0 card and tried again only to have the same results. The only cards that remained in the system during the testing was the ATI card and the Hauppuage TV Card.
    Thinking the problem was with the USB 3.0 card, I purchased another vendor's (Rocketfish from BestBuy) and installed it. The same problem as with the other USB 3.0 card, the system won't start.
    No driver software or any other changes were made to the system before installation attempts (per vendor's installation instructions).
    Since the failures all occur during the initial power up sequence and that the cards were tried with and without having power connected to them, that the problem is only correctable with a BIOS upgrade for the TRUCKEE motherboard. I could be wrong but I'm going on 30 years of hardware experience as my framework for that opinion.
    If anyone else has this same problem, It would be good to rally around and see if HP notices us.
    Thanks,
    Norm
    This question was solved.
    View Solution.

    Greetings,
    I have tried multiple vendors and have yet to find a USB 3 card that will allow the computer to boot (for more than a 1/10th of a second).
    I've tried removing every card in the system except the the display card and no go. Two of the cards removed had power connectors to them and the third did not. So even after removing those cards along with disconnecting one of the two internal hard drives, I'm certain its not a power issue. As to what it might be, I don't know.
    If anyone else has been able to get a USB 3 card to work in that system, I'd love to hear from you.
    Thanks,
    Norm
    SYSTEM INFORMATION AS OF 20110315
    PRODUCT:                         HP Pavilion E9280T
    PRODUCT #:                     AW020AV-ABA
    MOTHERBOARD:             PEGATRON        (HP Name: TRUCKEE 1.04E01)  64 Bit
    BIOS VENDOR:                 American Megatrends Inc.
    BIOS:                                   5.29
    BIOS RELEASE DATE:     09/17/2010
    CPU:                                    Intel(R) Core(TM) i7 CPU 950 @ 3.07GHz
    MEMORY:                            16 GB
    VIDEO:                                 ATI Radeon HD 4850
    VIDEO DRIVER:                 8.821.0.0, 1-26-2011
    SOUND CARD:                  Realtek High Definition Audio
    SOUND DRIVER:              6.0.1.6196, 9-7-2010
    HD SOUND DRIVER:       ATI High Definition Audio Device
    HD DRIVER VERSION:    5.0.7000.9, 9-18-2009
    OS:                                       Windows 7 Pro (SP 1)
    VIDEO CAPTURE:             * Hauppauge WinTV HVR-1800 (Model 78xxx, Combo ATSC/QAM)
    CAPTURE DRIVER:          1.47.28239.0
    FIREWIRE CARD              * 400/800 Powered Card (2 800 & 1 400 ports)
    USB 2.0 CARD                  * 5 USB 2.0 ports
    * It should be noted that during the testing of the USB 3 cards, this device was removed prior to the testing.

  • HT4847 Can I have multiple users's family devices backed up to the cloud e.g. 2 iPhones and 2 iPads under the same iTunes account

    Just got a second iPad for the home.
    Can I have multiple users's family devices backed up to the cloud e.g. 2 iPhones and 2 iPads under the same iTunes account?

    Yes, but it's not usually recommended to share an iCloud account within a family.  If you do, any data you sync with iCloud will be merged and you, for example, will end up with each other's contacts and calendars on your devices.  Also, any action taken on one device (such as adding or deleting a contact) will be replicated on the other devices.  You will also all be sharing the same 5GB of free storage for all your data and device backups.
    Normally it's best to use separate iCloud accounts for each person's devices.  This will keep your data separated, and allow each person to have their own free 5GB of storage.  You can continue to share the same iTunes ID within the family; the ID you use for iCloud does not need to be the same as the one your use for iTunes purchasing.  (Each person should also use a separate ID on their devices for iMessage and FaceTime to avoid getting each other's text messages and FaceTime calls.)

  • Sync Mac iPhoto library with multiple Macs and devices using iCloud

    Our house is a "Mac" house. My wife and I have two iMacs, two iPhones, and an iPad. I have 30,000 photos in my library dating back to 2002 with a size of 100 Gb. I am paying the $3.99/month for 200 Gb of storage, but currently only using about 7 Gbs. I am running the latest of everything. iOS 8 on devices, and Yosemite on both iMacs.
    I am having troubles maintaining two separate libraries. I will upload to my iMac, my wife will upload to her iMac, but I want our entire library to be synced on both computers. Furthermore, I want pictures to show up on all devices. How do I get my entire 30000 photo library on my iMac uploaded to iCloud? I want the entire library to be synced to all our devices? I want all of our photos that we have taken to be in one happy consolidated iPhoto Library, accessible on every computer and device.
    Thanks
    Kevin

    This is not yet possible between Macs and iOS devices, but the new Photos.app for Mac, to be released early next year, will support it.
    Right now, only the iOS 8 devices can use iCloud Photo Library (Beta). That will store the Photo Library in iCloud and sync to all iOS devices.  See:    iCloud Photo Library beta FAQ - Apple Support
    Macs can upload to iCloud Photo Library currently only from the web interface:  https://www.icloud.com/#photos.
    It is not clear, if the Photos.app for Mac will support family sharing. We do not know much about the new app to come.
    The iOS version only supports one AppleID so far.
    And it cannot yet be recommended to upgrade the iOS devices to Cloud Photo Library Beta, because you will no longer be able to use iTunes Photo Sync or My Photo Stream to upload photos to your iOS devices.
    I want all of our photos that we have taken to be in one happy consolidated iPhoto Library, accessible on every computer and device.
    Added:  iPhoto is a single user database, that needs the iPhoto Library to be stored on a locally connected drive, and it is not possible to store the library on a network volume or cloud storage.  The new Photos.app will support the cloud storage.
    Apple's recommendation for sharing a library between iPhoto users is the sneaker drive:
    iPhoto: Sharing libraries among multiple users

  • My AirPort Extreme will only let me have one device on the wifi at a time. How do i put multiple computers, phones, and wireless devices on my wifi network at the same time?

    I have a Macbook Pro and it works perfectly fine on my AirPort extreem until I try and put a different computer, ipod, or phone on the wireless. When I try and put more than one device on the network only one device will receive internet access and the other(s) will get a message saying it is because of a shared ip address. Is there a way to change it so they can all share an ip address? Please help me configure my wifi and devices so that I can use more than one device on the wifi at a time.
    Thanks!

    Hmm... Those two screen shot disagree. the first shows that the duplication was on 192.168.1.64, while the second showed you were using 192.168.1.63. That confuses matters further.
    From the screen that you show, click on the "Advanced..." button in the lower right, then the "TCP/IP" tab.
    SHow us a shot of the screen or copy the text from the "Configure IPv4" line and the three under that (IPv4 Address, Subnet Mask, and Router).
    Then launch AirPort Utility.
    If you have one of the old 5.6.x versions:
    * Click on the icon for your Extreme.
    * Click on the "Manual Setup" button and supply the password if needed.
    * Click on the "Internet" icon at the top.
    * Click on the "DHCP" tab.
    * Give us a screen shot or transcribe the results.
    If you have AirPort Utility 6.2 (the latest):
    * Click on the icon for your Extreme.
    * Click on the "Edit" button in the balloon that pops up, supply the password if needed.
    * Click on the "Network" tab.
    * Give us a screen shot or transcribe the results.

  • I need to host a Shared PDF on SharePoint. If it is on SharePoint can only one person comment at a time? I know documents have to be checked out when using SharePoint. I need multiple users to be able to comment in real time and see comments in real time.

    I need to host a Shared PDF on SharePoint 2010. If it is on SharePoint can only one person comment at a time? I know documents have to be checked out when using SharePoint. I need multiple users to be able to comment in real time and see comments in real time. Is this possible?

    try here:
    http://www.bbb.org
    File a complaint with them. Verizon will call you to fix the blunder.
    But remember it is always up to the customer to insure what they are getting and what it costs. Don't trust the word of a sales person who makes their living on getting that sale. Lies, deceit or false promises will be and have been used by sales people for thousands of years.
    Good Luck

  • How do i manage multiple users and devices with one apple id without everything showing up on every device?

    how do i manage multiple users and devices with one apple id without everything showing up on every device?

    How to use multiple iPhone, iPad, or iPod devices with one computer

  • I need to back up and sync multiple iPhones to a single iMac.  Each iPhone has a separate Apple ID and the data from each iPhone needs to be backed up separately from the others.  How can I do this without getting all of the contacts, etc. mixed? Tnx

    I need to back up and sync multiple iPhones to a single iMac.  Each iPhone has a separate Apple ID and the data from each iPhone needs to be backed up separately from the others.  How can I do this without getting all of the contacts, etc. mixed? Tnx

    This might help: http://support.apple.com/kb/HT1495.

  • Ipod touch 4th gen needed a new screen and sleep/wake switch.  So, I replace them.  I was able to get to settings and do "erase all content and settings".  I am not able to totally shut this device off as it keeps restarting after a few seconds.

    Ipod touch 4th gen needed a new screen and sleep/wake switch.  So, I replace them.  I was able to get to settings and do "erase all content and settings".  I am not able to totally shut this device off as it keeps restarting after a few seconds.  I have used itunes to restore and also recover.  Device will actually shut off and stay shut off if I leave it connected to the computer.  The moment I unplug (3 seconds) the apple logo appears, it boots, unlock screen appears, I can unlock and operate normally, unplugged or not.  Just cant get it to completely shut down unplugged.  Any thoughts?

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer                            
      - If still not successful that usually indicates a hardware problem. Maybe you installed a bad component or damaged something during the repair/replacement.
    Apple will not help since you worked on the iPod yourself.

  • Does anyone know how to get the vendor ID and product ID for a USB device in NI-Visa? TIA

    Does anyone know how to get the vendor ID and product ID for a USB device in NI-Visa? TIA

    Hello,
    Exactly which USB device are you referring to? Is the device a NI product?
    The Product ID for National Instruments DAQPad-6020E is 0x12C0. The USB vendor ID is 0x3923. This is a 16-bit hexadecimal number(1093) (that is decimal 4243).
    Also, here's a document on our website that will help you in configuring NI-VISA to control your USB device:
    http://zone.ni.com/devzone/conceptd.nsf/webmain/6792BAB18242082786256DD7006B6416?opendocument
    Swapnil P.
    National Instruments Engineer

Maybe you are looking for

  • Is there a way to prevent slash stripping of include parameters in WL7.0sp1?

              We are porting a web application from WL6.1sp2 to WL7.0sp1 and have run into a           strange problem with the JSP include directive. We pass in string values as include           parameters and have noticed that when we have an include

  • When I "pause" shows on apple tv , the menu resets

    Starting last week, whenever I pause a program on my apple TV for more than a minute, it kicks back to the basic apple TV screen.  It's as if I hit tha "back" button (but I didn't). This happens with netflix, hulu plus and watching shows from my comp

  • JUSB pin config issues

    I'm assembling my new pc, and I've run into a problem. I'm attempting to connect my front USB ports, but the JUSB1 and JUSB2 pins on the KT4A-V are unlabeled, and the manual has no diagram. Can anyone refer me to a diagram of the pin config, or tell

  • Lock button not locking phone and sound thru earpiece really bad

    Hi, have an iPhone 5, within a few months the lock button failed to lock my phone and during a phone call the sound thru my earpiece is really bad distorted and sometimes intermittent. ( not due to signal tho) Are these common problems and will apple

  • Evaluate Authentication Scheme from Logon Ticket in WAS ABAP

    Hello, we've got the following problem: we have a corporate intranet portal. The portal is connected to several backend-systems. Between the portal and the backend-systems is a trust relationsship to enable single sign on. On Web-AS-Java-based system