Dynamic codes

Hi,
I'm havinging these
p_rt in out pkg_my.rec_set) is
begin
     open p_rt for v_sql||v_sql2
     using v_seq, to_date(v_date,'yyyymmddhh24misssss'), v_my_NAME;
and have got this
PLS-00455: cursor 'P_RT' cannot be used in dynamic SQL OPEN statement
how to make it fine?
Regards,
huamin

As already explained, you need to give us more detail.
Why are you wanting to returns a record set, rather than just return a ref cursor (sys_refcursor)?
e.g. The following function returns a ref cursor to the calling code (in my case the calling code is SQL*Plus)...
SQL> ed
Wrote file afiedt.buf
  1  create or replace function get_dept(p_deptno in number) return sys_refcursor is
  2    v_rc sys_refcursor;
  3  begin
  4    open v_rc for 'select * from emp where deptno = :1' using p_deptno;
  5    return v_rc;
  6* end;
SQL> /
Function created.
SQL> var x refcursor;
SQL> exec :x := get_dept(20);
PL/SQL procedure successfully completed.
SQL> print x;
     EMPNO ENAME      JOB              MGR HIREDATE                   SAL       COMM     DEPTNO
      7369 SMITH      CLERK           7902 17/12/1980 00:00:00        800                    20
      7566 JONES      MANAGER         7839 02/04/1981 00:00:00       2975                    20
      7788 SCOTT      ANALYST         7566 19/04/1987 00:00:00       3000                    20
      7876 ADAMS      CLERK           7788 23/05/1987 00:00:00       1100                    20
      7902 FORD       ANALYST         7566 03/12/1981 00:00:00       3000                    20
SQL>It is SQL*Plus that get's the ref cursor back and then does the fetch on that cursor to retrieve the records and display them using it's "print" command.
In another language, it would get the ref cursor and then process the rows by fetching them as appropriate for that language.
You don't need the function/procedure to fetch all the data into some sort of type structure and try and pass it all back.

