Repeating regions not working in Contribute 6.5

Repeating regions that work inside Dreamweaver aren't working in Contribute 6.5 where I get the error message "You can't add items to repeating regions because the draft's parent template is missing or not available to users in your role. Please contact the website administrator"
My role is administrator and this happens on pages based on single templates and nested templates as well as local files and pages published on a site.
The problem seems to run through several different versions of Contribute going back at least 5 years but I haven't found a solution yet.

For me the problem is different. I don't even get to to see the add/delete buttons, so I can not add och delete a new region! I am tryong to chat with the adobe support right now, but I am not feeling very succesful. Is anyone from Adobe reading this? (It is working in CS5)

Similar Messages

  • Repeat regions not working in Contribute

    I've got a problem with repeat regions inside templated
    pages. When in contribute, I can't seem to add a new repeat region
    by clicking on the plus (+) button, although it works fine in
    dreamweaver. It isn't a permissions issue as far as I can tell,
    since all roles have the ability to see and edit all documents, but
    I can't figure out what else could be going on here. Any
    ideas?

    I think it's just a problem with Contribute's handling of
    PHP. There was a small chunk of PHP code in a library item that had
    to be removed. I was trying to save the value of a server variable
    into a local variable, but had to end up putting the exact same
    call in an inclue file instead. I just put the include statement
    inside the library item so it showed up site-wide. The include
    statement didn't do anything screwing during 'edit mode' in
    Contribute, so that was the workaround.

  • In content editing repeating regions not working Safari 6.05 and Google Chrome v30.0.1599.66 mac? No

    In content editing repeating regions not working Safari 6.05 and Google Chrome v30.0.1599.66 mac?
    Marquees not showing, works perfectly fine on PC IE 9.
    Can edit text put cannot duplicate regions?
    Can anyone advise? Not good if the client worjs on Mac.

    Marquees the HTML tag? It's the most hated HTML tag out there, most browsers removed it because it was such a pain to see in 1996 scrolling images and scrolling everything

  • Email php function repeat region not working

    i have a form that needs to be emailed and it as products attached to it. however i have a repeat region to list all the products but when i email it ithe email only shows the first item on the list.
    below is the form set up
    //emailer
        // Email new tenant information
            $to = '[email protected]';// . ',' . '$row_rsOrder["Email"]';
            //$to = $row_rsOrder["Email"];
            $subject = "Your Order Details";
            $message = "
    <html>
    <head>
    <title>Dear ".$row_rsOrder['FirstName'].$row_rsOrder['LastName']."  please see your Order Details Below</title>
    </head>
            <body>
            <img src=\"http://www.website.com/images/logoBLPP.jpg\" alt=\"" />
            <h2>Your B Order".$row_rsOrder['OrderID']."</h2>
            <table width='800' border='0' cellspacing='0' cellpadding='0'>
                            <tr><td><p>Thank you for shopping  below are you details of the order you have recently placed. If you have any questions please contact us</p>
      <br />
            </a></p>
                            <tr><td></td></tr></table>
    <table width='980' border='1' cellspacing='0' cellpadding='10'>
          <tr valign='top'>
            <td bgcolor='#E9E9E9' class='header1'>Customer Name</td>
            <td class='text'>".$row_rsOrder['FirstName'] . $row_rsOrder['LastName']."</td>
            <td bgcolor='#E9E9E9' class='header1'>Order ID</td>
            <td bgcolor='#E9E9E9' class='text'>".$row_rsOrder['OrderID']."</td>
            <td bgcolor='#E9E9E9' class='header1'>Order Status</td>
            <td class='text'>".$row_rsOrder['TransactResult']."</td>
          </tr>
          <tr valign='top'>
            <td bgcolor='#E9E9E9' class='header1'>Email</td>
            <td class='text'>".$row_rsOrder['Email']."</td>
            <td bgcolor='#E9E9E9' class='header1'> </td>
            <td class='text'> </td>
            <td bgcolor='#E9E9E9' ><span class='header1'>Order Date</span></td>
            <td class='text'>".makeDateTime($row_rsOrder['OrderDate'], '%#d %B %Y', true)."</td>
          </tr>
          <tr valign='top'>
            <td bgcolor='#E9E9E9' class='header1'>Shipping Address</td>
            <td class='text'><p>".$row_rsOrder['Address']."</p>
              <p>".$row_rsOrder['Town']."</p>
              <p>".$row_rsOrder['PostCode']."</p>
              <p>".$row_rsOrder['Country']."</p>
              <p> </p></td>
            <td> </td>
            <td> </td>
            <td colspan='2' align='right' valign='bottom'><span class='header'> ORDER TOTAL:".DoFormatCurrency($row_rsOrder['Total'], 2, ',', '.', '£ ', '')."<br />
              </span><span class='text'>Shipping:".DoFormatCurrency($row_rsOrder['Shipping'], 2, ',', '.', '£ ', '')."</span><span class='header'><br />
            </span></td>
          </tr>
          <tr valign='top'>
            <td bgcolor='#E9E9E9' class='header1'>Product ID</td>
            <td bgcolor='#E9E9E9' class='header1'>Product Description</td>
            <td bgcolor='#E9E9E9' colspan='2' class='header1'>Size</td>
            <td bgcolor='#E9E9E9' ><span class='header1'>Quantity</span></td>
            <td bgcolor='#E9E9E9' align='right'><span class='header1'>Price</span></td>
          </tr>
          <?php do { ?>
          <tr valign='top'>
            <td class='text'>".$row_rsOrder['ProductID']."</td>
            <td class='text'>".$row_rsOrder['Product'].','.$row_rsOrder['catname']."</td>
            <td colspan='2' class='text'>".$row_rsOrder['UnitSize']."</td>
            <td><span class='text'>".$row_rsOrder['Quantity']."</span></td>
            <td align='right' class='text'>". DoFormatCurrency($row_rsOrder['UnitPrice'], 2, ',', '.', '£ ', '')."</td>
          </tr>
          <?php } while ($row_rsOrder = mysql_fetch_assoc($rsOrder)); ?>
            <tr valign='top'>
            <td class='text'> </td>
            <td class='text'> </td>
            <td colspan='2' class='text'> </td>
            <td> </td>
            <td> </td>
          </tr>
        </table>
    </body>
    </html>
            // Always set content-type when sending HTML email
            $headers = "MIME-Version: 1.0" . "\r\n";
            $headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
            $headers .= 'From: company name <[email protected]>' . "\r\n";
            $send = mail($to, $subject, $message, $headers);

    Yes, ALL product information in the database were retrieved and sent to the email. Only 3 products for testing purposes.
    I just tested it down to the do-while loop. The html table code after that is missing.
    You have to bare in mind this is a crude test. The database set up query is not as complex as yours is so that may be why its working but certainly breaking up the 'message' is the way to go. I may try and get the products from another table tomorrow if I have time to test.
    The html code and column database names are the same as you have. the recordeset is 'rsOrders' instead of 'rsOrder' that you used,
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    mysql_select_db($database_conDonations, $conDonations);
    $query_rsOrders = "SELECT * FROM orders";
    $rsOrders = mysql_query($query_rsOrders, $conDonations) or die(mysql_error());
    $row_rsOrders = mysql_fetch_assoc($rsOrders);
    $totalRows_rsOrders = mysql_num_rows($rsOrders);
    //emailer
        // Email new tenant information
    $to = '[email protected]';// . ',' . '$row_rsOrder["Email"]';
            //$to = $row_rsOrder["Email"];
    $subject = "Your Order Details";
    $message = "
    <html>
    <head>
    <title>Dear ".$row_rsOrders['FirstName']." please see your Order Details Below</title>
    </head>
            <body>
    <img src=\"http://www.website.com/images/logoBLPP.jpg\" alt=\"\" />
    <h2>Your B Order".$row_rsOrders['OrderID']."</h2>
    <table width='800' border='0' cellspacing='0' cellpadding='0'>
    <tr><td><p>Thank you for shopping  below are you details of the order you have recently placed. If you have any questions please contact us</p>
    <br />
    </a></p>
    <tr><td></td></tr></table>
    <table width='980' border='1' cellspacing='0' cellpadding='10'>
          <tr valign='top'>
            <td bgcolor='#E9E9E9' class='header1'>Customer Name</td>
            <td class='text'>".$row_rsOrders['FirstName']."</td>
            <td bgcolor='#E9E9E9' class='header1'>Order ID</td>
            <td bgcolor='#E9E9E9' class='text'>".$row_rsOrders['OrderID']."</td>
            <td bgcolor='#E9E9E9' class='header1'>Order Status</td>
            <td class='text'>".$row_rsOrders['TransactResult']."</td>
          </tr>
                             <tr valign='top'>
            <td bgcolor='#E9E9E9' class='header1'>Email</td>
            <td class='text'>".$row_rsOrders['Email']."</td>
            <td bgcolor='#E9E9E9' class='header1'> </td>
            <td class='text'> </td>
            <td bgcolor='#E9E9E9' ><span class='header1'>Order Date</span></td>
            <td class='text'>".$row_rsOrders['OrderDate']."</td>
          </tr>
                            <tr valign='top'>
            <td bgcolor='#E9E9E9' class='header1'>Shipping Address</td>
            <td class='text'><p>".$row_rsOrders['Address']."</p>
              <p>".$row_rsOrders['Town']."</p>
              <p>".$row_rsOrders['PostCode']."</p>
              <p>".$row_rsOrders['Country']."</p>
              <p> </p></td>
            <td> </td>
            <td> </td>
            <td colspan='2' align='right' valign='bottom'><span class='header'> ORDER TOTAL:".$row_rsOrders['Total']."<br />
              </span><span class='text'>Shipping:".$row_rsOrders['Shipping']."</span><span class='header'><br />
            </span></td>
                                      </tr>
          <tr valign='top'>
            <td bgcolor='#E9E9E9' class='header1'>Product ID</td>
            <td bgcolor='#E9E9E9' class='header1'>Product Description</td>
            <td bgcolor='#E9E9E9' colspan='2' class='header1'>Size</td>
            <td bgcolor='#E9E9E9' ><span class='header1'>Quantity</span></td>
            <td bgcolor='#E9E9E9' align='right'><span class='header1'>Price</span></td>
          </tr>";
                            ?>
    <?php do { ?>
    <?php $message .="  <tr valign='top'>
            <td class='text'>".$row_rsOrders['ProductID']."</td>
            <td class='text'>".$row_rsOrders['Product']."</td>
            <td colspan='2' class='text'>".$row_rsOrders['UnitSize']."</td>
            <td><span class='text'>".$row_rsOrders['Quantity']."</span></td>
            <td align='right' class='text'>".$row_rsOrders['UnitPrice']."</td>
          </tr>";
                            ?>
    <?php } while ($row_rsOrders = mysql_fetch_assoc($rsOrders)); ?>
    <?php $message .="
    </body>
    </html>";
            // Always set content-type when sending HTML email
            $headers = "MIME-Version: 1.0" . "\r\n";
            $headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
            $headers .= 'From: company name <[email protected]>' . "\r\n";
            $send = mail($to, $subject, $message, $headers);
    mysql_free_result($rsOrders);
    ?>

  • Help Please Repeat Region not repeating all records only repeating 7 records

    Hi all,
    Please can you advise what's going on here - I'm building an
    ASP SQL site and all was going well until my colleague pointed out
    that the repeat region is not repeating all records as i've coded
    it to using Dreamweavers Repeat region SB, it appears to be
    defaulting to 7 repeats?????? I'm completely stuck as to why this
    is - any help would be appreiated - I've attached the code -
    The recordsets that i'm trying to repeat all on are -
    menuone
    livesubject
    ArchiveSubject
    Thanks for the help

    Worry not i solved this problem, it's the thing about cutting
    and pasting server behaviours in Dreamweaver MX 2004 - never works
    properly - is CS3 any better??? a True review please --
    Thanks

  • Template editable region not working

    I am using DW2004.  I have a template with a number of editable regions.  One region is causing me problems.  When I apply the template to a page, the BeginEditable and EndEditable tags become editable themselves.  Trying to save the page causes errors about saving changes to regions that cannot be edited.
    The template has this editable region:
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!--MainText-->
    <div id="MainText">
          <div align="left">
    <!-- TemplateBeginEditable name="MainText" -->
            Main Text
    <!-- TemplateEndEditable -->
        </div><!-- Align text left -->
    </div><!-- MainText-->
    MainText is a CSS style
    #MainText{float:right; width:565px; margin: 0 0 0 0; background-color:#ffffff;}
    In the document after the template is applied, I get the following.
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!--MainText-->
    <div id="MainText">
      <div align="left">
    <!-- #BeginEditable "MainText" -->
      <table width="329" border="0" cellpadding="10">
    Problem is the <!-- #BeginEditable "MainText" --> can be changed.  If I do a return after the "-->" the tag is no longer able to be changed.  Same with the end editable tag.  As soon as I go back to Design view, the code changes to become editable again.
    At the moment I have around 150 screwed up pages after running a template update.  Can anyone help?

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html><!-- #BeginTemplate "/Templates/tem_gen_pp.dwt" --><!-- DW6 -->
    <head>
    <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Title -->     
    <!-- #BeginEditable "doctitle" -->
    <title>Project interviewing techniques white paper</title>
    <!-- #EndEditable -->
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Meta Info -->     
    <!-- #BeginEditable "MetaInfo" -->
    <meta name="description" content="White Paper on Project Documentation">
    <meta name="keywords" content=" project perfect, project management, project manager, project, project consulting, project training, Sydney, Australia, project management white paper, ">
    <meta name="robots" content="index,follow">
    <!-- #EndEditable -->
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- External Files -->
    <link href="css/standard.css" rel="stylesheet" type="text/css">
    <SCRIPT LANGUAGE="JavaScript" SRC="css/standard_javascript.js"></SCRIPT>
    </head>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Other Scripts -->
    <!-- #BeginEditable "OtherScripts" -->
    <!-- #EndEditable -->
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
        <!-- #BeginEditable "Head" -->
    <!-- #EndEditable -->
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <body>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Wrapper to centre the page -->
    <div id="wrapper">
    <div id="center">
    <table width=800px height="84" border="0" cellpadding="5" cellspacing="0" bgcolor="#3333FF">
        <tr>
          <td height="84" width="8%"> </td>
          <td width="3%" bgcolor="#000099"> </td>
          <td width="9%" bgcolor="#FFFFFF"><img src="images/logo/PP_P_only.jpg" width="84" height="84"></td>
          <td width="2%"></td>
          <td width="60%" height="84" valign="top"><br>       
              <span class="style12 ">PROJECT </span>
            <span class="style12 "><strong>PERFECT</strong></span><BR>       
            <span class="style13">                 Project Management Software</span><br>                                <span class="style14">                                                       Specialists  in Project Infrastructure</span>
          </td>
          <!-- Image top right -->         
          <td height="84" width="18%"> 
            <!-- #BeginEditable "Title" -->
            <div align="center"><a name="top"></a><img src="images/titles/title_free_info.gif" width="115" height="80"></div>
          <!-- #EndEditable -->     
            </td>
        </tr>
      </table>
    </div><!-- Center -->
    <div id="Navigation">
    <fieldset> <legend><b>Menu</b> </legend>
    <table width="195" border="0" cellpadding="0" cellspacing="0" bordercolor="#000000" bgcolor="#FFFFFF" >
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Home Page -->
        <tr>
          <td>
            <a href="index.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image17','','images/miscellaneous/homeon.jpg',1)"><img src="images/miscellaneous/homeoff.jpg" alt="Project Management Software Home Page" name="Image17" width="140" height="35" border="0"></a> </td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Subscribe -->     
        <tr>
          <td  bgcolor="#FFFF00"><div align="center" class="style15"><strong>Sign up for our newsletter. Hear about new Project Management White Papers.<br>
                <br>
            When you subscribe you can download a free eBook<br>
            <br>
    &quot;The Project Managers Guide to Creating and Managing Requirements&quot;       
                </strong></div>
            <p align="center"><a href="http://projectperfect.com.au/mailman/listinfo/subscribers_projectperfect.com.au">Click Here to Join </a>       
            <p>
            </td>
        </tr>
        <tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- RSS -->     
    <td valign="top"> 
          <h5 align="center" class="style4"><a href="rss/rss_news.xml" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image15','','images/miscellaneous/xml.gif',1)"><img src="images/miscellaneous/rss.gif" alt="RSS News Feed" name="Image15" width="36" height="14" border="0"></a></h5></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!--PA Home Page -->
        <tr>
          <td valign="top"><a href="pa.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('project-management-software','','images/miscellaneous/pmsoftwa reon.jpg',1)"><img src="images/miscellaneous/pmsoftwareoff.jpg" alt="Project Management Software" name="project-management-software" width="140" height="35" border="0"></a></td>
        </tr>
        <tr>
           <td width=165px ><h5>              <a href="pa_download_enq.htm">&gt;Download 30 day trial </a><br>
                <a href="pa.htm">&gt;General Info</a><br>
                <a href="pa_cost_justification.htm">&gt;Cost Justification</a> <br>
                <a href="pa_faq_buyers.htm">&gt;FAQ for PA Buyers</a><br>
                <a href="pa_pricing.htm">&gt;Pricing</a><br>
                <a href="http://www.projectperfect.com.au/catalog/index.php/cPath/21">&gt;Buy Now</a></h5></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Method H Home Page -->
        <tr>
          <td valign="top"><a href="method_h.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('business-analysis-software','','images/miscellaneous/basoftwar eon.jpg',1)"><img src="images/miscellaneous/basoftwareoff.jpg" alt="Business Analysis Software" name="business-analysis-software" width="140" height="35" border="0"></a></td>
        </tr>
        <tr>
          <td width=165px><h5>       
              <a href="method_h.htm">&gt;&quot;Method H&quot; General Info</a><br>
            <a href="http://www.projectperfect.com.au/catalog/index.php/cPath/22">&gt;Pricing</a><br>
            <a href="http://www.projectperfect.com.au/catalog/index.php/cPath/22">&gt;Buy Now</a></h5></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Free Stuff -->    
        <tr>
          <td valign="top"><a href="services.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('project-management-white-papers','','images/miscellaneous/whit epaperon.jpg',1)"><img src="images/miscellaneous/whitepaperoff.jpg" alt="Project Management white papers, links and free stuff" name="project-management-white-papers" width="140" height="35" border="0"></a></td>
        </tr>
        <tr>
          <td width=165px><h5>       
                  <a href="wp_index.php">&gt;White Paper Index</a><br>
                <a href="student.htm">>PM for Kids </a><br>
                <a href="RM3/index.php">&gt;Resources</a></h5>
          </td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Consulting -->     
        <tr>
          <td valign="top"><a href="consult_train.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('consulting','','images/miscellaneous/serviceson.jpg',1)"><img src="images/miscellaneous/servicesoff.jpg" alt="Project Infrastructure Consulting Services" name="PM Services" width="140" height="35" border="0"></a></td>
        </tr>
        <tr>
          <td width=165px><h5>       
                  <a href="consult_train.htm">&gt;Consulting</a><br>
                <a href="microsoft-access-development.htm">&gt;Microsoft Access Development</a><br>
                <a href="assessment.htm">&gt;PM Assessment</a></h5></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Blog -->     
        <tr bgcolor="#FFFFFF">
          <td valign="top"><a href="blog/index.php" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image16','','images/miscellaneous/blogon.jpg',1)"><img src="images/miscellaneous/blogoff.jpg" alt="Project Management Blog" name="Image16" width="140" height="35" border="0"></a></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Contact -->     
        <tr>
          <td valign="top">  
          <a href="contact_index.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image18','','images/miscellaneous/contactuson.jpg',1)"><img src="images/miscellaneous/contactusoff.jpg" alt="Contact Project Perfect" name="Image18" width="140" height="35" border="0"></a></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Search --> 
        <tr>
          <td valign="top">  
          <a href="search.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image19','','images/miscellaneous/searchon.jpg',1)"><img src="images/miscellaneous/searchoff.jpg" alt="Search Project Perfect site" name="Image19" width="140" height="35" border="0"></a></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Contents --> 
        <tr>
          <td height="2" valign="top">  
          <a href="contents.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('contents','','images/miscellaneous/contentson.jpg',1)"><img src="images/miscellaneous/contentsoff.jpg" alt="Contents of Project Perfect web site" name="contents" width="140" height="35" border="0"></a></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Spread the word -->
          <tr>
            <td><a href="cgi-bin/birdcast.cgi" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('tell-a-friend','','images/miscellaneous/tellafriendon.jpg',1)" ><img src="images/miscellaneous/tellafriendoff.jpg" alt="Tell a friend about project perfect" name="tell-a-friend" width="140" height="35" border="0"></a></td>
          </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
        <!-- Generic Ad for PA -->
          <tr>
            <td><img src="images/miscellaneous/Ver4.jpg" width="200" height="250"></td>
          </tr>
    <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- PM Opininons Ad -->   
         <tr>
          <td height="2" valign="top" bgcolor="#FFFFCC"><fieldset>
            <p align="center"><a href=http://www.project-management-opinions.com/index.php?option=com_mtree&task=viewlink&link_i d=653 ><img src=
                      "http://www.project-management-opinions.com/rate_us_14.jpg" alt="Rate us at PM Opinions!" title="Rate us at PM Opinions!" vspace="5" width="88" border="0" height=                  "65" hspace="5"></a> </p>
          </fieldset></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Method 123 -->
        <tr>
          <td height="2" valign="top"><a href="http://www.mpmm.com/project-management-software-products.php?AID=$AffiliateIDN$"><a href=                                "http://www.mpmm.com/index.php?AID=070754 "><img src="http://www.mpmm.com/images/banners/logo-160x50.gif" width="160" height="50" border="0" alt=                                "Project Management Methodology, Project Management Process, Project Management Methodologies"></a></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Adspace-->
        <tr>
          <td height="2" >
        <!-- #BeginEditable "adspace" -->
         <p>
        <!-- #EndEditable -->
          </td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- RSS Widget -->   
        <tr>
          <td valign="top"><script type="text/javascript" src="http://widgetserver.com/syndication/subscriber/InsertPanel.js?panelId=9bd60456-9247-49e5-9 463-5da9e1871c2f"></script>                           <noscript>Get great free widgets at <a href="http://www.widgetbox.com">Widgetbox</a>!</noscript></td>
        </tr>
    <!-- Blank Cell -->   
        <tr>
          <td valign="top"> </td>
        </tr>
      </table>   
    </fieldset>
    </div><!-- Navigation -->
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!--MainText-->
    <div id="MainText">
          <div align="left">
    <!-- #BeginEditable "MainText" -->
      <table width="329" border="0" cellpadding="10">
        <tr>
          <td width="305" height="27"><font size="-2"><a href="index.htm">Home</a></font><font size="-2">- </font><font size="-2"><a href="wp_index.php">White Paper Index</a></font></td>
          </tr>
      </table>
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td width="75%"><h1 align="center">Project Interviewing Techniques </h1>
          </td>
          <td width="25%"><div align="center">First published March 08 <br>
          </td>
        </tr>
        <tr>
          <td width="75%"><div align="center">
              <h4>Neville Turbit - Project Perfec</h4>
          </div></td>
          <td width="25%"><div align="center"><b>Rating</b></div></td>
        </tr>
        <tr>
          <td width="75%"><div align="center"><font size="-1"><a href="downloads/Info/info-project-interviewing-techniques.pdf">(Download pdf version)</a></font></div></td>
          <td width="25%"><div align="center">
            <?php
    $topic="interv";
    $display="stars";
    require "/home/projectp/public_html/b3r/b3_rating/b3_rating.php";
    ?>
          </div></td>
        </tr>
      </table>
      <h2> Overview</h2>
      <p> <span class="style15"><a href="pa.htm"><img src="images/pa_general/pa_advt_2.gif" alt="Get Organised with Project Administirator Software" width="250" height="150" border="0" align="right"></a></span>As a Project Manager, it is inevitable you will have to carry out project interviews. They might range from interviewing a candidate for a project team role, to interviewing a Sponsor about their expectations on a project. Rarely are people given training on interviews. It is just expected that like breathing, it comes naturally. </p>
      <p>Nothing could be further from the truth. Interviewing is a technique, and as such it needs to be taught. Some people are naturals and some struggle. If you doubt there is skill involved, turn on your TV and watch a professional interviewer on a current affairs type program. In this article, we attempt to cover a few of the basics that will make you a better interviewer.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>My Experiences</h2>
      <p>Many years ago I took over a role as Marketing Manager in a financial services organisation. The week I arrived, it became evident that the company had a big hole in their investment portfolio and investors were about to loose lots of money. If I had known before, I might not have taken the job. I was to suddenly have to face the media and break the news. I had never thought much about being interviewed in the past but suddenly it became a significant concern. </p>
      <p>The company called in a specialist who would prepare me over a number of days to handle interviews. In our first mock interview he had me blabbering nonsense in about a minute. We then went back to basics and he spent a week teaching me about interviewing techniques. By the end of the week I was confident to face the media and get my message across in a way that did not cause a run on the institution, and gave investors confidence that if they stayed with the organisation, within a year their losses would be recouped. In fact the majority did stay, and they did get their money back.</p>
      <p>While I was on the other side of the fence (the interviewee), I also had to learn more about interviewing than I ever expected there was to know. Here is a simple thing I was taught in the first hour or so. You can see it on TV every night. Invade personal space. </p>
      <p>A reporter on TV who is standing beside a person being interviewed has to stand close so they both fit on the screen. Typically this involves being within less than half a metre (about a foot) from the person. You can use this to your advantage with someone who has not had the benefit of media training to make them feel uncomfortable. </p>
      <p>Try it on a colleague. Ask them an awkward question while standing up close to them. You can see them squirm. Ask the same question across the room, and they may show mild discomfort but nothing like the level when you are up close to them. Also see what happens when the reporter is trying to make the person comfortable. They move further away. In fact they may want to make them relax by putting some space between them before getting up close and personal for the killer questions.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Open and Closed Interviews</h2>
      <p>Interviews can be either &ldquo;Open&rdquo; or &ldquo;Closed&rdquo;. Usually interviews are a mixture of both. We will cover how each type of interview is carried out, and the pros and cons of &ldquo;Open&rdquo; versus &ldquo;Closed&rdquo;. Managing an Interview around &ldquo;Open&rdquo; and &ldquo;Closed&rdquo; questions is a key skill of the interviewer.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Definition - Open and Closed Questions</h2>
      <p>An open interview is one where questions are not specific. They are open ended and designed to allow the person to cover a broad range of topics. As an example</p>
      <p>&ldquo;Tell me about sales?&rdquo; is an open question.</p>
      <p>&ldquo;What were sales for your territory last month?&rdquo; is a closed question.</p>
      <p>The first question may take half an hour to answer. The second will probably take less than a minute.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Why use Open Questions</h2>
      <p>It all depends on what you already know and what you need to know. If you are absolutely confident you are fully briefed on a topic, and there is only one fact you need to determine, a closed question is preferable. On the other hand, if your knowledge is sketchy, and you are not even sure what questions to ask, an open question is the way to go.</p>
      <p>If your washing machine is broken and the repair man tells you the water pump is not working, you are unlikely to ask him is it the shaft is worn, impeller is split or motor burnt out? That would be a closed question and we probably don&rsquo;t have the knowledge to ask it anyway (Incidentally I did make that up. I have no idea what else could break). We would ask an open question such as asking him to explain further. At that point he might explain it is the impeller broken because some coins got through the filter and jammed in the pump. You can then follow up with a more closed question about what that means to the repair and your wallet.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Essence of Open Questions</h2>
      <p>The essence of open interview technique is - </p>
      <ul>
        <li>Question move from the general to the specific and back to the general</li>
        <li>Much is deduced from listening and probing. A simple comment may indicate an important area to be explored</li>
        <li>There are often unforeseen topics raised. Some are relevant and some may not be relevant. You need to filter and quickly dismiss the ones that are not relevant</li>
      </ul>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Tips for Open Questions</h2>
      <p>Here are a number of tips for asking open questions</p>
      <ul>
        <li>Think if the person can answer &ldquo;yes&rdquo; or &ldquo;no&rdquo;. If the answer is they can, it is not an open question</li>
      </ul>
      <ul>
        <li>If the person provides a wandering answer, or a &lsquo;brain dump&rsquo; offer a summary of the question - let the interviewees confirm its accuracy. <br>
    &ldquo;If I understand what you are saying&hellip;&rdquo; </li>
        <li>Allow ample opportunity for &lsquo;and also&rsquo; issues to be raised at the end of the interview or afterwards. People answering open questions tend to remember facts as they go along.</li>
      </ul>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Closed Interviews</h2>
      <p>In using the opposite interview technique, closed interviews, you might ask </p>
      <p>&ldquo;For reporting of sales, I suppose the current breakdown by nation, state and category is OK, isn&rsquo;t it?&rdquo; </p>
      <p>The question presumes and prompts a yes/no answer. It also offers a quick and easy interview, requiring minimum reflection and analysis.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font> </p>
      <h2>Why Closed Questions</h2>
      <p>As mentioned, closed interviews are useful when you are trying to find out one fact. You know precisely the question to ask and know the possible answers. They are also useful in clarifying facts in an open interview. As people cover topics broadly, you might grab one point and want to understand it more clearly. You want to drill down on a particular aspect. </p>
      <p>For example, you asked a question on how effective current sales reports are. The person is giving you a full briefing on all the reports, and the implications. They mention the sales summary report. You might ask a closed question about who receives the report and why they are provided with a copy.</p>
      <p>Closed questions allow you to drill down on a piece of information. It is more likely that closed questions will be more spontaneous than open questions. As the open question draws out the big picture, you want to closely examine bits of the picture with closed questions.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>On the Spot</h2>
      <p>Closed questions can put people on the spot. They can almost sound like they were fired by the prosecutor in a trial. </p>
      <p>&ldquo;When did you first know the project was behind schedule?&rdquo;</p>
      <p>&ldquo;How many resources can you give up to the project?&rdquo;</p>
      <p>The result is the same as in a trial. The person becomes defensive. They try to find a way out of any admission or commitment. A better approach is to use an open question that allows people room to manoeuvre or qualify their answer. You can tighten up the response with closed questions based around the answer.</p>
      <p>&ldquo;How did you first come to suspect the project may not be on track?&rdquo;</p>
      <p>&ldquo;If we need people to assist, how would you be able to help?&rdquo;</p>
      <p>In both cases, an open ended question allows the person to answer without feeling threatened or ambushed. You avoid the instinctive &ldquo;flight or fight&rdquo;.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Information Gathering</h2>
      <p>An interview is an information gathering exercise. That means that you, as the interviewer, are there to direct and listen. You know your own views. The interviewee does not necessarily need to know those views. While you are talking, you are not listening and the purpose of an interview is to find out information from the interviewee. Your role is to keep the ball rolling down the road.</p>
      <p>There is an old saying that when carrying out an interview, you should &ldquo;speak with your ears&rdquo;. In other words, if you say something it should only be because you want to hear the answer.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Making people comfortable</h2>
      <p>A technique used by television interviews is to ask a number of easy questions to relax the person before hitting them with the big one. </p>
      <p>&ldquo;So your name is Jim Brown? Lived here long Jim? Married with 2 kids I hear?&rdquo;</p>
      <p>Then</p>
      <p>&ldquo;So tell us about killing your mother in law with a chain saw.&rdquo;</p>
      <p>Use the relaxing questions to start your interview. If the person is at all apprehensive at the start of an interview, a few questions to loosen them up will help later in the discussion. </p>
      <p>Imaging you are being interviewed and you are feeling a little nervous or unsure about the area under discussion. You might not even know exactly why you are being interviewed. If the person starts by explaining the purpose of the interview then asks a few easily answered questions, you start to relax and will become more likely to assist the person.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Follow the dots</h2>
      <p>An agenda is a great tool, in most circumstances. If you are having a regular review meeting and have a range of regular topics to cover, an agenda is a great roadmap. Point 1; point2; point 3.</p>
      <p>If on the other hand it is an open discussion, an agenda may be an impediment. The interviewee may want to talk about point 1 and 7 because he sees them as related. The discussion is roaming around the topic, and it might not fit into neat compartments. </p>
      <p>In this case use the agenda as a checklist. It does not have to be strictly followed. It can be a list of topics you want to have covered by the end of the interview. As the interview draws to a close, go over the agenda and see if any points still need discussion. It takes some skill to treat an agenda as a set of boundaries rather than a roadmap. If you can develop those skills, the results can be excellent.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Summarising</h2>
      <p>Sometimes people lose the thread of what they are saying. Their mind is wandering down a path and they forget where they have been or are going. It is useful to sometimes stop and summarise what you think has been said. It is double purposed. Firstly it confirms what has been said, and secondly it re-focuses the person.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Active Listening</h2>
      <p>It is a fact that most people want to be listened to. It is important to feel that the person is mentally still with us as we speak. The occasional nod of the head or confirmation of a point helps people feel their comments are valued. Be sure to respond to people or they will stop contributing and want to terminate the interview. Writing things down will assist in convincing people their input is of value.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Answer the Question</h2>
      <p>Watch a politician answer a question, and you will often find they don&rsquo;t answer the question. Techniques include:</p>
      <ul>
        <li>&ldquo;That is a good point but before I answer that let me say&hellip;&rdquo; and of course they never get back to the question</li>
        <li>&ldquo;I want to make three points&hellip;&rdquo; none of which are relevant to the question</li>
        <li>&ldquo;Why would you ask me that?&rdquo; In other words, let&rsquo;s argue about whether you should ask the question rather than try and answer it.</li>
      </ul>
      <p>If you cannot get an answer to a question, try to understand why the person is uncomfortable to provide an answer. It may just be that they forgot the original question and went off on a different track. On the other hand they may well have something they don&rsquo;t want to tell you. Sometimes understanding the reason for not answering in fact answers the question.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Body Language</h2>
      <p>Very few people can hide body language. You do not have to be an expert to read it as we all do to some extent. The eyes looking around the room for an answer; folded arms in a defensive position; legs crossed towards you for trust and away for mistrust. There are many articles on body language and a bit of research can help you read what is not being said.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Independent Interviewer</h2>
      <p>As a consultant I have been amazed some times at what people have told me. Even though it might not be attributed to them in a report, people often say things to an outsider they would never say to their peers.</p>
      <p>I remember one project review where the project manager was scathing in his remarks about the steering committee. He had never expressed his thoughts to them but told me. On investigation I had to agree with his comments and put it in the report. One of the steering committee members came up to me afterwards and asked me why the project manager never expressed his concerns to the committee?</p>
      <p> Sometimes it is useful to use an outside party for interviews as they are usually seen as coming to the situation without a bias. If not independent, they are usually viewed as not coming to support any entrenched point of view. In fact, from a consultant credibility point of view, it does you no good to go into an organisation to reinforce a particular person&rsquo;s case if you do not believe it to be valid. I usually tell people in that situation that I do investigation, not lobbying. </p>
      <p>Several years ago I did a PIR for a company and managed to upset the executive management team by pointing out their lack of support and the failures that followed. Although I had done considerable work for the organisation I was not invited back to do any more work for a couple of years. When I was invited back, I found most of the people I had been critical of had moved on. I was invited back because the person who now wanted work done was impressed with my fairness and impartiality from years before. He had remembered me and now needed the same sort of review done without someone pushing a particular point of view. What goes around comes around.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Conclusion</h2>
      <p><font color="#006666" face="trebuchet ms, arial, helvetica"><a href="pa.htm"><img src="images/pa_general/pa_advert.gif" alt="project management software" width="250" height="100" border="0" align="left"></a></font>It is surprising how many people think an interview is just a fireside chat. The dynamics are far more complex. Think about your own interviewing technique and use some of these ideas to improve it. It is particularly important for your career path as you sometimes have to interview senior managers. The interview is often the only real exposure you have for them to form an opinion of you. If a promotion comes up and you have just bungled your way through a poor interview with a senior manager, your chances of getting a promotion are low. On the other hand if you have managed to direct the interview in a manner that impressed the manager, your chances are enhanced.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <p> 
      <table width="100%" border="1" cellspacing="0" cellpadding="0">
        <tr>
          <td width="70%"><div align="center">
              <p><b>To date,
                    <?php
    $topic="interv";
    $display="total";
    require "/home/projectp/public_html/b3r/b3_rating/b3_rating.php";
    ?>
              people have rated this article. The average rating is
              <?php
    $topic="interv";
    $display="average";
    require "/home/projectp/public_html/b3r/b3_rating/b3_rating.php";
    ?>
              - Add your rating. Just select a rating and click the button. No other information required. </b></p>
              <p><b>Only one rating per person is allowed.</b></p>
          </div></td>
          <td width="30%"><center>
              <p> </p>
            </center>
              <center>
                <?php
    $topic="interv";
    $display="preset1";
    $myimages="no";
    $font="verdana";
    $fontsize="2";
    $category="";
    $autoredirect="yes";
    $myurl="http://yourdomain.com/different.html";
    $checkuser="yes";
    require "/home/projectp/public_html/b3r/b3_rating/b3_rating.php";
    ?>
            </center></td>
        </tr>
      </table>
      <p align="center">
                <a href="#top">Return to the top</a>
          <p align="center">
                <SCRIPT LANGUAGE="JavaScript">
                MM_LastModDate()
                </script> 
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
    </div>
    <!-- #EndEditable -->
        </div><!-- Align text left -->
    </div><!-- MainText-->
    </div>
    <!-- Wrapper -->
    </body>
    <!-- #EndTemplate --></html>

  • Sql  functions in Pl/Sql region not working

    Hi all,
    I have created a pl/sql region like this
    This is the example taken from denes kubicek
    DECLARE
       v_counter     INTEGER         := 0;
       v_line        VARCHAR2 (4000);
       v_rec_in_row  INTEGER         := 6;
    BEGIN
       HTP.prn ('<table>');
       HTP.prn ('<tr>');
       HTP.prn ('<td>');
       FOR c IN
          (SELECT CASE
                     WHEN LOWER(SUBSTR(SUBSTR(NAME,INSTR(NAME,'/')+1), -3, 3)) = 'doc'
                        THEN    '<table>'
                             || '<tr><td><img src="#WORKSPACE_IMAGES#user_green_locked.gif"/></td></tr>'
                             || '<tr><td style="text-align:center">'
                             || SUBSTR(NAME,INSTR(NAME,'/')+1)  name
                             || '</td></tr></table>'
                     WHEN LOWER(SUBSTR(SUBSTR(NAME,INSTR(NAME,'/')+1), -3, 3)) = 'xls'
                        THEN    '<table>'
                             || '<tr><td><img src="#WORKSPACE_IMAGES#user_yellow.gif"/></td></tr>'
                             || '<tr><td style="text-align:center">'
                             || SUBSTR(NAME,INSTR(NAME,'/')+1) name
                             || '</td></tr></table>'
                    WHEN LOWER(SUBSTR(SUBSTR(NAME,INSTR(NAME,'/')+1), -3, 3)) = 'ppt'
                        THEN    '<table>'
                             || '<tr><td><img src="#WORKSPACE_IMAGES#user_yellow.gif"/></td></tr>'
                             || '<tr><td style="text-align:center">'
                             || SUBSTR(NAME,INSTR(NAME,'/')+1) name
                             || '</td></tr></table>'
                   WHEN LOWER(SUBSTR(SUBSTR(NAME,INSTR(NAME,'/')+1), -3, 3)) = 'txt'
                        THEN    '<table>'
                             || '<tr><td><img src="#WORKSPACE_IMAGES#user_yellow.gif"/></td></tr>'
                             || '<tr><td style="text-align:center">'
                             || SUBSTR(NAME,INSTR(NAME,'/')+1) name
                             || '</td></tr></table>'
                   WHEN LOWER(SUBSTR(SUBSTR(NAME,INSTR(NAME,'/')+1), -3, 3)) = 'gif'
                        THEN    '<table>'
                             || '<tr><td><img src="#WORKSPACE_IMAGES#user_yellow.gif"/></td></tr>'
                             || '<tr><td style="text-align:center">'
                             || SUBSTR(NAME,INSTR(NAME,'/')+1) name
                             || '</td></tr></table>'
                     ELSE    '<table>'
                          || '<tr><td><img src="#WORKSPACE_IMAGES#user_red.gif"/></td></tr>'
                          || '<tr><td style="text-align:center">'
                          || SUBSTR(NAME,INSTR(NAME,'/')+1) name
                          || '</td></tr></table>'
                  END doc
             FROM con_doc_info)
       LOOP
          v_line := v_line || c.doc || '</td><td>';
          v_counter := v_counter + 1;
          IF v_counter = v_rec_in_row
          THEN
             HTP.prn (v_line);
             HTP.prn ('</td></tr><tr><td>');
             v_line := NULL;
             v_counter := 0;
          END IF;
       END LOOP;
       HTP.prn (v_line);
       HTP.prn ('</td></tr></table>');
    END;but the functions are not working?
    Any idea ? Please help me

    Hi fac
    Database version is 10g
    This sample code is working
    DECLARE
       v_counter     INTEGER         := 0;
       v_line        VARCHAR2 (4000);
       v_rec_in_row  INTEGER         := 6;
    BEGIN
       HTP.prn ('<table>');
       HTP.prn ('<tr>');
       HTP.prn ('<td>');
       FOR c IN
          (SELECT CASE
                     WHEN deptno = 20
                        THEN    '<table>'
                             || '<tr><td><img src="#WORKSPACE_IMAGES#user_green_locked.gif"/></td></tr>'
                             || '<tr><td style="text-align:center">'
                             || ename
                             || '</td></tr></table>'
                     WHEN deptno = 30
                        THEN    '<table>'
                             || '<tr><td><img src="#WORKSPACE_IMAGES#user_yellow.gif"/></td></tr>'
                             || '<tr><td style="text-align:center">'
                             || ename
                             || '</td></tr></table>'
                     ELSE    '<table>'
                          || '<tr><td><img src="#WORKSPACE_IMAGES#user_red.gif"/></td></tr>'
                          || '<tr><td style="text-align:center">'
                          || ename
                          || '</td></tr></table>'
                  END emp
             FROM emp)
       LOOP
          v_line := v_line || c.emp || '</td><td>';
          v_counter := v_counter + 1;
          IF v_counter = v_rec_in_row
          THEN
             HTP.prn (v_line);
             HTP.prn ('</td></tr><tr><td>');
             v_line := NULL;
             v_counter := 0;
          END IF;
       END LOOP;
       HTP.prn (v_line);
       HTP.prn ('</td></tr></table>');
    END;This code is working good images are displayed as per the deptno.
    I need to display images for the documents which i have uploaded and stored in a file
    I am taking the name and in that last three letters alone and according to that pictures should appear
    My previous code while running no output is there.
    Hope I am more clear now
    bye
    Srikavi

  • Spry menu bar not working in Contribute

    I have created a site in Dreamweaver which my client will
    edit in Contribute. However when i view the site in Contribute -
    the Spry menu bar doesn't show up like it did in Dreamweaver.
    instead it shows up like a text list. Has anyone run into this
    issue before? if so how did you resolve it. Thank you.

    Although, I did download IE-Tester which allows you to test in different IE versions and it does not seen to work there?
    IE-tester shows that you have got a problem 0n line #102. Unfortunately, the tester cannot be relied upon reflecting the correct line number. There is a problem on line #27 where there is no space in front of "type="
    <script src="http://labs.adobe.com/technologies/spry/widgets/menubar/SpryMenuBar.js"type="text/javascript"></script>
    and line #86 where there is no space before "rel="
    <link href="http://labs.adobe.com/technologies/spry/widgets/menubar/SpryMenuBarVertical.css"rel="stylesheet" type="text/css" />
    Now for my next problem, and if I can get this working I should be in fairly good shape. I had made some formatting changes (centered the menu bar, and made some color changes) See below, however those are now not working..Normally, when a question has been answered, it is marked as correct and any new questions are asked in a new post.
    However, you caught me in a good mood, just signed contracts for three new projects one as far away as Switserland.
    Lines #27 and #28 look like
    <script src="http://labs.adobe.com/technologies/spry/widgets/menubar/SpryMenuBar.js"type="text/javascript"></script>
    <link href="http://labs.adobe.com/technologies/spry/widgets/menubar/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
    Lines #84 and #86 look like
    <script src="http://labs.adobe.com/technologies/spry/widgets/menubar/SpryMenuBar.js" type="text/javascript"></script>
    <link href="http://labs.adobe.com/technologies/spry/widgets/menubar/SpryMenuBarVertical.css"rel="stylesheet" type="text/css" />
    This may not confuse the browser, but it is not very conducive. Remove either set of links.
    When I look at SpryMenuBarVertical.css
    change the value of line 16 to auto, has not been done
    starting at line 81, change the highlighted values, has not been done
    So it is no wonder there are no changes.
    Gramps

  • Repeat is not working in music

    any idea as to how to activate repeat in music.  the repeat icon is lit, but not working.  thanks.

    You say the control is lit, I think it should turn black if it is enabled, it should not be white. If it is black, and still not working, quitting the app and try again.
    Go to the home screen first by tapping the home button. Quit/close open apps by e tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus (-) sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • Edit page not working in Contribute

    I have a site that I administer in Contribute, a user called
    today because they are not able to Edit a page. When you click the
    Edit button it just sits there. As the Administrator I try to go
    into the file and I can't get into it either. I even recreated the
    page in Dreamweaver and it is still hanging.
    I looked on the site and there is not a .lck on this file.
    Thank you in advance for any assistance.

    Hi loretta,
    Sorry to hear that you have problems using contribute.
    Can you do the following and let me know:
    What is the version of contribute you are using?
    Which platform are you running on?
    1. Create a new page in contribute as non- admin
    2. Publish the page
    3. Edit the page again
    4. Publish the page. (Does this work?)
    Are you not able to edit any page on the site or is it
    specific to a page only?
    Would it be possible to debug your problem if you can setup
    another sample test site and upload the same roles to that site and
    send me connection keys for adminstrator and non-admin roles?
    You can email me directly at <[email protected]>

  • Jquery show/hide not working in contribute CS5 or CS6

    We use Dreamweaver templates and our users use contribute CS5 or contribute CS6 to edit webpages. We recently added some Jquery code that shows/hides DIVs on the webpage. When our users try to edit this page, the Divs are hidden they are not able to see the content to edit it. Is there a workaround for this?

    Hi motiondude,
    I am having a similar problem with CS6 and show/hide buttons in an interactive PDF. I am having the German CS6 version of InDesign (just as info).
    What my problem is: I have made some sort of „gallery“, where there are small versions of all pictures on the page, and a big version of everyone are on a pile over each other.
    When you click the small „preview“ image I made a show/hide action that it should show the big version of the picture. This worked fine on the first page where I tried this!
    But on the second page with other images it wasn’t working at all. When I opened the PDF in my Acrobat Pro (Version 10.1.7) the buttons did not show up the pictures when I
    clicked them. The first image stayed there.
    I for sure checked my setting several times, everything is fine and correct in the actions and buttons area. In the SWF preview I checked it too, everything should work fine.
    Yes, I know that this preview is just for SWF, but it is a fast checking tool for actions.
    Afterwards I also tried opening the file with the PDF viewer. The problem still was there.
    What „solved“ my problem for now was to make an idml and open the file in CS5. Making an interactive PDF out of the CS5 – and it worked!
    Though I am just at the very beginning of my document, so lets see if CS5 will be my solution until I am finished with it.
    To summ it up, it seems this is really a bug in CS6. I also read here http://forums.adobe.com/message/4482056 that this seems to be a bug. But one in the forum mentioned
    this bug should be fixed with the new release. But this was back in 2012! I have the newest update. But I still have the problem.
    Maybe it will take some time until it is fixed in the German version? I am not sure. It is really annoying.
    I think writing a bug report should be done in this case!

  • Repeat event not working correctly

    Yosemite 10.10.1 (14B25)
    Calendar Version 8.0 (2026)
    I've set up custom repeating events before. I work offshore on a fixed schedule, 6 weeks on 3 weeks off. I always start work on a Wednesday and finish on a Tuesday, I've set these up previously as its the easiest way to see if I'm home for a birthday or event of somesort.
    However, my schedule has just moved after some time off and now when I set up a new event instead of a perfect 9 week cycle, calenar adds some extra days onto the end of repeating cycles, varying days, sometime 1, 2 or 3 extra.
    So, I'm trying to set up my new schedule as follows;
    New event - Work
    Starts - Wednesday 11/02/15
    Ends - Tuesday 24/03/15
    Repeat - Custom, Every 9 weeks on Wednesday
    End Repeat - After 12 times
    Fairly straight forward, my schedule cycle is 9 weeks, so repeat ever 9 weeks on weds, the duration is exactly 6 weeks whilst at work, again fairly straight forward.
    This is where I start getting problems,
    1st repeat event starts on the correct day (15th April), but the end of the event is 2 days late on 28th June instead of 26th June.
    2nd repeat event is the same, starts on the correct day but ends two days late.
    3rd repeat event starts correct but ends 3 days late
    4th repeat event starts correct but ends 3 days late
    This continues, 3 late, 2 late, 1 late, 2 late etc
    So I change it to repeat every 63 days, but still get the same error in the length of event?
    Can anybody help or is it a flaw in the new version of calendar? I've tried using my iPhone to create the event in the same way but get the same results, extra days on the end?
    Thanks

    If you do not have the code for the button, and the button, present throughout your timeline travels, then you need to assign the code anytime you leave and return to whatever section(s) it is in.  The code only executes in the frame it is in even though you might extend it along the timeline.

  • Editable regions not working in code view

    I am working in DW MX, Windows XP. I am making changes to
    current pages and have also created a new template page (based on
    an existing template) for additional pages.
    All of my pages are based on templates, which have editable
    regions. For some reason when I try to make a change in the code
    view I get this error:
    "Making this change would require changing code that's locked
    by a template or a translator. The change will be discarded."
    However, I do not get this message when I make changes in the
    design view.
    I am definitely attempting to make changes in the editable
    region so I'm stumped why this is suddenly happening.
    Any ideas?
    my page:
    http://www.westianet.com/internet/secureit/secureit.htm

    Pleaes restate your problem's symptoms, and include some code
    to
    demonstrate.
    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
    ==================
    "Cole_Marie" <[email protected]> wrote in
    message
    news:en3lqg$3jk$[email protected]..
    > Did you ever resolve this issue. I'm having the same
    problem. Using DW8
    > , XP.

  • IOS7.1.1 messages Repeat Alerts not working

    Hi - Since updating to iOS7.1.1 the repeat message alert for SMS /TXT's is no longer working. I have checked my settings which look unchange
    Notification Center > Messages > Repeat Alerts > 10 times
    Has anyone else had the same issue or no a solution
    Thanks 

    is irrelevant that it was newer called "live"
    No, he asked for "LIVE", both in the title and first line of the first post.  And no one still knows exactly what he meant, including you.  I can only infer the the real meaning of "live" meaning real time,  in the real world.  Also iIn this world, YOU defined it as "360 degree panorama", which also never existed on iPhones
    There is absolutely no reason to deny that this feature existed,
    It didn't exist, both as the OP and yourself described it.  What did briefly existed - the ability to use and iPhone panorama photo for wallpaper - is not what either of you described and was wisely omitted in the released iOS. There were many complaints about it.
    And if you mean it would break the nda to discuss this, the whole thread sould be removed!
    As it should...

  • Search by Date in Query Region Not working

    Hi,
    I have created a custom page with query region -autocustomization construction mode.
    This query region has a vo which contains one of the fields is requestedDate of date datatype.
    Requirement is :
    I need to fetch all records..based on requestDate (also)in search panel. But i am getting all the records in the table..
    Please advise me to solve this issue..
    Thanks in advance,
    Pradeep

    Pradeep
    You should check and compare the date field mapping with other fields that you have done the correct mapping like other fields , because there should be no issue if mapping is correct, is this entire custom page created by you ? or are you doing changes in existing custom page ?
    thanks
    Pratap

