How to create a required Selection of 1 field out of a group of field

Hello,
I am hoping this is just a very simple problem that one of you can help me with. I have included a screenshot of what I am working with so you can better see my problem.
This is an order form for my company and we are looking into the possibility of switching over to an online ordering system. How do I make a required field in a group of input fields. Under Standard, there is 9 different options and I need at least one of them to be a required field but I can not figure out how to do that without making every option a required field which does not make sense. Let me know if you have any questions or need some clarification. Thank you for your help.

-- Cushion with Standard
Then underneeth they go by size 12" 13" 14" etc.
I included the labels on the left if need be.

Similar Messages

  • How to create a multi select drop down filed in crm 7.0

    Hi All,
            I need to create a multi select drop down field in crm web ui where one field have 7 value and we can select more than one value at a time.I have no idea how to create a multi select drop down field in web ui.
    Please help.....

    Hi vishwas
    Please follow the thread where a similar requirement was posted.
    Re: Drop-down list box / pick-list with multiple selections at a time
    Here the suggestions say that a workaround could be to associate a table view to the field.
    Regards,
    Nisha

  • How to create a variant selection screen

    Hi experts,
    Can you tell me " How to create a variant selection screen ".
    Please it's urgent.........
    Thanks
    Basu

    Hi ,
    Goto your selection screen
    Make entries in the fileds od the selection screen
    press save button, it will ask you for the mane of the Variant
    Give the name of  the Variant and save it
    Variant is now created for the selection screen.
    Reward if useful.
    Regards,
    Shilpi

  • How to create a new selection screen IN LOGICAL DATABASE PNPCE

    how to create a new selection screen LDBS PNPCE

    Hello Ankit,
    Do you want to create a new selection screen in LDB PNPCE, or do you want to create a new selection screen in one of your reports using LDB PNPCE?
    For later (which is more common), you can use HR Report Category.
    Hope this helps.
    Best Regards,
    Biraju Rajyaguru

  • MD04 - How to create a requirement in MD04 for a scheduling agreement

    Hi,
    Pls advice How to create a requirement in MD04 for a scheduling agreement. pls mention the steps and t codes.
    thanks in advance.

    Hi Prajit,
    Sales people will create sales scheduling greements through VA31 T-Code (normally for finished products).In that they define forecast schedules as well as JIT schedules.After creation, these will be appeared in MD04 screen as requirement for that finish material.
    In MRP run,system will create procurement elements (planned orders for example) for these requirements.
    Regards,
    Raja.

  • How to create a new selection screen LDBS PNPCE

    how to create a new selection screen LDBS PNPCE

    Hello Ankit,
    Do you want to create a new selection screen in LDB PNPCE, or do you want to create a new selection screen in one of your reports using LDB PNPCE?
    For later (which is more common), you can use HR Report Category.
    Hope this helps.
    Best Regards,
    Biraju Rajyaguru

  • How to create variant for selection screen which is in subscreen

    Hi,
    How to create variant for selection screen which is in subscreen in a module pool program?
    it is very urgent.
    Thanks in advance.

    Hi,
    You can create the 'Parameter Transaction' so that whenever you run the particular transaction it will run with the initial value given when the Tcode was created and hence you can skip the initial screen of the module pool program.
    To create Parameter transaction from SE93 you have to choose the last option i.e Parameter Transaction.
    Regards
    Sudheer

  • How to create OS Requirements and Primary Devices Requirements

    C# code to create OS Requirements and Primary Devices Requirements

    Hi,
    I'm not quite sure about this issue. Could you please provide more details?
    Here are some documents for your reference.
    System Center 2012 R2 Configuration Manager SDK
    http://msdn.microsoft.com/en-us/LIBRARY/hh948960.aspx
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • How to create new playlist. File option greyed out

    The create playlist option is greyed out in the File menu. How do I create I new playlist? What is wrong with the new version?

    Hi;
    How to create new alertlog file. Does it require the DB bounce?Oracle will automatically create a new alert log file whenever the old one is deleted and you dont need to bounce db
    For details see:
    http://orafaq.com/wiki/Alert.log
    Regard
    Helios

  • XML Schema Collection (SQL Server 2012): How to create an XML Schema Collection that can be used to Validate a field name (column title) of an existing dbo Table of a Database in SSMS2012?

    Hi all,
    I used the following code to create a new Database (ScottChangDB) and a new Table (marvel) in my SQL Server 2012 Management Studio (SSMS2012) successfully:
    -- ScottChangDB.sql saved in C://Documents/SQL Server XQuery_MacLochlainns Weblog_code
    -- 14 April 2015 09:15 AM
    USE master
    IF EXISTS
    (SELECT 1
    FROM sys.databases
    WHERE name = 'ScottChangDB')
    DROP DATABASE ScottChangDB
    GO
    CREATE DATABASE ScottChangDB
    GO
    USE ScottChangDB
    CREATE TABLE [dbo].[marvel] (
    [avenger_name] [char] (30) NULL, [ID] INT NULL)
    INSERT INTO marvel
    (avenger_name,ID)
    VALUES
    ('Hulk', 1),
    ('Iron Man', 2),
    ('Black Widow', 3),
    ('Thor', 4),
    ('Captain America', 5),
    ('Hawkeye', 6),
    ('Winter Soldier', 7),
    ('Iron Patriot', 8);
    SELECT avenger_name FROM marvel ORDER BY ID For XML PATH('')
    DECLARE @x XML
    SELECT @x=(SELECT avenger_name FROM marvel ORDER BY ID FOR XML PATH('Marvel'))--,ROOT('root'))
    SELECT
    person.value('Marvel[4]', 'varchar(100)') AS NAME
    FROM @x.nodes('.') AS Tbl(person)
    ORDER BY NAME DESC
    --Or if you want the completed element
    SELECT @x.query('/Marvel[4]/avenger_name')
    DROP TABLE [marvel]
    Now I am trying to create my first XML Schema Collection to do the Validation on the Field Name (Column Title) of the "marvel" Table. I have studied Chapter 4 XML SCHEMA COLLECTIONS of the book "Pro SQL Server 2008 XML" written by
    Michael Coles (published by Apress) and some beginning pages of XQuery Language Reference, SQL Server 2012 Books ONline (published by Microsoft). I mimicked  Coles' Listing 04-05 and I wanted to execute the following first-drafted sql in
    my SSMS2012:
    -- Reference [Scott Chang modified Listing04-05.sql of Pro SQL Server 2008 XML by Michael Coles (Apress)]
    -- [shcColes04-05.sql saved in C:\\Documents\XML_SQL_Server2008_code_Coles_Apress]
    -- [executed: 2 April 2015 15:04 PM]
    -- shcXMLschemaTableValidate1.sql in ScottChangDB of SQL Server 2012 Management Studio (SSMS2012)
    -- saved in C:\Documents\XQuery-SQLServer2012
    tried to run: 15 April 2015 ??? AM
    USE ScottChangDB;
    GO
    CREATE XML SCHEMA COLLECTION dbo. ComplexTestSchemaCollection_all
    AS
    N'<?xml version="1.0"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:element name="marvel">
    <xsd:complexType>
    <xsd:all>
    <xsd:element name="avenger_name" />
    <xsd:element name="ID" />
    </xsd:all>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>';
    GO
    DECLARE @x XML (dbo. ComplexTestSchemaCollection_all);
    SET @x = N'<?xml version="1.0"?>
    <marvel>
    <avenger_name>Thor</name>
    <ID>4</ID>
    </marvel>';
    SELECT @x;
    GO
    DROP XML SCHEMA COLLECTION dbo.ComplexTestSchemaCollection_all;
    GO
    I feel that drafted sql is very shaky and it needs the SQL Server XML experts to modify to make it work for me. Please kindly help, exam the coding of my shcXMLTableValidate1.sql and modify it to work.
    Thanks in advance,
    Scott Chang

    Hi Scott,
    2) Yes, FOR XML PATH clause converts relational data to XML format with a specific structure for the "marvel" Table. Regarding validate all the avenger_names, please see below
    sample.
    DECLARE @x XML
    SELECT @x=(SELECT ID ,avenger_name FROM marvel FOR XML PATH('Marvel'))
    SELECT @x
    SELECT
    n.value('avenger_name[1]','VARCHAR(99)') avenger_name,
    n.value('ID[1]','INT') ID
    FROM @x.nodes('//Marvel') Tab(n)
    WHERE n.value('ID[1]','INT') = 1 -- specify the ID here
    --FOR XML PATH('Marvel')  --uncommented this line if you want the result as element type
    3)i.check the xml schema content
    --find xml schema collection
    SELECT ss.name,xsc.name collection_name FROM sys.xml_schema_collections xsc JOIN sys.schemas ss ON xsc.schema_id= ss.schema_id
    select * from sys.schemas
    --check the schema content,use the name,collection_name from the above query
    SELECT xml_schema_namespace(N'name',N'collection_name')
    3)ii. View can be viewed as virtual table. Use a view to list the XML schema content.
    CREATE VIEW XSDContentView
    AS
    SELECT ss.name,xsc.name collection_name,cat.content
    FROM sys.xml_schema_collections xsc JOIN sys.schemas ss ON xsc.schema_id= ss.schema_id
    CROSS APPLY(
    SELECT xml_schema_namespace(ss.name,xsc.name) AS content
    ) AS cat
    WHERE xsc.name<>'sys'
    GO
    SELECT * FROM XSDContentView
    By the way, it would be appreciated if you can spread your questions into posts. For any question, feel free to let me know.
    Eric Zhang
    TechNet Community Support

  • How do create a multi select that is one directional in a jsp page

    i am trying to create a one directional multi select in jsp that is when select the option from the multi- select the first time is not appear again that is for instance if i have a status option of
    NEW
    Fix
    Closed
    they should come from the database from and if they have been selected once and save in another table they should not appear again... that is is you selec Fix you cannot go back to New... how can I accomplish that in jsp
    my default is coming from on table and the rest from another reference table with for all the drop downs.

    Thanks.  I sorted it out after a while.  The problem that I was having is that Pages seemed to treat the copied and pasted webpage content almost like an image: indivisible.  I had to go back to the page and copy a few pages at a time.  Then I could paste the content in one page after another.

  • How to create a part selection and a part list ALV in the same screen

    Hello,
    I will want to realize in a screen a part lists ALV and a part selection for the list.
    I have created a container with  a splitter , but I do not know how to carry out the selection part.
    Thank you for your assistance.
    Regards

    Hello
    If you want to have the selections and the ALV list displayed on the same dynrpo then create a dynpro that contains in the upper part the selection/input fields and in the lower part place a custom container for the ALV grid.
    If you want to be more flexible then you could use a subscreen for the selection/input fields.
    There is no point in using a splitter container because we cannot place normal input fields into a container but only controls.
    Regards
      Uwe

  • How to create dynamic row selection

    currently doing an application
    which require something like the search engine page [ 1|2|3|4|5]
    how do I get and display the row num in sql
    to get from say starting from 1 to 11 and the next one 12 to 22?
    quick eg:
    select * from country where rownum between
    x and xx
    where x is start of row and
    xx is end of row
    anyone has any idea??
    null

    Why use PL/SQL, when a single SQL statement is all that is needed to generate the XML?
    h3. Maximize SQL. Minimize PL/SQL.
    SQL> select
      2          xmlRoot(
      3                  xmlElement( "RowSet",
      4                          xmlAgg(
      5                                  xmlElement( "case",
      6                                          xmlAttributes( rownum as "repeating_index" ),
      7                                          xmlForest(
      8                                                  object_name,
      9                                                  object_type
    10                                          )
    11                                  )
    12                          )
    13                  ),
    14                  VERSION '1.1',
    15                  STANDALONE YES
    16          )                               as XML
    17  from       user_objects
    18  where      rownum < 4
    19  /
    XML
    <?xml version="1.1" standalone="yes"?>
    <RowSet>
      <case repeating_index="1">
        <OBJECT_NAME>INSERTEMP</OBJECT_NAME>
        <OBJECT_TYPE>PROCEDURE</OBJECT_TYPE>
      </case>
      <case repeating_index="2">
        <OBJECT_NAME>EMMP</OBJECT_NAME>
        <OBJECT_TYPE>TABLE</OBJECT_TYPE>
      </case>
      <case repeating_index="3">
        <OBJECT_NAME>FOO</OBJECT_NAME>
        <OBJECT_TYPE>TABLE PARTITION</OBJECT_TYPE>
      </case>
    </RowSet>
    SQL>     

  • How to create button in selection screen

    hi
    experts can u help me plzzzzzzzzzzz
    for this

    Hi,
    You can create Push Buttons in the Slection Screen by assigning a User commnand to it.
    Below is the stynax
    SELECTION-SCREEN BEGIN OF SCREEN 1000.
      SELECTION-SCREEN PUSHBUTTON 15(25) PUBU
                       USER-COMMAND CODE1.
      SELECT-OPTIONS SEL2 FOR SPFLI_WA-CONNID.
      PARAMETERS     PAR2 TYPE I.
    SELECTION-SCREEN END OF SCREEN 1000.
    then you need to write the code for the User command ( here CODE1) at the Selection screen event.
    You can also check the Program demo_sel_screen_pushbutton in any Sap Server. this is a demo program.
    Let me know incase you need any further info,
    Thanks and Regards
    Message was edited by:
            Pallavi S

  • How to create a user selected power supply turn on sequece

    I'm trying to come up with code for a user to select the turn on sequence of a HP6626A supply, by entering the numbers 1, 2, 3 & 4 in the approriate channel to be turned on.  Does anyone have such code or any ideas on how to write it?  Thanks in advance.
    Nando

    I would suggest you start by downloading the instrument driver.

Maybe you are looking for

  • Launch Services event handler

    Hi All, I'm currently trying to develop an application that uses a custom URL very similar to iTunes and itms URL. I've read the documentation on Launch Services and edited by Info.plist as described in the documentation. All seem to work to an exten

  • Refreshing Webservices in Search (caching problem?)

    Hi, I've developed some EJBs and deployed them to the WAS. I then created a WSIL Destination in NWA. In Visual Composer I see the methods in my Search Pane no prolem. I have since added 2 new methods to my service, deployed them, and tested them in W

  • Web gallery output and flash

    is flash the only output for web galleries?

  • Is anyone still having the AME crash issue?

    I've been working very efficiently until the last day where Media Encoder just stopped finishing the job.  It will get about 50% of the way through a simple .mov to mp4 export and then freeze.  I am using a new Imac with an I7 and 20+ gigs of RAM. I

  • T40 2373-8CU battery light stays on when unit unplugged and shut down

    i have a T40 that the battery light stays on with the unit shut down and unplugged.  It would appear that the battery is always discharging with this issue.