Creating drop down menus that change dependant upon previous menu

I need to create a drop down menu and then have the next drop down change its content based on the selection in the previous menu
Would anybody have any code that I could play around with that would help me achieve this?
Thanks!!
Mark

Hi Mark,
This should get you close:
Create a .cfc call it product, as in save as product.cfc
You'll need to change the datasource name and the FROM clause below on both queries.
<cfcomponent output="false">
    <cffunction name="getProduct" access="remote" returnType="query">
        <cfset var data="" />
          <cfquery datasource="yourdb" name="data">
            SELECT product_uid,product_title
            FROM yourtable
        </cfquery>
        <cfreturn data>
    </cffunction>
    <cffunction name="getSubProduct" access="remote" returnType="query">
        <cfargument name="product_uid" type="numeric" required="true">
        <cfset var data="" />
        <cfquery datasource="yourdb" name="data">
            SELECT sub_uid,sub_title
            FROM yourtable
            WHERE sub_product_uid = #ARGUMENTS.product_uid#
        </cfquery>
        <cfreturn data>
    </cffunction>
</cfcomponent>
Imbed this in your your cfm page:
<cfselect
    name="Product"
    bind="cfc:product.getProduct()"
    style="width:387px;"
    size="1"
    multiple="No"
    required="No"
    display="product_title"
    value="product_uid"
    bindonLoad="True">
</cfselect>
<cfselect
    name="Sub Product"
    bind="cfc:product.getSubProduct({product_uid})"
    style="width:387px;"
    size="1"
    multiple="No"
    required="No"
    display="sub_title"
    value="sub_product_uid">
</cfselect>

