Please help me : Show table form on Browser by JDeveloper 10g

Good Day.
Dear Mr.Steve and Everybody
I have a problem about Oracle JDeveloper 10g (ADF).
I select data from Oracle Database 10g as show below.
But I want to show on browser by Group By duplicate column.
Ps. Use the JDeveloper 10g (ADF).
(ref. by SId)
|----- Table 1 --------|----- Table 2 -----|
| S | Nam | LName | SubjId | SName |
|----|---------|------------|-----------|-------------|
| 1 | aaaa | aaaaaa | 00001 | nnnnnn |
|----|---------|------------|-----------|-------------|
| 1 | aaaa | aaaaaa | 00001 | nnnnnn |
|----|---------|------------|-----------|-------------|
| 2 | bbbb | bbbbbb | 00002 | kkkkkk |
|----|---------|------------|-----------|-------------|
| 2 | bbbb | bbbbbb | 00002 | kkkkkk |
|----|---------|------------|-----------|-------------|
| 2 | bbbb | bbbbbb | 00002 | kkkkkk |
Best Regards,
Sakhapob Chaipisutthipong (Thailand)

I'm sorry !!!!
(ref. by S)
|----- Table 1 --------|----- Table 2 -----|
| S | Nam | LName | SubjId | SName |
|----|---------|------------|-----------|-------------|
| 1 | aaaa | aaaaaa | 00001 | nnnnnn |
|----|---------|------------|-----------|-------------|
| 1 | aaaa | aaaaaa | 00002 | kkkkkk |
|----|---------|------------|-----------|-------------|
| 2 | bbbb | bbbbbb | 00002 | kkkkkk |
|----|---------|------------|-----------|-------------|
| 2 | bbbb | bbbbbb | 00003 | pppppp |
|----|---------|------------|-----------|-------------|
| 3 | cccc | cccccc | 00002 | kkkkkk |
----------------------------------------------------

