Drop downs in LiveCycle Designer

I have two drop downs.  The first drop down has 5 items, the second has 20.  When the user selects a item in the first drop down I only want the second drop down to show 4 of the items.  How do I write a script for that?  Thank you!

I would like to know if it is an item in the first dropdown list corresponding to 4 items of the second.
If yes,you can use array.
1. In the first "exit" event
var alistName = new Array("A","B","C","D");
var alistValue = new Array("1","2","3","4");
var blistName = new Array("AA","BB","CC","DD");
var blistValue = new Array("11","22","33","44");
if(this.rawValue == "A")
for(var i=0;i<alistName.length;i++)
var name = alistName[i];
var value = alistValue[i];
DropDownList2.addItem(name,value);
if(this.rawValue == "B")
for(var j=0;j<blistName.length;j++)
var bname = blistName[j];
var bvalue = blistValue[j];
DropDownList2.addItem(bname,bvalue);
2. In the first "change" event
if(xfa.event.newText !=this.rawValue){ DropDownList2.rawValue = null; }

Similar Messages

  • Acrobat Reader is not properly displaying dynamic drop down when LiveCycle does

    I have a sample file that loads a drop down menu from an xml file. This form works fine in the preview pane of LiveCycle. I see the values properly populated. When I attempt to load the same file with Acrobat Reader the drop down menu shows up empty. I have saved the document as a Dynamic PDF. This happens with both Reader 8.0 and 7.0 on two different machines. Am I doing something wrong? Is this a known issue?

    How are you merging the data to the form before viewing in Reader? Using the Preview in Designer allows you to pass xml data when rendering the PDF but when you save out a PDF Form from Designer the data is not part of the form. And without Reader extending the form (or using Acrobat Pro) you have no way of pulling in the xml data so that the drop down can populate.

  • Cascading lists drop downs in SharePoint Designer (no server-side code) without postback

    I've created cascading drop downs populated from SharePoint lists, by following
    this post by Lars in SharePoint designer without using code, it works fine, my issue is that the secondary drop down only populates if the main drop down causes auto-post-back, is there any way to make the secondary drop down populate without causing
    post back and without using server-side code?
     

    Since you are using the ASP:DropDownList, you will need the post-back since it's a server-side control that doesn't use a callback. The following JavaScript library provides for a way to creating cascading dropdowns on the client-side,
    http://spservices.codeplex.com/wikipage?title=%24().SPServices.SPCascadeDropdowns
    Dimitri Ayrapetov (MCSE: SharePoint)

  • Help needed to create Drop down help through Design layer for attribute

    Hi All,
    Has anybody created a Dropdown help through Design layer for standard field, there we have check Box ............
    Please Help me to know this ASAP....
    Edited by: Pankaj Gupta on Feb 26, 2010 10:52 AM

    Hi,
    Here is the exampel Program, i am sending the code for a Paramter, If you want this for the Select-options, then you need to have the paramer name as PS_PARM-LOW and you need to write the smae logic again for PS_PARM-HIGH to get the List box for the select-option
    REPORT ZLIST.
    TYPE-POOLS: VRM.
    DATA: NAME  TYPE VRM_ID,
          LIST  TYPE VRM_VALUES,
          VALUE LIKE LINE OF LIST.
    PARAMETERS: PS_PARM(10) AS LISTBOX VISIBLE LENGTH 10.
    AT SELECTION-SCREEN OUTPUT.
    NAME = 'PS_PARM'.
    VALUE-KEY = '1'.
    VALUE-TEXT = 'LINE 1'.
    APPEND VALUE TO LIST. VALUE-KEY = '2'.
    VALUE-TEXT = 'LINE 2'.
    APPEND VALUE TO LIST.
    CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    START-OF-SELECTION.
    WRITE: / 'PARAMETER:', PS_PARM.

  • Drop down list problem in Reader 8.1

    I have a drop down list in my form with three values. Select one, yes, no.
    I can choose first option fine. let's say i choose Yes, it displays Yes in the drop down with the functionality behind it working too. Now if I change it to No, it executes the functionality behind it, but still displays Yes. I have to choose No second time for it to display. Same code works fine in reader 8.0. Adobe reader 8.1 is the one that is showing this behavior. Any inputs??
    Thanks!

    WPW07 wrote:
    > Is there a way to modify
    > my form so that the fields keep whatever values were
    made in the previous edit.
    Select the drop-down menu in Design view, and click the
    Dynamic button
    in the Property inspector. Click the lightning bolt icon
    alongside the
    Select value equal to field, and select the value from your
    recordset.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • LiveCycle Designer 8.0 Drop-down menu help - newbie

    I am new with LiveCycle and do not know much about coding and the like. I've search the forums and have not found quite what I need. (It might be because I don't know the correct terms to search - so I apologize in advance if there was a previous posting regarding this)
    I am creating a form for lab tests for referring physicians to fill out.
    for simplicity, I will just use the state, city example.
    >>>>>> QUESTION 1.
    I have dragged/dropped a drop-down menu icon onto the form, gone through the Palette>Object>Field>List Items to compile the list of states (in my real case, a list of lab tests)
    How can I get the second drop down menu to show the corresponding cities based on the "state" selected in the first drop down menu? So that when I choose "California" I have the option in the second drop-down menu to choose from "Los Angeles," "Orange County," "Long Beach," etc
    VERSUS
    if I select "Texas" the list will retrieve "Houston," "Sugarland," "Dallas," etc.
    I read about hardcoding and although I'm not quite sure what that means, I think that is what I will be doing as I will not be referencing outside of my form.
    Also, the items in these menus are long/descriptive in nature, is there a way to refer to the lists in the code without having to type everything out? In my form (instead of "state") I will have lab tests "Test_1" with CPT codes attached, that is the list includes items like:
    93880 - carotid duplex scan, bilateral
    93882 - carotid duplex scan, unilateral
    and in drop-down list 2 I have items like:
    454.0 - varicose vein with ulcer
    454.1 - varicose veins with inflammation
    it would be such a pain to type each out in the code, but if there are no other ways around it, that is fine too.
    >>>>>>> QUESTION 2.
    The referring physician will have the option to email this form to the vascular lab scheduler. To prevent an "accidental" changes, I would like the form to be a "live form" for people to fill out, but upon return, the form to be a static PDF file, that is, the person receiving the email does not have the option to make any changes (purposeful or accidental), is there a way to do this?
    THANK YOU SO MUCH IN ADVANCE!
    again, I apologize for asking for help for what I'm sure is an easy fix. I don't know very much about the coding language, if it is not too much to ask - step-by-step would be helpful.
    I'm using Adobe LiveCycle Designer 8.0.
    Thank you.
    -Viv

    Hi Geo,
    Thank you for the link.
    Sorry, this is very difficult for me to explain not knowing the scripting language, but I will try my best not to confuse you too much.
    I was able to get Thom's example to work, and based on that, I was able to get this hypothetical situation to work:
    < script contentType="application/x-javascript" name="Example2" >var oTestOrdered = {
    12345678912345678: [ ["-"], ["AAA (Endologix)"], ["AAA (GORE)"], ["Aortic Arch"],["other"]],
    56565: [ ["-"], ["Varicose Vein"], ["Venous Insufficiency"], ["Spider Veins"],["Symptomatic Var Veins"]],
    46546: [ ["-"], ["TA biopsy"], ["CEA"], ["amputation"], ["debridement"]]
    function SetTestEntries()
    ICD9_2.clearItems();
    ICD9_2.rawValue = null;
    var aTests = oTestOrdered[xfa.event.change];
    if(aTests && aTests.length)
    for(var i=0;i<aTests.length;i++)
    ICD9_2.addItem(aTests[i][0].toString());
    </ script >
    HOWEVER, I cannot get something like this one to work (the only difference is that I added a "9" to the first option) it seems as though I cannot insert anything beyond 17 consecutive characters (no dashes and underscores are allowed either):
    < script contentType="application/x-javascript" name="Example2" >var oTestOrdered = {
    123456789123456789: [ ["-"], ["AAA (Endologix)"], ["AAA (GORE)"], ["Aortic Arch"],["other"]],
    56565: [ ["-"], ["Varicose Vein"], ["Venous Insufficiency"], ["Spider Veins"],["Symptomatic Var Veins"]],
    46546: [ ["-"], ["TA biopsy"], ["CEA"], ["amputation"], ["debridement"]]
    function SetTestEntries()
    ICD9_2.clearItems();
    ICD9_2.rawValue = null;
    var aTests = oTestOrdered[xfa.event.change];
    if(aTests && aTests.length)
    for(var i=0;i<aTests.length;i++)
    ICD9_2.addItem(aTests[i][0].toString());
    </ script >
    The form I am creating is a Vascular Lab request form, where the test ordered (drop down box 1)has a CPT code to reference the test being ordered (i.e., 93880 - Carotid Duplex Scan, bilateral) and the test has a set of diagnoses (ICD-9 codes) in drop down box 2, associated with that test (i.e., 459.81 - Venous Insufficiency)
    I have found that I do not have a problem with the "diagnoses" but I cannot add the descriptive test select in the first place. That is, the code works fine if I leave it as "93880" but not "93880 - description." I have also run into the problem that I cannot use dashes or underscores, nor can I type more than 17 characters otherwise the code no longer works.
    Is there something I need to add or remove in order to make this work?
    Thank you in advance for your help and patience!

  • Adobe LiveCycle Designer working with 2 drop down list, one response triggers the other

    I am fairly new to Adobe LiveCycle Designer ES 8.2, but I would like to have a drop down list of managers and another drop down list of employees.
    I would like this set up in such a way where the manager can click on their own name in the manager list and have a drop down list appear which is only populated with their directly reporting employees.  They can then click on the individual employee they are going to report on.
    Then there will be several questions pertaining to the individual direct report, etc. (This part I can do)
    Is this possible?
    If so, please provide detailed instructions for me to try.
    Thank you in advance.

    Put this in the change event of your Manager drop down:
    var myObj={"Manager 1":"Employee A,Employee B,Employee C",
                        "Manager 2":"Employee D,Employee E",
                        "Manager 3":"Employee F,Employee G, Employee H"};
    DropDownList2.setItems(myObj[this.boundItem(xfa.event.newText)]);
    This is assuming the list of items in that dropdown is "Manager 1", "Manager 2", "Manager 3".
    And DropDownList2 is the name of your Employee drop down.
    Kyle

  • LiveCycle Designer 8.0 - Linked Drop Down Lists

    Hi,
    Im new to Adobe LiveCycle and trying to link two drop down lists. I want the second drop down list to have certain options visible, depending upon the choice selected in the first list.
    I have spent a bit of time with JavaScript and trying to link them, however am struggling.
    Can anyone advise?
    TIA, Mike.

    Hi Mike -
    You can accomplish what you are describing with an array.
    An example of what you are asking about can be found in the Live Cycle Interactive Purchase Order sample found at [installdir]\EN\Samples\Purchase Order\Interactive (at least that's where I found mine, I'm using Live Cycle Designer version 7).
    There are two drop-down lists in this Purchase Order sample: Country and State/Province. Only two countries are listed for the purpose of the example however you can customize the script by adding other countries.
    Look for the script object named 'countryScript'. It contains the logic invoked by the drop-down lists when the form is created and based on the user interaction.

  • Adobe LiveCycle Designer 8.1 Drop-Down List Problem

    I have an array of data.  I'm populating one drop-down list (Genus) with data and then trying to populate a second drop-down list (Species) based on the selection from the first drop-down list (Genus).<br /><br /><?xml version="1.0" encoding="UTF-8"?><br /><?xfa generator="AdobeLiveCycleDesigner_V8.0" APIVersion="2.5.6290.0"?><br /><xdp:xdp xmlns:xdp="http://ns.adobe.com/xdp/" timeStamp="2007-08-20T19:50:53Z" uuid="6f886dfc-03cb-474d-84ad-70c94bed1788"><br /><template xmlns="http://www.xfa.org/schema/xfa-template/2.5/"><br />   <subform allowMacro="1" layout="tb" locale="en_US" name="form1"><br />      <pageSet><br />         <pageArea id="Page1" name="Page1"><br />            <contentArea h="756pt" w="576pt" x="0.25in" y="0.25in"/><br />            <medium long="792pt" short="612pt" stock="default"/><br />            <?templateDesigner expand 1?></pageArea><br />         <?templateDesigner expand 1?></pageSet><br />      <subform h="756pt" w="576pt"><br />         <field h="8.6202mm" name="PrintButton1" relevant="-print" w="41.8956mm" x="158.7501mm" y="34.7904mm"><br />            <?templateDesigner isPrintObject true?><br />            <ui><br />               <button/><br />            </ui><br />            <font typeface="Myriad Pro"/><br />            <caption><br />               <value><br />                  <text>Print Form</text><br />               </value><br />               <para hAlign="center" vAlign="middle"/><br />               <font typeface="Myriad Pro"/><br />            </caption><br />            <border hand="right"><br />               <?templateDesigner StyleID apbx2?><br />               <edge stroke="raised"/><br />               <fill><br />                  <color value="212,208,200"/><br />               </fill><br />            </border><br />            <bind match="none"/><br />            <event activity="click"><br />               <script contentType="application/x-javascript">xfa.host.print(1, "0", (xfa.host.numPages -1).toString(), 0, 1, 0, 0, 0);</script><br />            </event><br />         </field><br />         <draw h="8.6202mm" name="StaticText1" w="128.9085mm" x="3.4391mm" y="0.3098mm"><br />            <ui><br />               <textEdit><br />               </textEdit><br />            </ui><br />            <value><br />               <text>CRP Request/Report Form for qPCR Analysis:</text><br />            </value><br />            <font size="14pt" typeface="Myriad Pro" weight="bold"/><br />            <margin bottomInset="0.5mm" leftInset="0.5mm" rightInset="0.5mm" topInset="0.5mm"/><br />            <traversal><br />               <traverse ref="DateTimeField1[0]"/><br />            </traversal><br />            <?renderCache.bounds 362576 21601 0 0 1417 1417 0 0?><br />            <?renderCache.textRun 42 CRP Request/Report Form for qPCR Analysis: 0 1417 11917 0 0 0 "Myriad Pro" 1 0 14000 ISO-8859-1?></draw><br />         <field h="7.7252mm" name="Req" w="77.6041mm" x="3.4391mm" y="8.9305mm"><br />            <ui><br />               <textEdit><br />                  <border><br />                     <?templateDesigner StyleID aped2?><br />                  </border><br />                  <margin/><br />               </textEdit><br />            </ui><br />            <font typeface="Myriad Pro"/><br />            <margin bottomInset="1mm" leftInset="1mm" rightInset="1mm" topInset="1mm"/><br />            <para vAlign="middle"/><br />            <caption reserve="26.19mm"><br />               <font baselineShift="0pt" typeface="Myriad Pro"/><br />               <para marginLeft="0pt" marginRight="0pt" spaceAbove="0pt" spaceBelow="0pt" textIndent="0pt" vAlign="middle"/><br />               <value><br />                  <text>Requestor</text><br />               </value><br />            </caption><br />            <border><br />               <edge presence="hidden"/><br />               <corner presence="hidden" thickness="0.1778mm"/><br />            </border><br />            <traversal><br />               <traverse ref="Lot[0]"/><br />            </traversal><br />         </field><br />         <draw h="8.1758mm" name="StaticText2" w="18.6252mm" x="3.4391mm" y="17.5504mm"><br />            <ui><br />               <textEdit><br />               </textEdit><br />            </ui><br />            <va

    var constColNum = 10;
    var InfoDB = new Array
    new Array( "Bacillus","Brucella","Burkholderia","Coxiella","Clostridium", "Erwinia","Francisella","Yersinia","Rickettsia","Other"),
    new Array( "anthracis","cereus","thuringensis","subtilis","globigii","lichenformis","other"),
    new Array( "melitensis","suis","ovis","canis","abortus","neotomae"),
    new Array( "mallei","pseudomallei"),
    new Array( "burnetti","other"),
    new Array( "botulinum"),
    new Array( "herbicola"),
    new Array( "tularensis","holartica"),
    new Array( "pestis","pseudo TB","other"),
    new Array( "prowazekii"),
    new Array( "other"),
    new Array( "DHP61.183","cereus grp","sodA","tarA","omp25","IS407A","IS1111A","Cbot","aroQ","tul4"),
    new Array( "3A","Rprow4","capB,pagA,tarA","cereus grp, tarA","cereus grp, tarA, F1cap, pesticin, YopD","designed assay"),
    new Array( "0.1754","0.1718","0.1742","0.2164","0.2170","0.2778","0.1565","0.1255","0.4762","0.4808" ),
    new Array( "0.4831","0.8197","0.1976","0.1923","you figure it out")
    function LoadDropMenu(obj, rowNum)
    for(i = 0; i < constColNum; i++)
    obj.addItem(InfoDB [rowNum][i], i + "");
    function LoadDropMenu2(objDropDown, nIndex)
    var arrayInfoDB = InfoDB[nIndex];
    objDropDown.rawValue = "";
    objDropDown.clearItems();
    for (var i = 0; i < constColNum; i++)
    objDropDown.addItem(arrayInfoDB[i], i + "");
    //objDropDown.addItem(arrayInfoDB[i]);

  • How to create a drop down box values on design time?

    Hello,
    I have a drop down box that I would like to edit on design time to have the valus 1 to 10.
    Is it possible to doo it on design it or do I have to create a loop in the code to do that?

    See go to LocalDictionary->Data Type-> SimpleType Right Click and create a Simple Type giving some Package Name
    Once u have created
    There u will see Enumeration Tab and give Key Value Pairs by pressing New Button
    Now Create a Context Attr and at Type property select that three dots
    Then go to Dictionary Simple Type and select the Package u have given
    then select the Simple type u have created
    Then assign the context Attr to the UI Element
    Message was edited by: krish kanth

  • Dynamic filter in Design studio using drop-down when data source is Universe

    Hi community,
    Is there anyway to create Cascading filter in Design studio when data source is Universe using drop-down component (Dimension filters cannot be used in my requirement).
    My requirement is,
    I have 2 drop-downs:
    drop-down 1 : shows the regions in a country.
    drop-down 2 : should display states based the region selected in the first drop-down (drop-down 1). Also drop-down 2 should pass selected state as input to the data-source
    Thanks in advance
    Vivek VJ

    Hi Vivek,
    Please check out this post: How to Create Multiple Dropdown boxes (Cascading Filters) when using Universe in the backend.
    Regards,
    Mustafa.

  • I wish to reinstall Adobe Creative Suite 6 Design Standard on a replacement PC using the original box CD and Serial Number. Website says SN is valid but cannot find corresponding Adobe product.  My product is not on the drop down list offered.  hat do I d

    I wish to reinstall Adobe Creative Suite 6 Design Standard on a replacement PC using the original box CD and Serial Number. Website says SN is valid but cannot find corresponding Adobe product.  My product is not on the drop down list offered.  What do I do next?

    Contact support by web chat.
    Mylenium

  • Muse will not open any drop down menus while in design mode.Screen just flickers.

    I downloaded the new update and while in design mode in muse in one of my pages I cannot access any drop down menus like for example choosing fonts hyperlinks ect.I cannot do any of it I uninstalled and re-installed 3 times I don't know it this is a graphics issue or not how can fix this?

    Are you using Windows 8 or 8.1 ?
    The Muse 2014 release is incompatible with 125% Display scaling via the Windows Control Panel in Windows 8 and 8.1. The only workaround is to switch to 100% or 150% Display scaling.
    Thanks,
    Sanjit

  • Designing Searchable drop downs in LC form designing

    Hi,
    I want to design an eform which has a searchable drop down box. That
    is as someone types in the required contents into the dropdown the
    displayed contents of the drop down should shrink.It should have the
    search feature  in google search(as we type in the result set keeps showing and we can choose from there). If someone knows how to
    incorporate this searchable feature into the drop downs while
    designing the form, please help. An example to show the way in which
    it can be implemented would be really helpful.
    Thanks,
    Sayoni.

    Hi Sayoni,
    This is just part of the xml file I uploaded but should give you enough to get the sample working.
    Hope it helps
    Bruce
    <?xml version="1.0" encoding="UTF-8" ?>
    <countries>
    <country id="AF" name="AFGHANISTAN" />
    <country id="AX" name="ÅLAND ISLANDS" />
    <country id="AL" name="ALBANIA" />
    <country id="DZ" name="ALGERIA" />
    <country id="AS" name="AMERICAN SAMOA" />
    <country id="AD" name="ANDORRA" />
    <country id="AO" name="ANGOLA" />
    <country id="AI" name="ANGUILLA" />
    <country id="AQ" name="ANTARCTICA" />
    <country id="AG" name="ANTIGUA AND BARBUDA" />
    <country id="AR" name="ARGENTINA" />
    <country id="AM" name="ARMENIA" />
    <country id="AW" name="ARUBA" />
    <country id="AU" name="AUSTRALIA" />
    <country id="AT" name="AUSTRIA" />
    <country id="AZ" name="AZERBAIJAN" />
    <country id="BS" name="BAHAMAS" />
    <country id="BH" name="BAHRAIN" />
    <country id="BD" name="BANGLADESH" />
    <country id="BB" name="BARBADOS" />
    <country id="BY" name="BELARUS" />
    <country id="BE" name="BELGIUM" />
    <country id="BZ" name="BELIZE" />
    <country id="BJ" name="BENIN" />
    <country id="BM" name="BERMUDA" />
    <country id="BT" name="BHUTAN" />
    <country id="BO" name="BOLIVIA, PLURINATIONAL STATE OF" />
    <country id="BA" name="BOSNIA AND HERZEGOVINA" />
    <country id="BW" name="BOTSWANA" />
    <country id="BV" name="BOUVET ISLAND" />
    <country id="BR" name="BRAZIL" />
    <country id="IO" name="BRITISH INDIAN OCEAN TERRITORY" />
    <country id="BN" name="BRUNEI DARUSSALAM" />
    <country id="BG" name="BULGARIA" />
    <country id="BF" name="BURKINA FASO" />
    <country id="BI" name="BURUNDI" />
    <country id="KH" name="CAMBODIA" />
    <country id="CM" name="CAMEROON" />
    <country id="CA" name="CANADA" />
    <country id="CV" name="CAPE VERDE" />
    <country id="KY" name="CAYMAN ISLANDS" />
    <country id="CF" name="CENTRAL AFRICAN REPUBLIC" />
    <country id="TD" name="CHAD" />
    <country id="CL" name="CHILE" />
    <country id="CN" name="CHINA" />
    <country id="CX" name="CHRISTMAS ISLAND" />
    <country id="CC" name="COCOS (KEELING) ISLANDS" />
    <country id="CO" name="COLOMBIA" />
    <country id="KM" name="COMOROS" />
    <country id="CG" name="CONGO" />
    <country id="CD" name="CONGO, THE DEMOCRATIC REPUBLIC OF THE" />
    <country id="CK" name="COOK ISLANDS" />
    <country id="CR" name="COSTA RICA" />
    <country id="CI" name="CÔTE D'IVOIRE" />
    <country id="HR" name="CROATIA" />
    <country id="CU" name="CUBA" />
    <country id="CY" name="CYPRUS" />
    <country id="CZ" name="CZECH REPUBLIC" />
    <country id="DK" name="DENMARK" />
    <country id="DJ" name="DJIBOUTI" />
    <country id="DM" name="DOMINICA" />
    <country id="DO" name="DOMINICAN REPUBLIC" />
    </countries>

  • Database Design - Drop Down Menus

    Hello alll,
    I'm designing the database of Tire Store. We need to manage the Items and the Price List.
    The tire has many specifications, ex: Category, Aspect Ratio, Origin, Pattern, Ply, etc
    Each one of these specifications has a list of values (Drop Down Menus).
    The Item table is as follows; ITEM( Category_ID, Aspect Ratio_ID, Origin_ID, Pattern_ID, Ply_ID)
    Which solution is better:
    - I create one table for each specification that takes the value as a primary key directly cuz the values are unique for every spec.
    so will have ITEM('LVR', 65, 'JP', 'AL2', 12);
    - I create one table that contains all drop down values together, ex:
    SPECS(ID, NAME), ex: SPEC(1, 'Category'); SPEC(2, 'Aspect Ratio); etc.
    DDMS(ID, SPEC_ID, SPEC_VALUE), ex: DDMS(1, 1, 'LVR'); DDMS(2, 1, 'MLS'); DDMS(3, 2, 'MLS'); etc.
    ITEM( Category_ID, Aspect Ratio_ID, Origin_ID, Pattern_ID, Ply_ID) becomes
    ITEM(DDM_ID, DDM_ID, DDM_ID, etc)
    I think the first solution is more convenient, less joins and the ID is the same as value, but i need to create many tables for that, I have 10 specs means 10 tables.
    Ur opinion please

    Have you done any research on database normalization? You may want to read about it.
    In my opinion you would have different entities/tables for category, aspect ratio, origin, pattern and ply. These would all be related via foreign key to a tire entity/table. That way when you want to provide a drop down menu for aspect ratio, you don't have to search through the entire combined entity/table that you were suggesting. You'll only have to query the aspect ratio entity.
    There is nothing wrong with doing joins that are necessary. You could always encapsulate frequently run queries in a view.
    Hope this helps!

Maybe you are looking for

  • Why won't the app store download apps to my i phone

    I just got an IPhone 4S and the app store won't let me download any apps. It keeps giving me an "Sorry your request can not be processed at this time." I keep signing in to my Apple ID account and still won't work. Need help!

  • How do I transfer Labview from one laptop to another?

    I am using Labview2012 on my laptop to run an HP4192A LF Impedance Analyzer.  I would like to switch this capability to a different laptop. How do I do this?  Thanks!

  • How can we captured Excise Duty Payable at the time of billing

    Hi, i have created billing at that time i did not take excise duty payable and i have made the document and my question is and how can we captured excise payable with out reverse or manual JV,and i heard that we can do through excise table can any bo

  • HT4759 apple tv photo stream

    please help with iphone, tried to download os 6 and froze up iphone while trying to fix photo stream on apple tv. iphone showing usb plug qnd itunes symble. 

  • Communication error in VC apps with SP21 of EP 7.0

    We are in the process of applying SP21 to our EP 7.0 SP16 landscape and have run into an issue with Visual Composer.  When we run a VC app, we now receive the following popup: Communication Error A communication error has occurred.  Could not retriev