Similar Messages

  • Writing Dynamic code in smart form

    Hi All,
       I have a issue on Smart form . the smart form is customized view of bbp_po(srm) for po(purchase order) details  in that in a secoundary window where vedor adress is displaying .In the first line of the address name1 and name2 are displaying now my need is if the name1+name2 is more than 47 chars then i need  to shift name2 to next line how can i do this dynamic code plase i need it urgently .
    Thanks
    channu sajjanar

    Hi
    Write code yto count the no of character, if it is more than 47 then display NAME2 in second line else write in first line.
    for second line put conditionin text element  NAME2 <> space.
    This will work
    Thanks
    Shiva

  • How to write the dynamic code for RadioGroupByKey and Check Boxes?

    Hi,
    Experts,
    I have created a WD ABAP application in that i have used RadioGroupByKey and CheckBox Ui elements but i want how to write the dynamic code to that i want to display male and female to RadioGroupByKey and 10  lables to check boxs.
    Please pass me some idea on it and send any documents on it .
    Thanks in advance ,
    Shabeer ahmed.

    Refer this for check box:
    Do check :
    bind_checked property is bind to a node with cardinality of 1:1
    CHECK_BOX_NODE <---node name
    -CHECK_BOX_VALUE <--attribute name of type wdy_boolean
    put this code under your WDDOMODIFYVIEW:
    DATA:
    lr_container TYPE REF TO cl_wd_uielement_container,
    lr_checkbox TYPE REF TO cl_wd_checkbox.
    get a pointer to the RootUIElementContainer
    lr_container ?= view->get_element( 'ROOTUIELEMENTCONTAINER' ).
    lr_checkbox = cl_wd_checkbox=>new_checkbox(
    text = 'WD_Processor'
    bind_checked = 'CHECK_BOX_NODE.CHECK_BOX_VALUE'
    view = view ).
    cl_wd_matrix_data=>new_matrix_data( element = lr_checkbox ).
    lr_container->add_child( lr_checkbox ).
    Refer this for Radiobutton :
    dynamic radio button in web dynpro abao
    Edited by: Saurav Mago on Jul 17, 2009 10:43 PM

  • Servlet with no dynamic code inside jsp pages

    Hello,
              I saw that a servlet is created even if there is no dynamic code inside jsp pages (scriplets & tags). Is it possible to avoid it on bea side ? (I am using portal 8).
              By the way, do you know if is it possible to define apache in order to avoid to send to bea the jsp which have no dynamic code inside ?
              thank you !

    JSP's always generate a servlet on all web containers. Apache/Tomcat is no
              different. If you have static content, make it an HTML page.
              Bill
              "hournon jc" <[email protected]> wrote in message
              news:22255787.1103297053148.JavaMail.root@jserv5...
              > Hello,
              >
              > I saw that a servlet is created even if there is no dynamic code inside
              jsp pages (scriplets & tags). Is it possible to avoid it on bea side ? (I am
              using portal 8).
              >
              > By the way, do you know if is it possible to define apache in order to
              avoid to send to bea the jsp which have no dynamic code inside ?
              >
              > thank you !
              

  • 'Unallowed tags or dynamic code' error on a page without these...

    Hi,
    I've been using InContext Editing for a few sites now and my clients have been very happy with it, but I have a new site that's having problems on just one page.
    http://www.windhampilates.com/index.php
    I've enabled ICE on the text areas below the main photo and nav bar, as I have on other pages. There are a few scripts running on this page, but the only difference on this page from the rest of the site is the rotating image at the top of the page.
    Ironically, I've used this same script on previous sites where I've used ICE and they've worked without any problems. Am I missing something?
    Really and truly appreciate  your help!
    - MaryAnn

    I can login, and try to edit, but the system won't save my changes and gives me the 'unallowed tags or dynamic code' error as the reason why it can't save the changes.
    I tried removing the jquery in the header, but that didn't seem to work:
    http://www.windhampilates.com/index-testjqueryerror.php
    I still can't get the edits to save and it's still giving me the same message.
    The only other non-static elements on the page are the newsletter subscription script and the Facebook link, but I have these on other pages and we can edit those pages without issue.
    Any other ideas?
    Thanks for your help!

  • Running Dynamic Code - Is it possible?

    Hi guys,
    I am interested to know whether there is a way I can run dynamic code in my java program. For example, I want to be able to write java code into a JTextArea and then run that code as like an extension of the program.
    In other words, if I wrote something simple like "System.out.println("Hi");, it would print the work "Hi" in the console as if it were part of the original program.
    Does anyone know if there is a way to do this? Alternatively, is there a way I can call the Javac tool from within a program, thus allowing me to dynamically compile a program.
    Thanks guys,
    WATTO
    [email protected]
    http://www.watto.org

    I think JSP is a variant of such a frame. You can
    execute a code compiling it.JSP is normally compiled into bytecode when it is first loaded by the container.
    beanshell and [url http://www-124.ibm.com/developerworks/projects/bsf]BSF are, I think what the poster is after, on this very frequently asked question :)

  • Dynamic code [i]replacement[/i]

    Hi all,
    I have seen dynamic code replacement used in Tomcat, Eclipse, jEdit, ... but whenever I go to research how to incorporate it into my applications, I just get a bunch of stuff about Erlang, python, and Java ClassLoaders, which if a class is already loaded don't bother reloading it.
    So does anyone know how I can use "Dynamic Code Replacement" not "Dynamic Code Loading"? (I'm doing stuff with Java WebServer Containers)

    IT works a little something like this.
    If you create a classlaoder to load your "replaceable" classes and ensure that your replaceable classes are not in the classpath (or that your classlaoder does not delegate to its parent bit dangerous security wise)). Then your classloader will load your replaceable classes (It will delegate to its parent but its parent will not find them). Then to reload your classes all you have to do is drop all references to your classloader and create a new classloader. It can then load your "repaced" classes.
    Acutally its not quite that simple. If any live references exist to any classes loaded by your classloader then your classloader will not go "out of scope" as those classes will reference the classloader.
    To do it properly takes good design. Take a look at the link RadcliffePike posted for one (pretty complicated) desgin. I believe that tomcat uses trees of classloaders to allow all the weapps to "live" independently of each other while allowing them to use the classes that are in the common/lib directory (shared jar files)
    matfud

  • Private meetings (dynamic codes) AND no lobby for PSTN callers?

    Hi All,
    Is there any way to have private meetings (therefore with dynamic entry codes) AND have PSTN callers bypass the lobby?
    I understand that the option PSTNCallersByPassLobby does not take effect if you are configured for private meetings?  In our scenario, we want private meetings to avoid potential issues with public meetings/static codes and over-running meetings
    etc., but we often have people joining meetings from a cell phone only and we do not to burden users with a PIN.
    I know we have the option to use public meetings/static codes by default and train users to set a dynamic code if the meeting requires it, but this again relies on user behavior.
    Any way we can have the effect of private meetings/dynamic codes AND PSTN Callers bypassing Lobby by default?
    Cheers

    Samuel,
    If you are talking about generating a separate meeting space for each meeting and having PSTN users bypass the lobby then yes - you can do that.   In outlook I have set my Lync meeting options to do just that - create each Lync meeting in a new
    space so each one is unique and back to back meetings don't let everyone join in to the same meeting.  I also have it set to allow PSTN users to bypass the lobby.  It works fine.
    Craig

  • Create dynamic code on a JSF with ADF Faces

    Hi,
    the next is just sample, nothing to production system, but if I can do the sample I can do something to production system.
    Fine.
    let's suppose that I want to create a html link
    in run-time over a JSF page with ADF Faces component.
    I can do that, I did using javascript and Custom tag,
    but the html link is placed out of the body of the page instead of put it over the place that I put it in development-time
    so, now my question is:
    how I can generate dynamic code using ADF FACES component commandButton or any others.
    any suggestion??
    P.D. if you need more info ask me.

    Hello Jeanne.
    You are right, I used <f:verbatim> element to wrap all my non-JSF elements and it work. :)
    so good so far.
    but, dynamic code mean generate code in this case HTML in run-time.
    That is to say: write code HTML just in time I invoke a page.
    That is posible through Custom Tags.
    You create a Custom Tags this tag generate HTML code after to process any Business Logic. then you put the tag in the page that you want to use it
    someting like this:
    <afh:rowLayout halign="center">
    <afh:cellFormat halign="center">
    <ESE-utilities:populateMenu/>
    </afh:cellFormat>
    </afh:rowLayout>
    the just above bold line is my Custom Tag that generate HTML code
    and not work.
    but, if I replace the tag directly using HTML code in the page, for example:
    <afh:rowLayout halign="center">
    <afh:cellFormat halign="center">
    <f:verbatim>
    prueba
    </f:verbatim>
    </afh:cellFormat>
    </afh:rowLayout>
    it work
    so, now my new question is:
    ¿How can I use a Custom Tagthat generate HTML code, and that code have been written inside of my body page?
    Thanks in advantage for your reply.
    Mauricio

  • Display byte array image or ole object in Section through dynamic code?

    To Start I am a Complete Newbe to Crystal Reports. I have taken over a project originally written in VS2003 asp.net using SQL Server 2005 and older version of Crytal Reports. I have moved project to VS2010 and Cryatal Reports 10 still using SQL Server 2005. Have multiple reports (14 to be exact) that display data currently being pulled from database suing a dataset, each report has from 4 to 14 Sections. I have modified database table with two new fields. Field1 contains string data with full path to a scanned document (pdf or jpeg). Field2 holds a byte array of the actual image of the scanned document. I have tested the database and it does infact contain the byte array and can display the image via VB.net code. I can make the report display the scanned image using ole object.
    Now my real question: I need to add a new Section and it should display either the byte array of the scanned image or the actual scanned image (pdf or jpeg) . How can I have it do either of these options via code dynamicly while application is running?

    First; only CRVS2010 is supported on VS2010. You can download CRVS2010 from here;
    SAP Crystal Reports, developer version for Microsoft Visual Studio: Updates & Runtime Downloads
    Developer Help files are here:
    Report Application Server .NET API Guide http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/xi4_rassdk_net_api_en.zip
    Report Application Server .NET SDK Developer Guide http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/xi4_rassdk_net_dg_en.zip
    SAP Crystal Reports .NET API Guide http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_api_2010_en.zip
    SAP Crystal Reports .NET SDK Developer Guide http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_dg_2010_en.zip
    To add the images, you have a number of options re. how to. You even have two SDKs that y ou can use (RAS and CR).
    Perhaps the best place to start is with KB [1296803 - How to add an image to a report using the Crystal Reports .NET InProc RAS SDK|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233393336333833303333%7D.do]. The KB describes how to add images to a report using the InProc RAS SDK, but also references other KBs that use CR SDK.
    Also, don't forget to use the search box in the top right corner of this web page.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Need help with dynamic code generation

    Hi Folks,
    I am trying to dynamically create and execute the following query
    Environment: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0
    DECLARE
    A NUMBER;
    stmt VARCHAR2(200);
         4
         5  CURSOR C1 IS
         6  SELECT TABLE_NAME
         7  FROM DB_MGMT.CTRL_TAB_RETENTION
         8  WHERE RETENTION_PERIOD_IN_MONTHS = 11
         9  AND rownum < 2;
        10
        11  BEGIN
        12  FOR i IN C1
        13  LOOP
        14
        15  -- dbms_output.put_line('Table Name: ' || i.TABLE_NAME);
        16
        17  -- dbms_output.put_line('SELECT min(DT_SKEY), max(DT_SKEY) FROM '||i.TABLE_NAME||' ;');
        18
        19  stmt :='SELECT min(DT_SKEY), max(DT_SKEY) FROM DWH_RSRC_PERF.'||i.TABLE_NAME||';';
        20
        21  dbms_output.put_line(stmt);
        22
        23  execute immediate stmt;
        24  END LOOP;
        25  END;
        26  /I get the following error message
    SQL> @sanity_check
    SELECT min(DT_SKEY), max(DT_SKEY) FROM DWH_RSRC_PERF.FACT_NOK_CELL_SERVICE2_HH;
    DECLARE
    ERROR at line 1:
    ORA-00911: invalid character
    ORA-06512: at line 23Can anybody spot any obvious syntax errors in the above code?
    Thanks in advance
    rogers42

    rogers42 wrote:
    Hi,
    Thanks for the suggestion.
    While getting rid of the ";" helps, but the output of the select statement is not displayed?When you do a SELECT statement in PL/SQL, you have to select the results into variables or arrays.
    Try something like this:
    DECLARE
         CURSOR C1 IS
                       SELECT  TABLE_NAME
                FROM    DB_MGMT.CTRL_TAB_RETENTION
                WHERE   RETENTION_PERIOD_IN_MONTHS = 11
                AND     rownum                  < 2;
         min_dt_skey    NUMBER;
         max_dt_skey    NUMBER;
         stmt            VARCHAR2 (100);
    BEGIN
        FOR i IN C1
         LOOP
            -- dbms_output.put_line('Table Name: ' || i.TABLE_NAME);
            stmt :='SELECT min(DT_SKEY), max(DT_SKEY) FROM DWH_RSRC_PERF.' || i.TABLE_NAME;
            dbms_output.put_line(stmt);
            EXECUTE IMMEDIATE stmt
             INTO min_dt_skey, max_dt_skey;
         dbms_output.put_line (  min_dt_skey   || ' = MIN (dt_skey), '
                        || max_dt_skey   || ' = MAX (dt_skey) for table '
                        || i.table_name
        END LOOP;
    END;

  • Dynamic code generation by system in place of Z program when listcube

    Hi Experts,
    in process chain there is one step attached ABAP program with variant to create a file from 3 cubes and sent it to some other server. one day it was not created any file and did not send to the respective server.
    then i opened the process chain in display mode and opened ABAP program in display mode, by double clicking on one cube i was tried to get the data but the program was changed dynamically in place of original customized program. the report name was 'RSDQ_VIEW_REPORT'.
    please let me know how it was changed the code dynamically?.

    Hi Experts,
    in process chain there is one step attached ABAP program with variant to create a file from 3 cubes and sent it to some other server. one day it was not created any file and did not send to the respective server.
    then i opened the process chain in display mode and opened ABAP program in display mode, by double clicking on one cube i was tried to get the data but the program was changed dynamically in place of original customized program. the report name was 'RSDQ_VIEW_REPORT'.
    please let me know how it was changed the code dynamically?.

  • JNLP and dynamic code

    My applicaton runs via JWS and JNLP. The app relies on Groovy (groovy.codehaus.com) to compile and run some text-processing scripts. End-users input the scripts themselves. When the app invokes a script, the JVM throws an access denied exception for java.lang.RuntimePermission accessDeclaredMembers.
    Our jars are signed by a single authority. The JWS docs seem to indicate that since the jars are signed, our code should run trusted and thus have AllPermissions. Does AllPermissions not include the accessDeclaredMembers RuntimePermission? All other permissions seem to be allowed (read/write local files, access protected system properties, etc.).
    Details: Groovy is a tool for compiling scripts into Java bytecode. This results in a class file which Groovy's script processor dynamically loads via the ClassLoader. The exception occurs as Groovy is using reflection to get the new class' constructor. Here's the stack trace:
    Script Error: access denied (java.lang.RuntimePermission accessDeclaredMembers)
    java.security.AccessControlException: access denied (java.lang.RuntimePermission accessDeclaredMembers)
    at java.security.AccessControlContext.checkPermission(Unknown Source)
    at java.security.AccessController.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkMemberAccess(Unknown Source)
    at java.lang.Class.checkMemberAccess(Unknown Source)
    at java.lang.Class.getDeclaredConstructors(Unknown Source)
    at groovy.lang.MetaClass.<init>(MetaClass.java:141)
    at groovy.lang.MetaClassRegistry.getMetaClass(MetaClassRegistry.java:120)
    at org.codehaus.groovy.runtime.Invoker.getMetaClass(Invoker.java:99)
    at org.codehaus.groovy.runtime.InvokerHelper.getMetaClass(InvokerHelper.java:94)
    at groovy.lang.GroovyObjectSupport.<init>(GroovyObjectSupport.java:61)

    I have more information. I've tried running the application locally (outside Web Start) with the security manager installed (using -Djava.security.manager and -Djava.security.policy VM args).
    After much trial and error, I've found that I can run the entire application (including the script processor) with the following security policies (this is on Linux):
    grant codeBase "file:/my/appdir/-" {
    permission java.security.AllPermission;
    permission java.util.PropertyPermission "*", "read,write";
    permission java.io.FilePermission "<<ALL FILES>>", "read,write,delete";
    permission java.net.SocketPermission "*:5432", "connect";
    permission java.lang.RuntimePermission "*", "";
    Notice I didn't have to add anything special to get Groovy to run. Since the JWS dev guide says that a signed application has AllPermission by default, I think what's happening is that the codebase I'm using to run the Groovy script does not match the codebase in JWS' security policy for my application.
    Is there any way I can find out what this codebase is? Or does anyone have any other ideas on how to solve this?

  • Dynamic code downloading

    Could java interpreter execute ANY classes /or maybe automatically download it first/ remotely from network via HTTP, and not only from local disk? If yes, how this could be done?

    You could certainly download code dynamically, compile and run it with java. There's no problem there.

  • Dynamic code not rendering

    I am working on my first dynamic website in DW CS5.5.  I have already set up the back end successfully, and am working on the presentation.
    The database, recordset and dynamic text are in place, and they test properly, but in neither Live View nor Browser View do the dynamic items appear.  I am also using a Tom Muck extension, Horizontal Looper, but I don't think this is the problem.
    When I was creating the back end, I remember having some similar problems as well, but I seemed to work through them, but I don't remember the "trick".
    I have restarted Apache and MYSQL on xampp, without results.  If anyone can offer advice, thanks much!
    Regards, Ned
    <?php require_once('Connections/sowcs_test.php'); ?>
    <?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;
    $colname_getProducts = "-1";
    if (isset($_GET['prodCategory'])) {
      $colname_getProducts = $_GET['prodCategory'];
    mysql_select_db($database_sowcs_test, $sowcs_test);
    $query_getProducts = sprintf("SELECT prodID, prodCode, prodCategory, prodName, imgThumb FROM products WHERE prodCategory = %s ORDER BY prodCode ASC", GetSQLValueString($colname_getProducts, "int"));
    $getProducts = mysql_query($query_getProducts, $sowcs_test) or die(mysql_error());
    $row_getProducts = mysql_fetch_assoc($getProducts);
    $colname_getProducts = "-1";
    if (isset($_GET['1'])) {
      $colname_getProducts = $_GET['1'];
    mysql_select_db($database_sowcs_test, $sowcs_test);
    $query_getProducts = sprintf("SELECT prodID, prodCode, prodCategory, prodName, imgThumb FROM products WHERE prodCategory = %s ORDER BY prodCode ASC", GetSQLValueString($colname_getProducts, "int"));
    $getProducts = mysql_query($query_getProducts, $sowcs_test) or die(mysql_error());
    $row_getProducts = mysql_fetch_assoc($getProducts);
    $totalRows_getProducts = mysql_num_rows($getProducts);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/sowcsmain.dwt.php" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>SONOMA OLD WORLD CAST STONE | Elegant decorative stonework accessories components for your home, estate, office building or place of business</title>
    <!-- InstanceEndEditable -->
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    <link href="stylesheets/sowcsmain.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript" src="p7pmm/p7PMMscripts.js"></script>
    <link href="p7pmm/p7PMMh07.css" rel="stylesheet" type="text/css" media="all" />
    </head>
    <body>
    <div class="container">
      <div class="header"><img src="images/header_img.jpg" width="960" height="200" alt="Sonoma Old World Cast Stone" />
        <!-- end .header --></div>
        <div class="navbar">
        <div class="navmenu">
          <div id="p7PMM_1" class="p7PMMh07 p7PMMnoscript">
            <?php require('includes/main_menu.php'); ?>
            <div class="p7pmmclearfloat"> </div>
            <!--[if lte IE 6]>
    <style>.p7PMMh07 .current_mark {font-weight: normal; text-transform: uppercase;} .p7PMMh07 ul ul .current_mark {font-weight: bold;} .p7PMMh07 li {filter: alpha(opacity=80);} .p7PMMh07 ul ul li {float:left; clear: both; width: 100%;}.p7PMMh07 {text-align: left;}.p7PMMh07 ul ul a {zoom: 1;}</style>
    <![endif]-->
            <!--[if IE 5]>
    <style>.p7PMMh07, .p7PMMh07 ul ul a {height: 1%; overflow: visible !important;} .p7PMMh07 {width: 100%;}</style>
    <![endif]-->
            <!--[if IE 7]>
    <style>.p7PMMh07, .p7PMMh07 a{zoom:1;}.p7PMMh07 ul ul li{float:left;clear:both;width:100%;}</style>
    <![endif]-->
            <script type="text/javascript">
    <!--
    P7_PMMop('p7PMM_1',1,2,-5,-5,0,1,0,1,0,3,1,1,0,0,0);
    //-->
            </script>
          </div>
          </div>
          <!-- end .menubar -->
        </div>
      <div class="sidebar1"> 
      <div align="center">
      <p><strong>PRODUCT<br />CATEGORIES</strong></p>
        <img src="images/024 Pedestal_ with_girls_sidebar.jpg" width="125" height="250" alt="Pedestal category image" class="sidebar" />
        <p class="sidebarcaption"><a href="#">PEDESTALS</a></p>
        <img src="images/066_Barrel_with_grapes_sidebar.jpg" width="125" height="234" alt="Barrel with Grapes Plaque" class="sidebar" />
        <p class="sidebarcaption"><a href="#">PLAQUES</a></p>
              <img src="images/sowcslogo.jpg" width="150" height="150" alt="Sonoma Old World Cast stone logo" class="sidebar" />
         </div><!-- InstanceBeginEditable name="sidebar1" -->   
        <!-- InstanceEndEditable -->   
      <!-- end .sidebar1 --></div>
      <div class="content"><!-- InstanceBeginEditable name="content" -->
      <h1>PEDESTALS</h1>
      <table >
        <tr>
          <?php
    $getProducts_endRow = 0;
    $getProducts_columns = 3; // number of columns
    $getProducts_hloopRow1 = 0; // first row flag
    do {
        if($getProducts_endRow == 0  && $getProducts_hloopRow1++ != 0) echo "<tr>";
       ?>
          <td><p><?php echo $row_getProducts['imgThumb']; ?></p>
            <p>Item #<?php echo $row_getProducts['prodCode']; ?></p>
            <p><?php echo $row_getProducts['prodName']; ?></p>        <p>VIEW</p></td>
          <?php  $getProducts_endRow++;
    if($getProducts_endRow >= $getProducts_columns) {
      ?>
        </tr>
        <?php
    $getProducts_endRow = 0;
    } while ($row_getProducts = mysql_fetch_assoc($getProducts));
    if($getProducts_endRow != 0) {
    while ($getProducts_endRow < $getProducts_columns) {
        echo("<td> </td>");
        $getProducts_endRow++;
    echo("</tr>");
    }?>
      </table>
      <!-- InstanceEndEditable -->
        <!-- end .content --></div>
      <div class="footer">
          <!-- InstanceBeginEditable name="footer" --><!-- InstanceEndEditable -->
        <div class="bottommenu"><?php include('includes/bottom_menu.php'); ?></div>
        <p><strong>SONOMA OLD WORLD CAST STONE</strong><br />
        2995 Wiljan Court #A, Santa Rosa CA 95407 | p. 707-874-2709</p>
        <p>&copy;<?php
        ini_set('date.timezone', 'America/Los_Angeles');
        $startYear = 2013;
        $thisYear = date('Y');
        if ($startYear == $thisYear) {
            echo $startYear;
        else {
            echo "{$startYear}-{$thisYear}";
        ?> Sonoma Old World Cast Stone | All Rights Reserved</p>
      </div>
        <!-- end .footer --></div>
      <!-- end .container --><!-- InstanceBeginEditable name="CurlyTag" --><!-- InstanceEndEditable -->
    </body>
    <!-- InstanceEnd --></html>
    <?php
    mysql_free_result($getProducts);
    ?>

    I apologize for time wasted, as I discovered the errors were basic things regarding image files:
    Embarrassed to say that my image files were not uploaded to the server
    Paths to the images were not correct, although I just realized that I have some additional relativity issues to deal with
    I realized that I have to wrap the php link to the image with an <img src> tag
    Appreciate your help!
    Rgds, Ned

Maybe you are looking for

  • How do i upgrade to a new hd

    I just got a new mac mini and want to put my own SSD, but it came with no cd's.  How do i upgrade to my new HD>?

  • Add a new personalized softkey to my phone

    I want to add a new softkey to my phone to have access to all my spedd dials. Someone say me that it is possible. I want to do that to my Cisco IP phone 7912 beacause I only have direct access to 4 of my speed dials. Thanks, Carlos.

  • Reinstall Apple software after clean install of Lion on 2009 IMac

    Completed a clean install of Lion on 2009 IMac, which initially reacted poorly to an upgrade (my first attempt to move to Lion). How do I reinstall iPhoto, Garageband, Aperture, Final Cut Express, iMovie, Logic Express? These were all preinstalled wi

  • Elements 6 Hanging

    Please help me, anybody, My husband and I just bought an epsom v500 scanner that came bundled with elements 6. with the intention of archiving our photos digitally. I initially loaded the program and it would scan the first image but then I could not

  • PLN PCK No in BAPI for service entry

    Hi, I am creating service entries via BAPI_ENTRYSHEET_CREATE for planned services. If I am using one PO line item then I am able to create service entries with proper PLN_PCK number and all. But if I use mutliple line items in PO(not sublines) then P