Similar Messages

  • My iphone 3gs is in recovery mode how do i activate it please help. it shows the message your iphone couldnot be activated because the activation server is temporarily deactivated.

    my iphone 3gs is in recovery mode how do i activate it please help. it shows the message your iphone couldnot be activated because the activation server is temporarily deactivated.

    This usually happens if the phone has been Hacked / Jailbroken / Modified...
    Is this the case...?

  • Help: how to show 9i forms without browser

    Hi, I want to show 9i forms in separate frame without browser, and I use JInitiator. I use separateFrame=true, which worked. But my question is since I don't need the browser, I want to close it. The problem is it'll close the form too. I think the reason for that is the browser is the parent of the form. Can someone tell me whether is possible to close the browser page without closing the actual form? or is there any other way to display actual form without the browser frame. Please help! Thanks,
    Sa

    Thanx for ur reply,
    Actually the senario is when i click on a button, another jsp page should be displayed in a modal window without popup, but the functions alert() and confirm() will not accept the url path of the another jsp page...

  • Please help - Joining three tables and get row values into Column. Please help!

    Hi,
    There is a SourceTable1 (Employee) with Columns like EmployeeID,Name,DOB.
    There is a sourcetable2 (EmployeeCode) with columns like EmployeeID,Code,Order.
    There is a source table 3  #EmployeeRegioncode  and its columns are (EmployeeID , RegionCode , [Order] 
    The target table 'EmployeeDetails' has the following details. EmployeeID,Name,DOB,Code1,Code2,Code3,Code4,regioncode1
    regioncode2 ,regioncode3 ,regioncode4 
    The requirement is , the value of the target table columns the Code1,code2,code3 ,code4,code5 values should
    be column 'Code' from Sourcetable2 where its 'Order' column is accordingly. ie) Code1 value should be the 'Code' value where [Order] column =1, and Code2 value should be the 'Code' value where [Order] =2, and so on.
    Same is the case for Source table 3- 'Region code' column also for the columns  regioncode1
    regioncode2 ,regioncode3 ,regioncode4 
    Here is the DDL and Sample date for your ref.
    IF OBJECT_ID('TEMPDB..#Employee') IS NOT NULL DROP TABLE #Employee;
    IF OBJECT_ID('TEMPDB..#EmployeeCode') IS NOT NULL DROP TABLE #EmployeeCode;
    IF OBJECT_ID('TEMPDB..#EmployeeDetails') IS NOT NULL DROP TABLE #EmployeeDetails;
    ---Source1
    CREATE table #Employee 
    (EmployeeID int, Empname varchar(20), DOB date )
    insert into #Employee VALUES (1000,'Sachin','1975-12-12') 
    insert into #Employee VALUES (1001,'Sara','1996-12-10') 
    insert into #Employee  VALUES (1002,'Arjun','2000-12-12')
    ---Source2
    CREATE table #EmployeeCode 
    (EmployeeID int, Code varchar(10), [Order] int)
    insert into #EmployeeCode VALUES (1000,'AA',1) 
    insert into #EmployeeCode VALUES (1000,'BB',2)   
    insert into #EmployeeCode  VALUES (1000,'CC',3)  
    insert into #EmployeeCode VALUES  (1001,'AAA',1)  
    insert into #EmployeeCode  VALUES  (1001,'BBB',2)  
    insert into #EmployeeCode  VALUES  (1001,'CCC',3)  
    insert into #EmployeeCode  VALUES  (1001,'DDD',4)  
    insert into #EmployeeCode  VALUES  (1002,'AAAA',1)  
    insert into #EmployeeCode  VALUES  (1002,'BBBB',2)  
    insert into #EmployeeCode  VALUES  (1002,'CCCC',3)  
    insert into #EmployeeCode  VALUES  (1002,'DDDD',4)  
    insert into #EmployeeCode  VALUES  (1002,'EEEE',5)  
    ---Source tbl 3
    CREATE table #EmployeeRegioncode 
    (EmployeeID int, RegionCode varchar(10), [Order] int)
    insert into #EmployeeRegioncode VALUES (1000,'xx',1) 
    insert into #EmployeeRegioncode VALUES (1000,'yy',2)   
    insert into #EmployeeRegioncode  VALUES (1000,'zz',3)  
    insert into #EmployeeRegioncode VALUES  (1001,'xx',1)  
    insert into #EmployeeRegioncode  VALUES  (1001,'yy',2)  
    insert into #EmployeeRegioncode  VALUES  (1001,'zz',3)  
    insert into #EmployeeRegioncode  VALUES  (1001,'xy',4)  
    insert into #EmployeeRegioncode  VALUES  (1002,'qq',1)  
    insert into #EmployeeRegioncode  VALUES  (1002,'rr',2)  
    insert into #EmployeeRegioncode  VALUES  (1002,'ss',3)  
    ---Target
    Create table #EmployeeDetails
    (EmployeeID int, Code1 varchar(10), Code2 varchar(10),Code3 varchar(10),Code4 varchar(10),Code5 varchar(10) , regioncode1 varchar(10),
    regioncode2 varchar(10),regioncode3 varchar(10),regioncode4 varchar(10))
    insert into #EmployeeDetails  VALUES (1000,'AA','BB','CC','','','xx','yy','zz','')  
    insert into #EmployeeDetails  VALUES (1001,'AAA','BBB','CCC','DDD','','xx','yy','zz','xy')  
    insert into #EmployeeDetails VALUES (1002,'AAAA','BBBB','CCCC','DDDD','EEEE','qq','rr','ss','')  
    SELECT * FROM  #Employee
    SELECT * FROM  #EmployeeCode
    SELECT * FROM  #EmployeeRegioncode
    SELECT * FROM  #EmployeeDetails
    Can you please help me to get the desired /targetoutput?  I have sql server 2008.
    Your help is greatly appreciated.

    select a.EmployeeID,b.code1,b.code2,b.code3,b.code4,b.code5,c.Reg1,c.Reg2,c.Reg3,c.Reg4 from
    #Employee a
    left outer join
    (select EmployeeID,max(case when [Order] =1 then Code else '' end) code1,
    max(case when [Order] =2 then Code else '' end)code2,
    max(case when [Order] =3 then Code else '' end)code3,
    max(case when [Order] =4 then Code else '' end)code4,
    max(case when [Order] =5 then Code else '' end)code5 from #EmployeeCode group by EmployeeID) b
    on a.EmployeeID=b.EmployeeID
    left outer join
    (select EmployeeID,max(case when [Order] =1 then RegionCode else '' end) Reg1,
    max(case when [Order] =2 then RegionCode else '' end)Reg2,
    max(case when [Order] =3 then RegionCode else '' end)Reg3,
    max(case when [Order] =4 then RegionCode else '' end)Reg4 from #EmployeeRegioncode group by EmployeeID) c
    on a.EmployeeID=c.EmployeeID
    Thanks
    Saravana Kumar C

  • Please help, slide show for a funeral in jepoardy

    I seem to be having trouble inporting scanned pictures from iphoto into imovie 08. This is my process.
    1. Scan the photos.
    2. Save as JPEG image into the pictures folder (Not the iphoto file, but pictures -My save as choices do not include iphoto).
    3. Do a drag and drop of picture from picture folder into opened iphoto program. I can now see them in iphoto and have placed them in a seperate iphoto album.
    4. When I choose pictures (right hand side button that looks like a camera) it shows me all my pictures EXCEPT any scanned ones. I have 6000 pictures in iphoto, but imovie only sees 4000 (2000 are scanned).
    5. When I try to do a drag and drop from iphoto directly into imovie, imovie tells me the pictures are not compatable.
    What am I doing wrong? My guess is something from the scanning aspect. Please help, the family just dropped the pictures off last night and the funeral is tomorrow.

    4. When I choose pictures (right hand side button that looks like a camera) it shows me all my pictures EXCEPT any scanned ones. I have 6000 pictures in iphoto, but imovie only sees 4000 (2000 are scanned).
    Sounds like the iPhoto album contents are not being thumbnailed. Try bypassing the thumbnails by dragging a photo file from either the "Picture" folder or the open iPhoto album and dropping it directly to your Project window. If this works then you know the problem is in the thumbnailing.
    If this works and you are in such a hurry, I would suggest you simply set your iMovie '08 Project Properties for the default photo/transition mode you want and then drag and drop all photos directly to the iMovie '08 project window and then rearrange/change them as needed.Thus you can get to work on your funeral slideshow immediately and put off trying to fix the thumbnail problem until you have the time to concentrate on it exclusively. (I.e., deal with one problem at a time.)

  • Could someone please help me with contact form php.

    Hi,
    could someone please help me wright the php for this contact form?
    <form class="contact_form" action="kontakt.php" method="post">
                <p><input type="text" required="required" id="contact_name" name="contact_name" class="text_input" value="" size="22"  />
                <label for="contact_name">Namn *</label></p>
                <p><input type="text" required="required" id="contact_company" name="contact_company" class="text_input" value="" size="22"  />
                <label for="contact_company">Företag *</label></p>
                <p><input type="email" required="required" id="contact_email" name="contact_email" class="text_input" value="" size="22"  />
                <label for="contact_email">Epost *</label></p>
                <p><textarea required="required" name="contact_content" class="textarea" cols="30" rows="5"></textarea></p>
                <p><button type="submit" class="button white"><span>Skicka</span></button></p>
                <input type="hidden" value="[email protected]" name="contact_to"/>
            </form>
    Its no sence writing down my php as it is useless.
    All help is appriciated.
    Thank you

    Please don't post duplicate threads. Continue the discussion in http://forums.adobe.com/thread/1080721.
    This thread is now locked.

  • PLEASE HELP! Shows Update, but won't do it

    I am trying to update my iPod Touch to the 2.0 version. It says, "A newer version of iPod software is available (version 2.0). To update your iPod with the latest software, click Update."
    I Click Update and this pops up: "A new iPod software version (2.0)is available for the iPod. Would you like more information from the iTunes store now?"
    And I click learn more. It goes to a white screen with the word "iPod" on it for about 5 seconds and then back to the iPod home screen.
    PLEASE HELP!

    Im having the same trouble. It showing a blank ipod white screen then it goes back to the previous page

  • Please help !! Contact form not sending mail

    www.concretegta.com
    in the contact us page i have made a little contact form, but i am not recieving mail to my email. Can someone please help, http://www.concretegta.com/contact.html is where the form is.
    this is the coding for the php
    <?php
    $mailto = '[email protected]' ;
    $subject = "Feedback from General Concrete Solutions" ;
    $formurl = "http://www.concretegta.com/contact.html" ;
    $thankyouurl = "http://www.concretegta.com/emailsent.html" ;
    $errorurl = "http://www.johnsmith.com/oops.html" ;
    $email_is_required = 1;
    $name_is_required = 1;
    $comments_is_required = 1;
    $uself = 0;
    $forcelf = 0;
    $use_envsender = 0;
    $use_sendmailfrom = 0;
    $smtp_server_win = '' ;
    $use_webmaster_email_for_from = 0;
    $use_utf8 = 1;
    $my_recaptcha_private_key = '' ;
    // -------------------- END OF CONFIGURABLE SECTION ---------------
    define( 'MAX_LINE_LENGTH', 998 );
    $headersep = $uself ? "\n" : "\r\n" ;
    $content_nl = $forcelf ? "\n" : (defined('PHP_EOL') ? PHP_EOL : "\n") ;
    $content_type = $use_utf8 ? 'Content-Type: text/plain; charset="utf-8"' : 'Content-Type: text/plain; charset="iso-8859-1"' ;
    if ($use_sendmailfrom) {
    ini_set( 'sendmail_from', $mailto );
    if (strlen($smtp_server_win)) {
    ini_set( 'SMTP', $smtp_server_win );
    $envsender = "-f$mailto" ;
    $fullname = isset($_POST['fullname']) ? $_POST['fullname'] : $_POST['name'] ;
    $email = $_POST['email'] ;
    $comments = $_POST['comments'] ;
    $http_referrer = getenv( "HTTP_REFERER" );
    if (!isset($_POST['email'])) {
    header( "Location: $formurl" );
    exit ;
    if (($email_is_required && (empty($email) || !preg_match('/@/', $email))) || ($name_is_required && empty($fullname)) || ($comments_is_required && empty($comments))) {
    header( "Location: $errorurl" );
    exit ;
    if ( preg_match( "/[\r\n]/", $fullname ) || preg_match( "/[\r\n]/", $email ) ) {
    header( "Location: $errorurl" );
    exit ;
    if (strlen( $my_recaptcha_private_key )) {
    require_once( 'recaptchalib.php' );
    $resp = recaptcha_check_answer ( $my_recaptcha_private_key, $_SERVER['REMOTE_ADDR'], $_POST['recaptcha_challenge_field'], $_POST['recaptcha_response_field'] );
    if (!$resp->is_valid) {
      header( "Location: $errorurl" );
      exit ;
    if (empty($email)) {
    $email = $mailto ;
    $fromemail = $use_webmaster_email_for_from ? $mailto : $email ;
    if (function_exists( 'get_magic_quotes_gpc' ) && get_magic_quotes_gpc()) {
    $comments = stripslashes( $comments );
    $messageproper =
    "This message was sent from:" . $content_nl .
    "$http_referrer" . $content_nl .
    "------------------------------------------------------------" . $content_nl .
    "Name of sender: $fullname" . $content_nl .
    "Email of sender: $email" . $content_nl .
    "------------------------- COMMENTS -------------------------" . $content_nl . $content_nl .
    wordwrap( $comments, MAX_LINE_LENGTH, $content_nl, true ) . $content_nl . $content_nl .
    "------------------------------------------------------------" . $content_nl ;
    $headers =
    "From: \"$fullname\" <$fromemail>" . $headersep . "Reply-To: \"$fullname\" <$email>" . $headersep . "X-Mailer: chfeedback.php 2.16.2" .
    $headersep . 'MIME-Version: 1.0' . $headersep . $content_type ;
    if ($use_envsender) {
    mail($mailto, $subject, $messageproper, $headers, $envsender );
    else {
    mail($mailto, $subject, $messageproper, $headers );
    header( "Location: $thankyouurl" );
    exit ;
    ?>

    >? i dont understand why there would be secuirity
    >risks... did i do something wrong??
    Most of the time McAfee SiteAdvisor gets it right but it's not perfect. It's possible there is something suspicious on your site but if you think everything is ok request a review:
    https://www.siteadvisor.com/analysis/recommendchanges/?url=http%3A//www.concretegta.com/

  • PLEASE HELP - Ipod Showing In My Comp But Not Itunes Etc

    Hi there
    Can someone PLEASE help me! I am at my wits end with my Ipod.
    A few weeks ago I was in the middle of listening to a song and my ipod crashed then switched itself off. Ever since then I haven't been able to get it to connect to Itunes or the Updater and it won't play anything.
    When I switch the ipod on I get various errors ranging from the unhappy ipod to the folder with the exclamation mark.
    When I connect my ipod to my pc an autoplay window appears and sometimes I get an error saying the drive my ipod is connected to isn't formatted.
    So far I have tried the following
    Reinstalled Itunes
    Going into Disk Management and changing the Drive the ipod uses
    Reset The Ipod
    Tried Using Another USB Port
    Put the Ipod Into Disk Mode
    Nothing Works! After I changed the drive the ipod uses things looked promising. The Ipod was detected by the updater and it was started to restore the ipod however after a few minutes the ipod seemed to lose the connection and I got the error with the Battery icon.
    Can someone please help me!

    "my dad pressed view and then he chose the 3rd picture thing and songs went into."
    Sorry, I don't know what that means.
    Have you had a chance to look through these?
    USB drivers are not installed properly or are out of date.
    iTunes 7 doesn't recognize the iPod.

  • Please help with a table issue

    At
    http://www.stlblues.net/default.htm,
    the mini-calendar I frame at the top right is aligning left. I
    can't find the reason, please help me align this centered /

    It's in an iframe. I can't help further than that.... 8(
    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
    ==================
    "Bushido" <[email protected]> wrote in
    message
    news:ek0brg$5ip$[email protected]..
    > At
    http://www.stlblues.net/default.htm,
    the mini-calendar I frame at the
    > top right is aligning left. I can't find the reason,
    please help me align
    > this centered /
    >
    >

  • Please help with snippet for form.

    I'm building my wedding photography site with iWeb and I want to place a form on there where customers can, via a series of pull down menus, choose various addons to their wedding package which I want to show a running total at the bottom for an instant quote. I would then need to get a copy of this data sent to me.
    What kind of HTML snippet would I need and where could I find one?
    Thanks in advance.

    Thanks Scott, that jot form looks great for a contact form etc. Due to being add free. But it doesn't look like it allows me to add a value to a selection on a drop down menu and a way of adding it up/displaying the total on my site.
    Example id need fields like this;
    "album required"
    The available selections could be:
    "12 x 8" value added to viable running total would be £100
    "14 x 10" value added to viable running total would be £150
    "16 x 12" value added to viable running total would be £200
    Then another field may be:
    "Hi Res CD required?"
    the available selections could be:
    "no thanks!" having a value of £0
    "50 images" having a value of £100
    "all images" having a value of £250
    So if the user chooses "16 x 12" and "all images" the running total on the page would show the user "£450"
    Any help would be greatly appreciated.
    Thanks!

  • PLEASE help with server-side form validation using PHP!!!

    I feel like im going round and round in circles with this, after looking into all sorts of server-side advice i've come to the conclusion that i want to validate my form using server-side validation with PHP.
    So my form has several drop down menu's and  textareas  (not all of them need validation). For the part of my form i would like to validate, all i want is the drop downs to have to be changed/selected. So just a simple message like "You must select an option" if customers haven't done so. For the textareas, they just need to be filled out, so a message like "Information required" to come up if customers haven't done so.
    I believe i need to create a PHP page say for example 'error.php' place  the validation code in there and set this part of the the form to -
    <form name="product"form action="error.php" method="post" class="product_form">
    BUT im getting really confused with creating the code for the error.php. Please please can anyone help me with this!!!???
    Here are the drop down menu's i need validation on, error message being "You must select an option",
    "figurine"
    "engraving"
    "font"
    and here are the textareas that need validating, error message "Information required",
    "test"
    "Name"
    "house"
    "line_1"
    "line_2"
    "county"
    "postcode"
    "tel"
    www.milesmemorials.com/product-GK1.html
    I'd really appreciate any help!!!

    Ness_quick wrote:
    Great thats good enough for me. In that case, would you please be able to help me create the javascript for the above validation?? If you could just help me create it for this page i can amend it for all the other pages. I'd really really appreciate it!!!
    Can you follow the below example?? Obviously AFTER validation has been successful you need to collect the information from the form and send it to the recipient email address...that's where you can use php. I'll check back tomorrow and see how you are doing.
    <!DOCTYPE HTML>
    <html><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Form validation</title>
    <!-- VALIDATE ORDER FORM  -->
    <script type="text/javascript">
    <!--
    function RequiredFormFields() {
        // inform customer to provide figurine choice
    var figurine = document.forms.product.figurine.value;
    if (figurine == "-- Select figurine --")
    alert("Please provide figurine choice");
    return false;
    // inform customer to provide engraving choice
    var engraving = document.forms.product.engraving.value;
    if (engraving == "-- Select engraving --")
    alert("Please provide engraving choice");
    return false;
    // inform customer to provide font choice
        var font = document.forms.product.font.value;
    if (font == "-- Select style --")
    alert("Please select font style");
    return false;
    // inform customer to provide their name
    var Name = document.forms.product.Name.value;
    if (Name == null || Name == "")
    alert("Please provide your name");
    return false;
    // inform customer to provide their house number/name
    var house = document.forms.product.house.value;
    if (house == null || house == "")
    alert("Please provide your house number/name");
    return false;
    } // end function
    -->
    </script>
    </head>
    <body>
    <form name="product" form action="processForm.php" method="post" class="product_form" onsubmit="return RequiredFormFields()">
    <p class="product_form_options">Choice of Figurine<br>
    <select name="figurine" class="productButton" id="figurine" onChange="Recalculate()">
    <option selected>-- Select figurine --</option>
    <option value="7031">Tropical Green Granite with bronze sacred heart figurine as pictured(&pound;7031)</option>
    <option value="5216">Tropical Green Granite with bronze effect sacred heart figurine (&pound;5216)</option>
    <option value="5216">Tropical Green Granite with reconstituded figurine MF122(&pound;5216)</option>
    </select>
    </p>
    <p class="product_form_options">Engraved Lettering<br>
    <select name="engraving" class="productButton" id="engraving" onChange="Recalculate()">
            <option selected>-- Select engraving --</option>
            <option value="2.30">Sandblast and enamel painted (&pound;2.30/letter)</option>
            <option value="2.80">Sandblast and guilded (&pound;2.80/letter)</option>
            <option value="2.20">Maintenance free (&pound;2.20/letter)</option>
            <option value="3.73">Traditionally hand cut and enamel painted (&pound;3.73/letter)</option>
            <option value="3.98">Traditionally hand cut and gilded (&pound;3.98/letter)</option>
            <option value="4.34">Raised lead and enamel painted (&pound;4.34/letter)</option>
            <option value="4.59">Raised lead and gilded (&pound;4.59/letter)</option>
          </select>
    </p>
    <p class="product_form_options">Letter/Font Style<br>    
          <select name="font" class="productButton" id="font" >
               <option selected>-- Select style --</option>
               <option value="Maintenance free">Maintenance free </option>
               <option value="White painted block">White painted block</option>
               <option value="White painted roman">White painted roman</option>
               <option value="White painted Script">White painted Script</option>
               <option value="White painted Celtic">White painted Celtic</option>
               <option value="White painted Nova">White painted Nova</option>
               <option value="Sliver painted block">Sliver painted block</option>
               <option value="Sliver painted roman">Sliver painted roman</option>
               <option value="Sliver painted Script">Sliver painted Script</option>
               <option value="Sliver painted Celtic">Sliver painted Celtic</option>
               <option value="Sliver painted Nova">Sliver painted Nova</option>
               <option value="Gold leaf painted block">Gold leaf painted block</option>
               <option value="Gold leaf painted roman">Gold leaf painted roman</option>
               <option value="Gold leaf painted Script">Gold leaf painted Script</option>
               <option value="Gold leaf painted Celtic">Gold leaf painted Celtic</option>
               <option value="Gold leaf painted Nova">Gold leaf painted Nova</option>
               <option value="Gold leaf painted Old English">Gold leaf painted Old English</option>
             </select>
             </p>
             <p>
    <p>Name<br>
    <input name="Name" type="text" id="Name" value="">
    </p>
    <p>House name or number:<br>
    <input name="house" type="text" id="house" size="67">
    </p>
    <p>
    <input name="submit" type="submit" class="place_order" id="submit" value="Place order">
    </p>  
    </form>
    </body>
    </html>

  • Can someone please help? Show/Hide layers

    Hi there,
    I am making a site for a friend and am having some weirdness
    that I can't figure out. I have a series of layers that show/hide
    based on various selections. Nothing complicated by any means. I am
    using the Dreamweaver Show-hide layers functionality. I am sure I
    have used it before in exactly the same way and not had this
    problem.
    So here is what it is. The page loads and most of the layers
    are set to hidden and then they get toggled on/off based on various
    selections. For some reason when the page loads in IE, all of the
    layers are visible. In Firefox they are hidden as intended.
    If someone has come across this before, or could take a
    moment to look at the site, I would be very grateful. I have stared
    at this and tweaked it so much that I am at a loss and I know that
    my friend is really needing her site to just be up and running.
    Also, now that I think of it, (and this is more of a nuisance
    than a problem) I am using the snap layers extension to position my
    layers. When you look at my site you will see that the layers look
    crazy when the page loads and then eventually move into place. Is
    there a way to make it so the layers are just already in place? Or
    even if they could not become visible until after they have
    snapped?
    Thanks in advance. I really do appreciate any help you could
    provide.
    The address for the test server is
    http://www.jcopple.com/rtc/index.html
    Josh

    I agree with the honest answer. This is a very poor way to
    make a page.
    Nevertheless, in DW's design view, use the A/P Element panel,
    and make sure
    that the eyeball icon is CLOSED for each layer that you want
    to be hidden
    when the page loads. Then save and upload the page.
    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
    ==================
    "CaptFlynn" <[email protected]> wrote in
    message
    news:fvdd2f$7t3$[email protected]..
    > Hi there,
    > I appreciate your honest answer (though it wasn't what I
    wanted to hear,
    > LOL)
    > but for the sake of time I would like to find a solution
    to the existing
    > problem and then once I have her at least up and
    running, I can go back
    > and
    > code it correctly.
    > So if you have any suggestions as to why the layers
    wouldn't be hidden,
    > Iwould
    > really like to hear them.
    > Thanks,
    > Josh
    >

  • Please help with the tables involved with V1,V2 and V3 updates

    I am having the below problem
    1)Serialized V3 Update also called v3 update is being used for 02 and 03 applications. so what would be the flow for the above module?
    would it be:
    1) Dialog screen to make changes made to a purchasing document called
    2)changes made and saved go to update tables VB*
    3)Then V1 FM call moves the data from VB* tables to Application tables
    4)If V2 FM is necessary, it is looked up in VBHDR and performs calulations eg:Total price = Qty * Price per unit.
    what are the tables that V3 collective run then moves data from to RSA7
    I want to know what tables(move data from Table1 and to table2) are involved in V1,V2 and V3 updates
    Thanks a lot

    Hello Syed,
    Go through this thread, here V1,V2 and V3 updates have been discussed. Also statistical and document updates are explained.
    V1,V2,V3 updates
    Hope it helps.
    Regards,
    Praveen

  • Please help with two tables...

    I've created form based on two tables - two blocks with relationship. One table have fields ID and DESCRIPTION and there is LOV based on it. LOV returns value to textbox. I want that user see in textbox value DESCRIPTION, but when user save changes to main table there is update on ID field. How can I do that?
    PS Sorry my english is not perfect.

    see this link , i guess you are looking for same thing
    Copying value from updated block to newly created bolck

Maybe you are looking for

  • Plan Values and Special Purpose Ledger, KP97

    Hi, I have copied plan values using KP97 for respected versions. What do I need to do to get same values in Special Purpose Ledger (SPL)? Thanks in advance for your time. Regards,

  • Adding a *Not* Null Entry to a Data-Bound Drop Down List

    How do I add a not null entry to a data-bound drop down list? I am supposed to have something like this: <html:select property="Korisnik1" > <html:option value="0000">      (Not null value) </html:option> <html:option value="-1"> (Null value) </html:

  • Connect ipod to window.....help!!!!!!!!!!!!!

    i connected my ipod to Window Xp.......in my ipod had the icon connect but i didn't see it connect in itune ......help please.........

  • How do i reset mac book to original settings

    I have an old mac book (white) and want to clean everything off of it and give it away, how do I do that?

  • Material PRT or Material Tools to use? or...?

    Hi Gurus, Need your advice. User have many PRTs (1 assembly may use 1000 type of PRTs). Purchase lead time about 6 weeks. User requirement are: 1. They need to know whether they have the required PRT or not; is the quantity sufficient or not. 2. They