Maybe you are looking for

  • Getting Error In the Routine - While writing Code for the Cross Reference.

    Hi, Getting Error In the Start Routine - While writing Code for the Cross Reference from the Text table ( /BIC/TZMDES with Fields /BIC/ZMDES(Key),TXTSH ) Getting Error as [ E:Field "ZMDES" unknown ]. Transformation : IOBJ ZPRJ3(Source) -> IOBJ ZPRJC

  • My sound is not working anymore on my mac book pro

    My sound on my mac book pro is not working at all anymore. I used it in the morning and it worked just fine and i came back at night and my sound was gone. I checked my output settings, raised the volume up all the way, made sure that i wasn't on mut

  • Sales Order Creation using LSMW IDOC method.. ( Custome Interface)

    Hi ABAP'rs,                  Please provide me LSMW steps for creating Sales Order using IDOC method.                         Thanks and Regards,                                               Param.

  • Sawtooth DVI to HDTV

    I have a HDTV with DVI input. I have Sawtooth 10.4 (upgraded to 1.8Ghz, 1G RAM) with the following video card. Do I just hook the DVI output to the HDTV or is there more? ATY,Rage128Pro: Chipset Model: ATY,Rage128Pro Type: Display Bus: AGP Slot: SLOT

  • Duplicate alias during ERPi metadata load

    Hello All, I am trying to load metadata to Hyperion Planning using ERPi from EBS GL. However, many of our descriptions may be same across accounts or other dimensions. In Planning, we generally combine member name plus description to create a unique