What type of column to use for this situation in SharePoint 2010?

Hi there,
In a SharePoint 2010 list - I have to add a few columns which need users to pick a numeric value and it's unit of measurement. E.g.
- 30 (Inches/ft/cms)  <-- Here 30 is a number field and then a dropdown to select a unit.
An option is to create two columns (1st - Number type and 2nd Dropdown with Inches/ft/cms values).
But I have a lot of such sets in the same list and am not sure if above is the best way to go?
Are there any other options for me? Is a Site Content Type a good option? Anything else?
Thanks.

Hi,
I can think of two ways that you can accomplish what you are trying to -
1. Content types could be a way or Create Site columns and prepopluate the values in these columns and use it in your list
2. create custom column (C#) see here for more info -http://msdn.microsoft.com/en-us/library/ff648469.aspx
Hope this helps!
Ram - SharePoint Architect
Blog - SharePointDeveloper.in
Please vote or mark your question answered, if the reply helps you

Similar Messages

  • What r all the tables used for this report. please reply

    hai,
    what r all the tables used for this report.
    report :
    <b>
    •     Report to display all finished goods that go out-of-stock. Developed a drill down report for materials details (totals and subtotals for material stock values by material group and material type).</b>
    thanks in advance

    hi Ashok,
    Check this out
    http://www.allsaplinks.com/tables.html
    http://www.sapgenie.com/abap/tables.htm
    Regards,
    Santosh

  • What are all the tables used for this report:

    hi
    what are all the tables used for this report:
    report:
    •     <b>Stock Report, which will give opening balance, receipt, issue, and closing balance for any given Duration for any material.</b>
    thanks in advance

    Tables: MSEG, MKPF, MARD.
    FOR REFERENCE SEE TRANSACTION : MB5B.
    Message was edited by: Sharath kumar R

  • What type of disc is used for backing up itunes

    What type of disc is used for backing up itunes?

    You can backup your itunes library to whatever medium you like ( cd/dvd/flash drive/external drive/etc)

  • What should my sequence settings be for this situation?

    Hello everyone,
    I'm about to start a project with a few different formats combined on the same sequence, so I'm wondering what format you would all use for the sequence?
    My project will consist of:
    10% DVCPRO HD 720p60 footage from a P2 card
    10% AVCHD 1080i30 footage from a Canon Vixia HF20
    10% Quicktime Animation footage created in After Effects
    70% JPEG images (slide show) of resolutions larger than 1920 x 1080
    I'm not sure of the resolution of the Quicktime Animation footage from After Effects, since I haven't created it yet.  I'll create it with a resolution that matches my sequence resolution.
    I'm thinking the sequence resolution should be 1080p30, to take advantage of the high res JPEG images.  The final delivery will be a h.264 file for web streaming on Vimeo.
    So this is where I need the help:  what sequence format should I use for editing?  Is this a good situation in which to use a ProRes format?  I've never used ProRes on a PC before, and I'm not really sure which specific ProRes format would be best to use here.
    I'm editing with Premiere Pro CS5 on a PC, and I do have the latest version of Quicktime Pro installed.
    Thanks!
    Mike Tomei

    Yeah, I agree... edit at 720, because that's the maximum for Vimeo, and also your smallest footage is at 720... bringing it up to 1080 may make it look bad.
    I've edited mixed footage before, and I generally use the sequence for the "hardest" footage to edit (which is generally AVCHD). I do it no because I know that to be the best, but because I DON'T know what information specifically goes into the different sequences, and I do know that AVCHD can tax my system, so when I have to use it, I try to optimize for it.

  • What are all the tables used for this report ? please reply

    hai
    i have practcing reports,
    so any one give me the name of the tables used for the below report
    <b>Created report for invoice details, shipping details and partner function.</b>
    thanks in advance.
    by
    ashok

    Hi Ashok,
      I am sending you the code which will display tables present in SAP with the description and jump to datadic or SE16 by selecting plus F2 or F8.
    REPORT ZZBGS044 MESSAGE-ID Z1 LINE-COUNT 65 LINE-SIZE 132
                    NO STANDARD PAGE HEADING.
    Description: This program list all tables in        regards to the   *
                 selection criteria.                                     *
    Customizing: You need not to make any customizing to use this program*
    Change of    You only have to check that tables, functions and       *
    release:     includes till exists. Bedst just to check and run the   *
                 program.                                                *
    Programmer:  Benny G. Sørensen                                       *
    Date:        July 1995                                               *
    SAP R/3      2.2F                                                    *
    Corrections----
    Date        Userid     Correction                                    *
    xx-xx-xxxx  xxxxxxxxx  xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx *
    TABLES: DD02V                "SAP tables view
    DATA: BEGIN OF DYNTAB OCCURS 2000.
            INCLUDE STRUCTURE BDCDATA.
    DATA: END OF DYNTAB.
    DATA: BEGIN OF TABLES OCCURS 100.
            INCLUDE STRUCTURE DD02V.
    DATA: END OF TABLES.
    DATA: L        TYPE I,
          REPL(30) TYPE C VALUE '????????????????????????????'.
    FIELD-SYMBOLS:
    PARAMETERS:
    TABLE(30) TYPE C,
    TITLE(74) TYPE C LOWER CASE DEFAULT ' ',
    DOWNLOAD(1) TYPE C DEFAULT ' ',
    FILENAME(65) TYPE C DEFAULT 'c:SAPDOC?',
    EXCEPT(30) TYPE C DEFAULT ' '.
    START-OF-SELECTION.
    IF TABLE = ''.
    TABLE = '*' .
    ENDIF.
    IF TITLE = ''.
    TITLE = '*' .
    ENDIF.
    TRANSLATE TABLE USING '*%'.
    TRANSLATE TITLE USING '*%'.
    CONDENSE EXCEPT NO-GAPS.
    L = STRLEN( EXCEPT ).
    IF L > 0.
    ASSIGN REPL(L) TO
    ENDIF.
    SELECT * FROM DD02V INTO TABLES
    WHERE DDLANGUAGE = SY-LANGU
    AND TABNAME LIKE TABLE
    AND DDTEXT LIKE TITLE.
    HIDE DD02V-TABNAME.
    IF EXCEPT NE ''.
    REPLACE EXCEPT LENGTH L WITH
    INTO TABLES-TABNAME.
    ENDIF.
    TRANSLATE TABLE USING '% '.
    CONDENSE TABLE NO-GAPS.
    IF TABLES-TABNAME CS TABLE.
    WRITE:/ TABLES-TABNAME, ' ', TABLES-DDTEXT.
    APPEND TABLES.
    ENDIF.
    ENDSELECT.
    IF DOWNLOAD NE ''.
    CALL FUNCTION 'WS_DOWNLOAD'
    EXPORTING
    FILENAME = FILENAME
    FILETYPE = 'WK1' "ASC, WK1, DBF, DAT, bin
    TABLES
    DATA_TAB = TABLES.
    ENDIF.
    AT LINE-SELECTION.
    SET PARAMETER ID 'DOB' FIELD SY-LISEL(30) .
    CALL TRANSACTION 'SE12' AND SKIP FIRST SCREEN.
    AT PF8.
    CHECK SY-LISEL <>
      SET PARAMETER ID 'DTB' FIELD SY-LISEL(10) .
      REFRESH  DYNTAB.
      PERFORM DYNPRO USING:
         'X'  'SAPMSTAZ'     '0100'        "Selection screen
        ,' '  'DD02V-TABNAME'  SY-LISEL(10).
      CALL TRANSACTION 'SE16' USING DYNTAB MODE 'A' .
    FORM DYNPRO USING DYNBEGIN NAME VALUE.
      IF DYNBEGIN = 'X'.
        CLEAR DYNTAB.
        MOVE :  NAME TO DYNTAB-PROGRAM,
                VALUE TO DYNTAB-DYNPRO,
                DYNBEGIN TO DYNTAB-DYNBEGIN.
        APPEND DYNTAB.
      ELSE.
        CLEAR DYNTAB.
        MOVE:  NAME TO DYNTAB-FNAM,
               VALUE TO DYNTAB-FVAL.
        APPEND DYNTAB.
      ENDIF.
    ENDFORM.
    Regards,
    Azaz Ali.

  • Is anyone creating inkjet canvas prints at home with their Macbook Pro? What type of printer is compatible for this kind of job? Was using Hp inkjet 7300 (before switching over to mac)which uses 5 color cartridges.

    I'm an artist and just purchased my first Apple product(Macbook Pro with retina 15")...prior to was using an Hp inkjet 7300 printer, which gave me wonderful prints on canvas, paper, fabric, etc. for many years. This particular printer uses 6 color cartridges including black. Now need to know if I can still use this printer or what would be a comparable companion printer for my Macbook Pro and deliver the same high quality of prints?

    Your Mac should set it up automatically when you plug it into the computer.
    I hope I helped.
    Austin

  • What type of data type would I use for this situation?

    I have a class which connects to Oracle, but each connection may be to a different database. Each database has it's own user name and password.
    I'd like to pass one key value and then the class would get the user name and password and url from that but not sure how to do it.
    Right now, for the function I pass it the url, username, password which then calls a connection function and passes it the same value. This seems messy keep passing values around.
    Is there some kind of enumerations or something ?

    You might consider putting the URLs, usernames and password into a properties file.
    The properties file might contain:
    all.databases=database1,database2,database3
    database1.user=user1
    database1.password=dingbat
    database1.url=jdbc:oracle:thin:dohdah:base1
    database2.user=someone
    database2.password=toad
    database2.url=jdbc:oracle:thin:xyx:dsds
    Then use ResourceBundle.getBundle() to load the properties and you can just do
    Connection con = DriverManger.getConnection(bundle.getString(key + ".url"),bundle,getString(key + ".user"), bundle.getString(key + ".password");

  • My requirement is to update 3 valuesets daily based on data coming to my staging table. What is the API used for this and how to map any API to our staging table? I am totally new to oracle and apps. Please help. Thanks!

    My requirement is to update 3 valuesets daily based on data coming to my staging table. What is the API used for this and how to map any API to our staging table? I am totally new to oracle and apps. Please help. Thanks!

    Hi,
    You could use FND_FLEX_LOADER_APIS.UP_VALUE_SET_VALUE to upload them from staging table (I suppose you mean value set values...).
    You can find a sample scripts if you google around.
    What do you mean "how to map any API to our staging table" ?
    You should do at least the following mapping (which column(s) in the staging table will provide these information):
    - the 3 value sets name which you're going to update/upload (I suppose these are existing value sets or which have been already created)
    - the value set values and  description
    Try to start with something and if there is any issues the community could then help... but for the time being with the description of the problem you have provided, that's the best I can do...

  • What device type need to be used for HP Laserjet 1020 printer in ECC 6.0 ??

    Dear Experts,
    In out system we already configured on output device details as follows
    Output Device Name         : FEPRINTER01
    Device Type   : HPLJ4 - HP Laserjet 4 Series PCL -5
    Device Class : Standard Printer
    Host Spool Access Method :   G: Front end print with control technologe
    Host Printer : __default
    For one of end user computer is connected with HP Laserjet 1020 model type printer.
    When this user is giving print out on to device  FEPRINTER01
    The spoll request is reaching OS spooler , when i open OS spooler folder - i can see request.
    it waits for a while - the queue vanish , printer do some noise - but no print out comes from the printer.
    Please do let me know what type of device i have to use for this model in this situation
    Thanks in Advance
    Regards

    Hi SRINIVAS 
    I am using this configuration:
    Device Type: SAPWIN :Rel.4.x/SAPIpd 4.09+ ONLY!
    Device Class: Standard Printer
    Access Method: F: Printing on Front End Computer
    Host Printer: __DEFAULT
    Please reward points if helpful
    Regards
    Edited by: Eydar Del Angel on Feb 6, 2008 12:49 PM

  • Becouse of expire of credit card I updated billing information by providing data of new credit card but system just says "We're sorry, the billing information on file could not be used for this payment. Please update your information.". What exactly is wr

    Becouse of expire of credit card I updated billing information by providing data of new credit card but system just says "We're sorry, the billing information on file could not be used for this payment. Please update your information.". What exactly is wrong?

    Are you 100% sure that every detail of your information is the same in each place?
    Make sure that EVERY DETAIL is the same in every place you enter your information
    -right down to how you spell and punctuate the parts of your name and address
    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -Credit card https://helpx.adobe.com/utilities/credit-card.html

  • What cable to use for this?

    I am trying to hook up my xbox 360 to my Macbook pro, and I am unsure of what cable to use for this. Composite cables.

    Hi there Dsc, i tried to do so b4, but with limited success, now the problem is like been told you, MBP is not design to accept INPUT video signals, i got something called EYETV coast me about 120$, but the resolution that XBOX accepts is much higher than MBP screen can afford, i got this message when i tried to hook it up ( the dash board came up from the xbox ): YOU NEED TO ADJUST YOUR SCREEN TO A HIGHER ADJUSTMENT BEFORE YOU CAN PLAY GAMES ON THE CONSOL or so, but thats my experience any way, if you succeeded please let me know, by the way i asked the same Q b4, just search my questions and you will see the answers on my question. hope this helped.

  • What are the tables used for this Report

    hi all..
    i am a fresher for ABAP. i need the help.
    what r the tables used for this report.
    Reports provide pending order details according to Material wise and customer wise for particular month.
    thanks in advance
    RK.Ashokkumar.
    9994262112.

    hi
    good
    try with these tables,
    MARA
    KNA1
    thanks
    mrutyun^

  • What r the tables used for this report.

    hi all..
    i am a fresher for ABAP. i need the help.
    what r the tables used for this report.
    Reports provide pending order details according to Material wise and customer wise for particular month.
    thanks in advance
    RK.Ashokkumar.

    Hi Ashok,
    this is easy to do.
    Open Two SAP Screen with same user ID.
    Run SQL trace using ST05 transaction.Open ST05 transaction in One and make
    Trace on ,Run the report in another screen.
    Once report run is over.End the trace process and click on display trace in same ST05 transaction.There is a click button on ST05 Transaction screen to start trace
    process,End trace process and Display track process.
    The SQL trace will  give you all the table details which is used in that particular report.
    You have not mentioned about the report name so I have suggested this way.
    regards,nishant
    Please reward if this helps

  • I have Mac Pro 2007, which have no bluetooth hardware. What should I do to use Apple wireless keyboard and magic mouse??? Can 'third party's internal bluetooth card' be used for this purpose? Help please...

    I have Mac Pro 2007, which have no bluetooth hardware. What should I do to use Apple wireless keyboard and magic mouse??? Can 'third party's internal bluetooth card' be used for this purpose? Help me please...

    You can find the Apple Bluetooth card on eBay for as little ten dollars (says its for the 2008 model Mac Pro, not sure about the 2007).
    http://www.ebay.com/itm/Bluetooth-Board-iMac-and-Mac-Pro-922-8233-922-8233-/1208 49278570
    Here is a link to a full explanation of the card and how to install it. Part numbers may differ a bit as that is an old article and newer models have come out.
    http://www.xlr8yourmac.com/systems/Mac_Pro/Bluetooth_MacPro_install/Bluetooth_Ma cPro_install.html
    Just make sure that the part will work in your model Mac Pro. To that end, you may be better off avoiding eBay and going to a parts reseller. There are even third party cards that use the internal Apple bluetooth slot.
    http://fastmac.com/bluetooth.php
    In theory, using a USB or PCI card will work at login so long as it is recognized by Apples drivers. You say you need to launch an application to use your current USB Bluetooth dongle? If it is not controlled by the Bluetooth icon in the menu bar then it must be using a third party driver of some sort. Unfortunately, I don't know off hand which USB and PCI cards are supported.

Maybe you are looking for

  • DataIntegrator XI R2 couldn't get connection to SAP R/3

    Specification: -  Data Integrator XI R2, SAP R/3 4.6C Problem      : - I'm trying to connect data integrator R2 with SAP R/3 4.6c , and it doesn't work well unfortunately.   When I tried to connect DI with R3(QAS), it works well. but, when I tried to

  • IPhone 3G dropped on the floor on the first day

    it looks like the slot where you switch SIM card is a bit damaged too since I got another card stuck and it took me an hour too take out. Then I updated the phone and got it locked, and on ITunes it says that the SIM card inserted is not supported, s

  • Quick Office and the N8

    1- From the pre-release information about the N8, I was under the impression that Quick Office was a free program.  However, when I want to make a new document it requires a purchased registration.  I have registered the PDF app that comes with the t

  • What tools for locating rogue APs and adhoc clients ?

    Hi all. I was wondering how you locate your rogues. I have WCS with location detection; however, I still have to go out and hunt down the device. It can be difficult when there is a high density of laptops. Right now, I try to attach to unsecured dev

  • Text symbols

    Hi, Does someone know if it's possible in a function module to use text symbols declared in another program (report) ? Are Text symbols a part of a report / MF or different objects that can be used outside ? Thanks