Similar Messages

  • What's the best way of creating drop down menus on CS3?

    Hi people,
    I'm using CS3 now. I used to build drop down menus in
    fireworks, but now with CS3 theyre a bit glitchy and I have
    problems centering the page, as fireworks CS3 now generates CSS for
    each menu - (dreamweaver also gets confused which CSS to use?)
    Is SPRY menus the way to go now? It looks quite time
    consuming styling them with CSS? I quite like using rollover
    images, is this going to make life hard doing it the SPRY way?
    Any tips or advice would be appreciated before I start.
    Whats your experience of SPRY shall I go for that or stick to
    something more tradional?

    "BeardedFlipFlop" <[email protected]> wrote
    in message
    news:f73k74$ko4
    >
    > Is SPRY menus the way to go now? It looks quite time
    consuming styling
    > them
    > with CSS? I quite like using rollover images, is this
    going to make life
    > hard
    > doing it the SPRY way?
    It's not really all that time consuming if you have an
    understanding of
    CSS... the stylesheet that is used for the Spry menus is
    fully commented
    (thought it could be better explained in some cases), but
    once you
    understand what each section does and how to make the style
    change it's not
    that difficult.
    Otherwise, go with the tutorial already posted.
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au
    Spry Widget Examples
    http://www.dreamweaverresources.com/spry-widgets/

  • Is there a way to create drop down menus in IWeb

    I want to have drop down menus from the main ones on my website.
    How do I do that?

    This is the code I use in the html snipet
    <script language="JavaScript">
    <!--
    function getSelect(s) {
    return s.options[s.selectedIndex].value
    //-->
    </script>
    <select name="list" size="1" onChange="window.top.location=getSelect(this)">
    <option value="#">Select A Year</option>
    <option value="http://web.mac.com/gartside1104/Photoyears/1960.html">1960</option>
    <option value="http://web.mac.com/gartside1104/Photoyears/2008.html">2008</option>
    </select>
    Obviously you'll need to change certain parameters for your own use.

  • Creating drop down menus in JSP using custom tags

    Hi, i am working on a JSP which has custom tags for displaying menubar and menus, now i want to have these menus converted into drop down menus, and the submenus displayed onmouseover event. I am getting solutions with pure html page calling javascript functions.But i dont need this, i want the work done by my TagHandler class which sends the output to output stream, which in turn is transformed in to actual HTML by a XSLT embedded in my JSP.
    Please help as i am new to custom tags, and desperately in need of help.
    If possible give some sample code or useful links.
    I will be highly grateful.
    Thankx in advance

    that's fine, but the tag has to, ultimately, generate the HTML/Javascript stuff like you've already seen.

  • How to create drop down menus

    I want to know how to make the drop down menus for my
    navigation bar. I really want the menus to pop out to the right. Do
    I have to buy a java script to do this. I am a relativly new
    developer. I know some HTML and am just learning CSS. I am using
    Dreamweaver to construct my pages. I dont know java scripting and
    dont know how hard it is to do so don't know if this is something I
    can make on my own or if I can copy one from a free source or buy
    one. Thanks for any help. aekp

    Check the uberlink and MacFly tutorials at PVII
    http://www.projectseven.com/)
    and the Navbar tutorial/articles at Thierry's place
    http://tjkdesign.com/articles/dropdown/)
    Or this one (more recent article):
    http://tjkdesign.com/articles/Pure_CSS_Dropdown_Menus.asp)
    Or to get it done fast, go here -
    http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "aekp" <[email protected]> wrote in message
    news:en12bl$25c$[email protected]..
    >I want to know how to make the drop down menus for my
    navigation bar. I
    >really
    > want the menus to pop out to the right. Do I have to buy
    a java script to
    > do
    > this. I am a relativly new developer. I know some HTML
    and am just
    > learning
    > CSS. I am using Dreamweaver to construct my pages. I
    dont know java
    > scripting and dont know how hard it is to do so don't
    know if this is
    > something
    > I can make on my own or if I can copy one from a free
    source or buy one.
    > Thanks for any help. aekp
    >

  • Creating drop down menus

    Since Flash catalyst does not have a drop down component, does any one know how to create one.
    For example a horizontal menu you get in a application?
    Would be most grateful for any advice.
    Regards
    Josh.

    Hi Chris
    I have created  the first custom combo box which has a button and a datalist. This  show's my file drop down menu. Now I want to create custom components  for each menu item: Edit menu, View menu and so on... that will be a  total of 9 custom drop down menu components. Is it now possible to put  all these components within another custom component to create a  navigation bar, for eaxmple the Microsoft word top menu?
    Then with the datalist items in each component transitions to a state to show content in the main window.
    Is it possible to do this interface in Flash catalyst.
    Regards
    Josh.

  • Help creating drop down menus identical to this site

    http://www.nike.com/us/en_us/
    My client wants the drop downs on their site to be the identical look and feel as http://www.nike.com/us/en_us/
    Can Muse accomplish this and how?

    Sure, here you go this widget from Musegrid will get you going.
    http://www.musegrid.com/adobe-muse-widgets/menu-pack-one

  • Drop down menus flicker; hard to select a menu item

    When I select a drop down menu - Feedback, say, the drop down flickers in and out of visibility as I move down the menu. I can select an item, even though I can't see it, but it is hard to use menus I'm not familiar with. Same thing happens in the address bar with the drop down address 'help' - the bar constantly flickers in and out, and, in this case, when I attempt to use the drop down, the menu items disappear just as my mouse approaches them, then reappear as the mouse moves to the next item.
    I have tried this with all addons (I don't have many) disabled. I have tried the nightly build. Nothing has fixed this problem so far.
    Too bad, since I'm definitely liking the speed and the new look.
    I would consider this a showstopper. I'm amazed that it hasn't been reported before.

    Solved. After browsing through the forum, I found the solution. I have an Nvidia graphics card, and disabling hardware acceleration did the trick.

  • Create drop-down menus in Captivate 4

    I need your help!
    I need to create a dropdown menu in Captivate! It's supposed to be used in a simulation, not a quiz! Is it possible to create this in a Captivate simulation?
    Thanks!

    Hi there
    Normally we pause slides by inserting a Click Box. You may configure them with no action if you like.
    My own experience shows that the widget does set variables. But how they work is a bit on the iffy side. Perhaps another author will offer more insight on this aspect.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Multiple drop down menus won't work

    Hi guys,
    Mac newbie here: I decided to give them a shot after a lifetime of PC use due to a friend's recommendations.
    I'm trying to apply for jobs, and every single site that has two drop down menus, with one dependent on the other, won't work in Safari. (if I go try it out on a PC with IE, it works without any problems). For example, a menu that reads "country" and the next one reads "state". It will let me choose the country, but then the "state" one won't work at all, with the only option being "choose one".
    As these are required fields to send the application along, I'm having to borrow someone else's computer every time I apply for a job, and that's getting old fast. Any ideas on how to get Safari to quit hanging up on the dropdowns?
    I have no idea if this matters or not, but I bought my Mac when I lived in Japan. I'm still running the English version of the OS, though.
    Thanks for any help you can give me!

    I use www.alldatapro.com for auto repair information. It a members only site so it might be a bad example. The problem im having is, i cant select the first option in any dropdown menu. The badpart about that is some of the menus only have one option. In such a case, i have to log in on regular computer, put the info in, then reload the website on the ipad so i can use the "previous vehicles" option. I have a jailbroken ipad running 4.3.1. The dropdown mnus worked perfect until i upraded to 4.2 and i still havent found the source.

  • Drop Down Menus on different browsers

    Hi. I am a teacher and I'm making a website for my school. I just learned how to create drop down menus using html code. I checked the website on Firefox, Safari, and even Opera. Everything looks great, except for Internet Explorer. The menu at the top looks totally funky! It's in the wrong direction, the pictures are missing, etc. In addition, other things look messed up as well. Please check it out...
    http://nestleweb.com
    Why is this happening? I know that many people use IE, so it has to look right on this browser. Any suggestions?

    I did the same thing. I provided links on the homepage so users would not use IE. But the problem is... once a user goes to IE and sees the menus and the page all messed up, he/she might just give up and not even scroll to the bottom to see the browser recommendations. I just received an email telling me that the website was messed up for a visitor.
    Just venting...I am a teacher that's making the school website. Now, in my own classroom, I can tell and train my students and parents to use FF, but it's out of my control for the rest of the school and any other visitors. I'm just frustrated with the situation because everything takes so much time to make and then it looks horrible on IE! Thanks for your post. It helps to know I'm not the only one!

  • Drop Down Menus Don't Drop Down

    I am having a problem with my Spry Menu Bar. (Using CS5). In my template, all of the submenu items of the menu bar show as being there and I can navigate through them. However, when I save the file so I can preview (using F12) it working on my homepage, the drop down items do not appear in the preview. When I move this to my live site folder, I fear they still will not drop down and mine is a page that has a lot in the drop down menus that needs to be accessible. Here is the code from the template:
    <style type="text/css">
    body {
    width: 960px;
    padding: 1 px;
    margin: auto;
    background: #42413c;
    a:link {
    color: #000;
    text-decoration: underline;
    .container {
    width: 960px;
    background: #FFF;
    .header {
    background: #42413c;
    padding: 0;
    margin: auto;
    .News {
    background: #CCC;
    width: 200px;
    text-align: center;
    margin: 5px;
    padding: 5px;
    float: left;
    #Content {
    width: 728px;
    text-align: center;
    margin: 5px;
    padding: 5px;
    float: left;
    #CrisisIntervention {
    width: 190px;
    text-align: center;
    margin: 5px;
    padding: 5px;
    float: left;
    border-top-width: thin;
    border-right-width: thin;
    border-bottom-width: thin;
    border-left-width: thin;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: solid;
    border-top-color: #333;
    border-right-color: #333;
    border-bottom-color: #333;
    border-left-color: #333;
    #FallenHeroes {
    width: 960px;
    text-align: center;
    .footer {
    width: 940px;
    padding: 10px;
    background: #eee;
    position: relative;
    clear: both;
    a:visited {
    text-decoration: underline;
    color: #300;
    a:hover {
    text-decoration: none;
    color: #000;
    a:active {
    text-decoration: underline;
    /*Menu Bar styling classes*/
    ul.MenuBarHorizontal{
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: auto;
    ul.MenuBarActive{
    z-index: 1000;
    ul.MenuBarHorizontal li{
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: 10em;
    float: left;
    ul.MenuBarHorizontal ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    width: 10em;
    position: absolute;
    left: -1000em;
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible{
    left: auto;
    ul.MenuBarHorizontal ul li{
    width: 10em;
    ul.MenuBarHorizontal ul ul{
    position: absolute;
    margin: -5% 0 0 95%;
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible{
    left: auto;
    top: 0;
    ul.MenuBarHorizontal ul{
    border: 1px solid #CCC;
    ul.MenuBarHorizontal a {
    display: block;
    cursor: pointer;
    background-color: #eee;
    padding: 0.5em 0.75em;
    color: #000;
    text-decoration: none;
    border:2px solid;
    border-top-color:#C4C9DB;
    border-right-color:#565968;
    border-bottom-color:#565968;
    border-left-color:#C4C9DB;
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus{
    background-color: #393769;
    color: #FFF;
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible{
    background-color: #33C;
    color: #FFF;
    ul.MenuBarHorizontal a.MenuBarItemSubmenu{
    background-image: url(SpryMenuBarDown.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu{
    background-image: url(SpryMenuBarRight.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover{
    background-image: url(SpryMenuBarDownHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover{
    background-image: url(SpryMenuBarRightHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    ul.MenuBarHorizontal iframe{
    position: absolute;
    filter:alpha(opacity:0.1);
    z-index: 1010;
    </style>
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div class="container">
    <div class="header"><img src="../Graphics/headerbanner.jpg" width="960" height="90" /></div>
    <div>
      <ul id="MenuBar1" class="MenuBarHorizontal">
        <li><a href="../Home2.html">Home</a>    </li>
        <li><a href="../AboutUs.html" class="MenuBarItemSubmenu">About Us</a>
          <ul>
            <li><a href="../Leadership.html">Leadership</a></li>
    <li><a href="../History.html">History</a></li>
    <li><a href="../SocialNetworks.html">Social Networks</a></li>
    <li><a href="Join" _mce_href="http://www.nationalguard.com/">Join">http://www.nationalguard.com/">Join the Army National Guard</a></li>
    <li><a href="Join" _mce_href="http://www.goang.com/Calendar">Join">http://www.goang.com/Calendar">Join the Air National Guard</a></li>
          </ul>
        </li>
        <li><a href="../Organization.html" class="MenuBarItemSubmenu">Organization</a>
          <ul>
    <li><a href="../Army.html">Army National Guard</a></li>
    <li><a href="../Air.html">Air National Guard</a></li>
    <li><a href="TEMAhttp://www.tnema.org/">TEMA</a></li>
    <li><a href="../StateGuard.html">Tennessee State Guard</a></li>
    <li><a href="../JointPublicAffairs.html">Joint Public Affairs </a></li>
    <li><a href="../Environmental.html">Environmental</a></li>
    <li><a href="../IG.html">Inspector General</a></li>
    <li><a href="../JAG.html">Judge Advocate General</a></li>
    <li><a href="../WarrantOfficer.html">Warrant Officers</a>  </li>
          </ul>
        </li>
        <li><a href="../JointPublicAffairs.html" class="MenuBarItemSubmenu">Community Support</a>
          <ul>
            <li><a href="../Overview.html">Overview</a></li>
            <li><a href="../AviationSupport.html">Aviation Support</a></li>
            <li><a href="../NonAviationSupport.html">Non-Aviation Support</a></li>
            <li><a href="../Band.html">Band</a></li>
            <li><a href="../ColorGuard.html">Color Guard</a></li>
            <li><a href="../Speaker.html">Speaker</a></li>
            <li><a href="../WhatCanIDo.html">What Can I Do?</a></li>
          </ul>
        </li>
        <li><a href="../WarriorResources.html" class="MenuBarItemSubmenu">Warrior Resources</a>
          <ul>
    <li><a href="../DAPhotos.html">Request a DA Photo</a></li>
    <li><a href="../Education.html">Education</a></li>
    <li><a href="../Veterans.html">Veterans</a></li>
    <li><a href="../Resiliency.html">Resiliency</a></li>
    <li><a href="../Careers.html">Careers</a></li>
    <li><a href="../EmploymentAssistanceWorkshops.html">Employment Assistance Workshops</a></li>
    <li><a href="../YellowRibbon.html">Yellow Ribbon</a></li>
    <li><a href="../CCRF.html">Combat Casualty Relief Fund</a></li>
          </ul>
        </li>
        <li><a href="../FamilyPrograms.html" class="MenuBarItemSubmenu">Family Programs</a>
          <ul>
    <li><a href="#">Employer Support of the Guard and Reserve</a></li>
    <li><a href="../MFLC.html">Military Family Life Consultants</a></li>
    <li><a href="../FamilyAssistance.html">Family Assistance Centers</a></li>
    <li><a href="../YouthCamps.html">Youth Camps</a></li>
    <li><a href="../Resiliency.html">Resiliency</a></li>
    <li><a href="Operation" _mce_href="http://www.operationmilitarykids.org/public/home.aspx">Operation">http://www.o perationmilitarykids.org/public/home.aspx">Operation: Military Kids</a></li>
    <li><a href="Military" _mce_href="http://www.militaryonesource.mil/MOS/f?p=MOS:HOME:0::::">Military">http://www. militaryonesource.mil/MOS/f?p=MOS:HOME:0::::">Military OneSource</a></li>
    <li><a href="../CCRF.html">Combat Casualty Relief Fund</a></li>
          </ul>
        </li>
    </ul>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    <div class="body"><!-- TemplateBeginEditable name="Content" -->
      <div id="Content">
        <h2>&quot;Volunteer Traditions, Modern Missions&quot;</h2>
        <p> </p>
        <p> </p>
        <p> </p>
    </div>
    PLEASE HELP ME!!!!

    Have you created a new page from the template and tested that? New> Page from Template> Choose template from your site folder> Save> Test it

  • How to do I increase the font size inside the drop down menus?

    I am trying to enlarge the default font size of the drop down menus that appear when you use the items in the menu bar. For example, I want to increase the font size used in the list that appears under "bookmarks." I do not trying to do anything other than this. Theme and Font size changer does not do this.

    Can you clarify with a screenshot which for items you want to change the font size?
    I use this code on Linux for some font sizes:
    <pre><nowiki>/* font-size: sidebar */
    #commonDialog *, #sidebar-box *, #bookmarksPanel *, #history-panel *{ font-size:11pt!important; }
    /* font-size: Bookmarks */
    #bookmarksBarContent menuitem.bookmark-item,
    #bookmarksMenuPopup menu,
    #bookmarksMenuPopup menuitem { font-size:11pt!important; }
    /* font-size: search bar,autohide */
    #search-container .textbox-input-box {font-size:0px!important}
    #search-container .searchbar-textbox:hover .textbox-input-box,
    #search-container .searchbar-textbox[focused="true"] .textbox-input-box { font-size:12pt!important; font-family:"DejaVu Sans Mono"; }
    /* font-size: navigator toolbox */
    #navigator-toolbox menupopup menu, #navigator-toolbox menupopup menuitem { font-size:12px!important; }</nowiki></pre>

  • Linking Drop Down Menus

    I need help with creating a form. I want to have two drop down menus that are linked. One that has Option A, Option B and Option C and a second that has Option 1, Option 2 and Option 3. I want it to be able to filter based on options selected.
    For example, if you select Option B in the first drop down menu then only Option 1 and Option 3 are possible selections in the second Drop down menu. How do I configure this?
    Thanks

    Changing Another Field with Combo Box (Drop Down) Selection by Thom Parker describes how do this by use of the data object in Acrobat and LiveCycle Designer.

  • Drop down menus in MX

    I have Dreamweaver MX, can I create drop-down menus without
    an outside extention or software? If not, what is a good one to
    use? In CS4, can Spry do that for you?

    > can I create drop-down menus without an outside
    extention or software?
    Yes, but only if you know how to do it without using this -
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    Check the uberlink and MacFly tutorials at PVII -
    http://www.projectseven.com/
    and the Navbar tutorial/articles at Thierry's place
    http://tjkdesign.com/articles/dropdown/
    Or this one (more recent article):
    http://tjkdesign.com/articles/Pure_CSS_Dropdown_Menus.asp
    Or to get it done fast, go here -
    http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm
    If your needs are more robust than that simple tool provides,
    then you will
    not go wrong with others of the menu systems provided there.
    I use
    PopMenuMagic on about 90% of the sites I build. The only
    reasons that
    number is not 100% is a) some simple sites just don't need
    them, and b) some
    sites require a different approach. Again, for what it's
    worth, for those
    sites that require a different approach, I just use a
    different PVII
    menu....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "sbruem" <[email protected]> wrote in
    message
    news:gogvfm$nlr$[email protected]..
    >I have Dreamweaver MX, can I create drop-down menus
    without an outside
    >extention or software? If not, what is a good one to use?
    In CS4, can Spry
    >do that for you?

Maybe you are looking for

  • Peculiar problem in SU01

    Hi SAP Gurus, We are facing a strange problem with transaction SU01 in our recently upgraded ECC 6.0 system. The system was previously ECC 5.0. When we try to reset the password for a user from the 'change password' option in the initial screen of SU

  • How to create fan-out pattern solution in alsb (osb)

    Hello guys, I'm trying to create a fan-out pattern solution in ALSB in which I have one proxy service for incoming messages and two outbound business services. All messages are to be forwarded to both business services simultaneous but independent fr

  • Desktop Manager Sync Problem

    I have the latest desktop and device software.  I can sync the BB with the Calendar in Outlook, but only after I added another Mail Profile as advised elsewhere.  When I try and sync the Address book (with Outlook's Contacts), the Desktop Manager jus

  • "INSERT ALL" bug

    Hello, Recently we have migrated from Oracle 9iR2 on Windows to Oracle 10.2.0.1 on 64-bit Linux. However, one of our scripts stopped working. Consider the following: INSERT ALL INTO Queries_Raw (q_type) VALUES (dummy)            SELECT dummy FROM DUA

  • Target load order within dimension operator

    Hi there, We are having the following situation, a dimension which has two roles assigned to it is populated via a simple mapping, basically loaded from one staging table. It only seems to work when the table which has foreign keys against this table