Displaying database results on the same page

I am relatively new to dynamic pages and have only just
recently created a PHP SQL setup using Dreamweaver CS3. I have no
issues in displaying items from a recordset on a page. I have even
used the "Master detail page set" function in CS3 to have a small
selection of records from my recordset on the page as reference
points to then open up a detail web page showing all the records
for that item. But this is not what I want to do.
I have used CSS to created a two columm page, which I have
then saved as a template (left sidebar and then main content on the
right). The scenario is that the database has membership details. I
want to be able to have the membership numbers displayed in the
left sidebar, with the main content of the database record for that
member displayed in the main section of the page. If I click on a
different membership number in the left column I want the main
content to change and display the records for that member.
I guess what I am trying to say is I want the "Master detail
page set" functionality but rather than opening a seperate web page
for the detail, I want it displayed on the same page.
As I said, I am new to dynamic pages. A way I thought of it
being done was to use frames but I don't really want to do that as
it means making up a whole new set of templates. Is there a simple
way of doing this?
Thanks in advance
JJ

http://java.sun.com/j2ee/1.4/docs/tutorial/doc/
http://java.sun.com/docs/books/tutorial/javabeans/index.html
http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/Servlets.html
http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/JSPIntro.html
http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/JSPBeans.html
http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/JSPTags.html
http://java.sun.com/j2ee/tutorial/1_3-fcs/
http://java.sun.com/developer/onlineTraining/index.html
http://java.sun.com/docs/books/tutorial/index.html
http://developers.sun.com/events/techdays/codecamps/index.html

Similar Messages

  • Display search results on the same page

    I have a text box with a submit button to the left. Once the user enter the a number in the search field my select query executes.
    My question is how can i display the reult on the same page? I have been able to display results on the same page but my table headers are also displayed at the same time while user is trying to enter the item number.
    i tried using <c:if> but its not wokring, Any help?
    <%@ include file="/WEB-INF/jsp/include.jsp" %>
    <html>
    <head>
    <title>VDP QOH UPDATE</title>
    </head>
    <body>
    <spring:bind path="quantityOnHand">
      <FONT color="red">
        <B><c:out value="${status.errorMessage}"/></B>
      </FONT>
    </spring:bind>
    <P>
    <FORM name="quantityOnHandForm" method="POST" action = ''>
    <CENTER>
    <table BORDER=0  CELLSPACING=0 CELLPADDING=5 WIDTH=600>
        <tr>
              <td COLSPAN=2 BGCOLOR="#003366"><P ALIGN=CENTER><B><FONT COLOR="#FFFFFF" SIZE="2" FACE="Arial,Helvetica,Univers,Zurich BT">Query</FONT></B>
              </td>
         </tr>
         <tr>
              <td WIDTH=215 BGCOLOR="#336699"><P ALIGN=RIGHT>
                  <B>
                     <FONT COLOR="#FFFFFF" SIZE="-1" FACE="Arial,Helvetica,Univers,Zurich BT">
                        Item No:
                      </FONT>
                   </B>
              </td>
              <td ALIGN=LEFT><spring:bind path="quantityOnHand.itemNumber">
                      <input type="text" maxlength="30" size="10" name='<c:out value="${status.expression}"/>' value='<c:out value="${status.
                             value}"/>'>
        <td><font color="red"><c:out value="${status.errorMessage}" /></font>    </td>
           </spring:bind>
              </td>
         </tr>
        <tr>
            <td BGCOLOR="#336699" WIDTH=215> </td>
            <td>
                <input type="submit" name="Submit" value="Submit" >
           </td>
       </tr>
    </table>
    </center>
    </form>This is basically all of my search jsp code. Now i've added my other code after </form> to display the results.
    </form>
    <table BORDER=0  CELLSPACING=0 CELLPADDING=5 WIDTH=600>
        <tr>
              <td COLSPAN=2 BGCOLOR="#003366"><P ALIGN=CENTER><B><FONT COLOR="#FFFFFF" SIZE="2" FACE="Arial,Helvetica,Univers,Zurich BT">Quantity On Hand Search Results</FONT></B>
              </td>
         </tr>
         </table>              
    <c:choose>
    <c:when test="${empty qohInfo}">
             <div align="left" style="color:#336699;"><b>No records Found.<br><br></b></div>
    </c:when>
    <c:otherwise>
         <table width="602" height="92">
              <tr>   
                   <th ALIGN=CENTER BGCOLOR="#336699" width="110" >
                       <B>
                          <FONT COLOR="#FFFFFF" SIZE="-1" FACE="Arial,Helvetica,Univers,Zurich BT">Item Number</FONT>
                       </B>
                   </th>
                   <th ALIGN=CENTER BGCOLOR="#336699" width="115">
                       <B>
                          <FONT COLOR="#FFFFFF" SIZE="-1" FACE="Arial,Helvetica,Univers,Zurich BT">Vendor Id </FONT>
                       </B>
                   </th>
                   <th ALIGN=CENTER BGCOLOR="#336699" width="120">
                       <B>
                          <FONT COLOR="#FFFFFF" SIZE="-1" FACE="Arial,Helvetica,Univers,Zurich BT"> Inventory Date</FONT>
                       </B>
                   </th>
                   <th ALIGN=CENTER BGCOLOR="#336699" width="130" >
                       <B>
                          <FONT COLOR="#FFFFFF" SIZE="-1" FACE="Arial,Helvetica,Univers,Zurich BT">Update Date Time </FONT>
                       </B>
                   </th>
                   <th ALIGN=CENTER BGCOLOR="#336699" width="100" >
                       <B>
                          <FONT COLOR="#FFFFFF" SIZE="-1" FACE="Arial,Helvetica,Univers,Zurich BT">Quantity</FONT>
                       </B>
                   </th>
              </tr>
              <c:forEach var="qohInfo" items="${qohInfo}" varStatus="loop">
        <tr BGCOLOR="#99CCFF">
          <TD align="center"><c:out value="${qohInfo.itemNumber}"/></TD>
          <TD align="center"><c:out value="${qohInfo.vendorId}"/></TD>
          <TD align="center"><c:out value="${qohInfo.inventoryDate}"/></TD>
          <TD align="center"><c:out value="${qohInfo.updateDateTime}"/></TD>
          <TD align="center"><c:out value="${qohInfo.quantity}"/></TD>
        </TR>
      </c:forEach>
      </table>
      </c:otherwise>
      </c:choose>As you can see that the table headers are always shown but i would like to hide the table headers and everything until and unles user clicks on submit button. Any help is appreciated.

    Thanks balusc for your reply. I was curious how would you have used the c:if statement to display the table and hide the table if a user have not clicked the button.
    I wanted to stay away from javasscript

  • Display regions dynamically on the same page

    Hi
    I have 2 regions.Top is an interactive editable report.Bottom region is a read only report of the same(top region)
    But when i click search button(based on paramters 1&2, i am not able to see the same number of rows.
    Top region shows 5..But bottom region shows not the same.
    Is there any custom process i need to add ?
    Please advice
    thank
    kp

    >
    http://localhost
    ----------^^^^^^^^^
    uhhh....
    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
    ==================
    "namtax" <[email protected]> wrote in
    message
    news:ej54sr$m7q$[email protected]..
    > im trying to code my tree menu so that when you click on
    the album name
    > the
    > song names would display dynamically on the same page..
    >
    > Heres my page at the moment
    >
    >
    http://localhost/music_explained/forta_explained/blah_7.cfm
    >
    > I have added a href field to the album section of the
    cftree, so that when
    > you
    > click on that a question mark appears after the URL.
    > I have set up a query that selects song names dependant
    to the record
    > which is
    > clicked on the cftree...but i am having
    difficulties...anyone know of a
    > tutorial or anything on this particular topic.
    >
    > Cheers
    >

  • Displaying error messages on the same page

    Hi All !
    I'm developing a web application using JSP.I want to know how to validate any entry in a Textbox.I want to prompt the error on the same page where that corresponding textbox is. I'm a newcomer to the world of JSP and wouldn't understand a esoteric Servlet/errorpage language,so I request you all to explain your answer.
    Also,I'm writing that JSP-Oracle database connection string(all that conn,stmt,try,finally etc.) on every JSP page and this amounts to a very big code.Can somebody enlighten me on optimising this.For instance,a class or program which can be called everytime I wanna make a connection to database.One more problem is that I wouldn't know where to write a class or that program and how to call it.So ,I'm sorry,but if you are replying you have to help me out with this problem also.
    Too much to ask,I guess!!
    Will highly appreciate a reply.

    http://java.sun.com/j2ee/1.4/docs/tutorial/doc/
    http://java.sun.com/docs/books/tutorial/javabeans/index.html
    http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/Servlets.html
    http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/JSPIntro.html
    http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/JSPBeans.html
    http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/JSPTags.html
    http://java.sun.com/j2ee/tutorial/1_3-fcs/
    http://java.sun.com/developer/onlineTraining/index.html
    http://java.sun.com/docs/books/tutorial/index.html
    http://developers.sun.com/events/techdays/codecamps/index.html

  • Display an iview in the same page.

    Hi Experts,
    I need to integrate webdynpro application which is a tree application
    when i integrate that application  if i click on that some search button it should navigate to other iview but the present application should be in the same page and the new application should be opened... how can we make it....
    plz help me in this ,.........
    waiting for u r responses...
    Regards,
    Shilpa

    Shilpa,
    If it is the 1st one (pop Up) then you can use Koti's threads.
    also check this library files to do this, if it is a external window I think this suits your requirement very well
    http://help.sap.com/saphelp_nw2004s/helpdata/en/fd/024640c0e56913e10000000a1550b0/content.htm
    Open view in external window..
    Open views in non-modal external windows - the patch version
    PraDeep
    Edited by: pradeep bondla on Jul 18, 2008 7:14 AM

  • How to encode multiple camera views and display them separately on the same page

    Does any one know if this is possible with just one
    encoder/streaming server or would you need multiple encoders to
    send separate views?

    Hello after a long time.
    I have 2 the same capture card. And I am trying to stream to 2 diffrent rtmp server. I start first one and no problem. But when I run second FME instance and select second stream card, first one turns to black and second one shows up. When I close second, first one again comes back.
    What shoul I do for streaming multiple streams form multiple stream cards?
    Best regards.

  • Displaying 2 Reports in the same Page (2nd Report depends on 1st Report)

    I have following report...
    Report is having a parameter called
    Show_2nd_Report:- Y/N (Yes/No) -
    This will display the 2nd Report depending on the value Y/N
    Case1:- Show_2nd_Report = 'N'
    query1:-
    select month, empno, work_type, hrs from table1 where code = 'X'
    (Main Report)
    month | empno | work_type | hrs (BREAK on month and empno)
    JAN'08 - 1212 - AB - 5
    JAN'08 - 1212 - BC - 4
    JAN'08 - 1212 - CD - 6
    total - 15
    JAN'08 - 3333 - AB - 1
    JAN'08 - 3333 - BC - 4
    JAN'08 - 3333 - CD - 8
    total - 13
    FEB'08 - 1212 - AB - 4
    FEB'08 - 1212 - BC - 6
    FEB'08 - 1212 - CD - 2
    total - 12
    FEB'08 - 3333 - AB - 2
    FEB'08 - 3333 - BC - 2
    FEB'08 - 3333 - CD - 5
    total - 9
    Case2:- Show_2nd_Report = 'Y' (I need help on this Part)
    Here I want to display the 2nd report just below the main report
    (after break of month and empno) as shown below.
    query1:-
    select month, empno, work_type, hrs from table1 where code = 'X'
    (Main Report)
    query2:- (2nd Report) - this is based on month and empno value ..
    select month, empno, work_type, hrs from table1
    where code = ' ' (code is blank)
    and month = p_month (exp - JAN'08)
    and empno = p_empno (exp - 1212)
    - the value of month and empno will change after each break
    month | empno | work_type | hrs (BREAK on month and empno)
    main report
    JAN'08 - 1212 - AB - 5
    JAN'08 - 1212 - BC - 4
    JAN'08 - 1212 - CD - 6
    total 15
    2nd report
    JAN'08 - 1212 - XX - 2
    JAN'08 - 1212 - XY - 1
    total 3
    main report
    JAN'08 - 3333 - AB - 1
    JAN'08 - 3333 - BC - 4
    JAN'08 - 3333 - CD - 8
    total 13
    2nd report
    JAN'08 - 3333 - XX - 1
    JAN'08 - 3333 - XY - 1
    total 2
    main report
    FEB'08 - 1212 - AB - 4
    FEB'08 - 1212 - BC - 6
    FEB'08 - 1212 - CD - 2
    total 12
    2nd report
    main report
    FEB'08 - 3333 - AB - 2
    FEB'08 - 3333 - BC - 2
    FEB'08 - 3333 - CD - 5
    total 9
    2nd report
    I need help on the 2nd Report. How can I display both the Reports in 2nd Case.
    Appreciate any help on this.
    Thanks,
    deepak
    Edited by: Deepak_J on Sep 11, 2008 11:56 AM
    Edited by: Deepak_J on Sep 11, 2008 12:02 PM

    Hi Deepak,
    You could try something like:
    SELECT DEPTNO, 1 REPORTID, SAL, EMPNO, ENAME
    FROM EMP WHERE SAL < 1000
    UNION ALL
    SELECT DEPTNO, 2 REPORTID, SAL, EMPNO, ENAME
    FROM EMP WHERE SAL >= 1000
    AND :P1_SHOW_REPORT2 = 'Y'You would then need to break by First and Second Columns. You may also have to hide the REPORTID value on the page (you must still leave the Show option ticked) - set the heading to &amp;nbsp; and use the following as the HTML Expression for the column:
    &lt;span style="display:none"&gt;#REPORTID#&lt;/span&gt;Using this, I got: http://htmldb.oracle.com/pls/otn/f?p=33642:120
    Obviously, more needs to be done with styling, but it's a start!
    Andy

  • Passing parameters between portlets with in the same page

    Hello,
    I have created a Form and a report. The form allows a user to make some selection values, and then upon submit it passes the selected values to the report to query the database. The results from the query are displayed in a new - seperate - window from the form. Is there anyway to disaply the report results on the same page as the form that called the report? I guess I am trying to have a page with 2 portlets (a form, and a report). I want the user to be able to make a selection from the form portlet and pass that selection to the report portlet within the same page.
    Thanks,
    McKell

    Hi I received this info from an OSS named Mahantesh. I thought it was very helpful information for passing portlet parameters between a form and a report within the same page.
    Please check these steps to pass parameter from form to report:
    This article is based on demo tables EMP and DEPT.
    1. Create a report RPT_DEPT using the query 'Select * from dept where deptno= :deptno'
    2. Create a form FRM_EMP based on EMP table.
    3. Edit the form FRM_EMP => 'Formatting and Validation Options' section => click on DEPTNO field
    => Give the value for the 'Link' (under 'Display options') as 'javascript:runrep()' where runrep is the name<br>
    of javascript function that we are going to create later.
    4. In 'Form text' section, in the 'Footer Text' add the code for the runrep function as follows.
    <script>
    function runrep()
    var formObj = document.forms[0];
    var deptno;
    for (var i=0; i < formObj.length ; i++){
    if (formObj.elements.name == 'FORM_EMP.DEFAULT.DEPTNO.01'){
    //FORM_EMP is the form name
    deptno = formObj.elements[i].value;
    break;
    var url="/portal/page?_pageid=38,1,38_31678:38_31787&_dad=portal&_schema=<br>
    PORTAL&deptno=" + deptno;
    //modify the url according to your environment.<br>
    window.location=url;
    }<br>
    </script>
    5. Modify the URL in the above code with your page url on which form and report portlets have been placed.
    6. Goto Page properties => Parameters tab (Parameters and Events option should have been enabled at Pagegroup level).
    7. Create a page parameter and map it with report portlet parameter.
    8. Now run the page, enter deptno or query the form to get the deptno and click on the link next to deptno field. You should get report with corresponding deptno on the page.

  • Button results as a same page

    Hi all,
    I am using html db 1.6.
    I am created one form is called Search, and placed on two buttons A and B.
    What i want is, now i am click on the button A( using query1), the results display on the bottom.
    I click the button B(Using query2) , display a results in a same page.
    Hide the A button result. Only show the B button result.
    How to do this one.
    Any example codes?
    Thanks!

    Here's a way I do it.
    In the HTML header, put in a script section that defines the JavaScript. (I borrowed this from another thread a LONG time ago):
    <script language="JavaScript" type="text/javascript">
      function callEmpPopup (formItem1) {
        var formVal1 = document.getElementById(formItem1).value;
        var url;
      url = 'f?p=&APP_ID.:1055:&APP_SESSION.::::P1055_OFFICE_ID:' + formVal1;
      w = open(url,"winLov","Scrollbars=1,resizable=1,width=800,height=600");
      if (w.opener == null)
      w.opener = self;
      w.focus();
    </script>Next, in the report definition, go to the Link section and set the target to be URL, and use the following
    javascript:callEmpPopup('P0_ORG_ID')You'll need to actually create the page to be used for the popup. Notice that I am passing in the Page Item whose value I need to work with on the popup page, and that the new item also must exist. Also keep in mind that you'll only be able to have one of these popup windows open at a time. There might be a way to get around this, but I haven't really wanted my users opening up every popup reference...
    This could potentially answer both your questions.

  • Master Detail on the same page PHP - MySQL

    Hi,
    Is it possible to create a page using spry master region and call MySQL data into a Spry detail region, like you do with xml data?
    Basically, is there a way to have master detail regions on the same page without using frames?
    Thanks
    Bert

    Thanks for that, very useful indeed.
    But isn't it going to be slow, first transferring the MySQL data to XML then reading XML to display the records.
    What is the advantage other then displaying master detail on the same page?
    Thanks
    Bert

  • Firefox doesn't show/display my addressbook within my hotmail account anymore. Cookies/Cashe has been emptied already, result is the same.

    Firefox doesn't show/display/load my addressbook within my hotmail account anymore, it worked previously well, so has nothing to do with the change from hotmail to outlook. Since a week or so, I realized a slowness in loading my recently used addresses with opening a new e-mail, but it was still working from time to time. For a few days, it has been stopped working, complete addressbook doesn't load anymore, just displays the load circle in the middle of the screen, apart from that I have only a white page. Cache and Cookies already emptied/deleted, result is the same. No settings have been changed, but have the same issue with Internet Explorer, but it's working with Chrome. For testing, I deactivated my firewall and anti virus (Comodo), but the result was still the same. I would appreciate if I could get it working again here. Every suggestion is welcome here

    Boot the computer in Windows Safe Mode with network support (press F8 on the boot screen) as a test to see if that helps.
    Create a new profile as a test to check if your current profile is causing the problems.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer some files from an existing profile to the new profile, but be careful not to copy corrupted files.
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    Do a malware check with some malware scanning programs on the Windows computer.<br />
    Please scan with all programs because each program detects different malware.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender: Home Page:<br>http://www.microsoft.com/windows/products/winfamily/defender/default.mspx
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *http://support.kaspersky.com/viruses/solutions?qid=208280684
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • How to display the JSP output in the same page....

    im new to JSP..... can anyone tell me how to display the output of a particular JSP page in the same page itself...... if anyone could send a small sample code it will be very useful for me....
    thanks in advance
    regds
    Krish......

    Hi Robert -
    When you say you are writing a template-based Renderer, do you mean that you are creating a custom look and feel and replacing the header Renderer? If so, I'd recommend instead simply creating your own template (not template-based Renderer), and reference your template directly from your uiXML pages where you want to insert the timestamp.
    You'll probably want to write a method data provider which calls System.currentTime(), convert the result to a date, and then use Java's date formatting capabilities (see java.text.format.DateFormat) to produce a user presentable String that you can return from your data provider.
    For more info (and samples) on templates and data binding, see the "Templates and Data Binding" section of the "Includes and Templating in ADF UIX" help topic:
    http://tinyurl.com/5b7bf
    Andy

  • How to display the variable screen with report in the same page together

    our customers want to design a web application use BEx
    they want the variable screen can be displayed with the report result in the same web page together
    so they can modify the variable filters any time and refresh the report with new variable filter
    i have tried the navigation area,but it seems only use new filter to the data athough get,we can't change the filter we input in the variable screen.
    is there any way to display these together?
    even I can use BSP.

    I think to display var screen with the report is not possible.(At least it will not be static). You need to refresh the report and choose the varibale at that time.
    Other option could be to bring all the possible value in the report and provide your user with the filter value. But this will make your report slow as you may have to bring more data in the filter.
    Thanks...
    Shambhu

  • Linking and displaying on the same page

    Hello I am currently trying to build my website, I want to
    click on a link in one table and the results to display in another
    table on the same page. Example - I have a left column, center
    table, and right column. In the left column "Athletic Diamonds" is
    one of the choices, when this is clicked on I want a group of
    photos to be displayed in the center table on the same page. How
    can I do this?

    You can use DW's SetText behavior to set the text of a
    content region with
    an ID to the desired HTML required to display the results.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "LPrime" <[email protected]> wrote in
    message
    news:ga1nqg$4cj$[email protected]..
    > Hello I am currently trying to build my website, I want
    to click on a
    > link in
    > one table and the results to display in another table on
    the same page.
    > Example - I have a left column, center table, and right
    column. In the
    > left
    > column "Athletic Diamonds" is one of the choices, when
    this is clicked on
    > I
    > want a group of photos to be displayed in the center
    table on the same
    > page.
    > How can I do this?
    >

  • How can I display the same page when I'll press

    i have a jsp page. It contains user name & password.
    and a link like SIGNOUT COMPLETELY. when i press the back button it should show only this page.
    You have noticed one thing that when u sign out from YHAOO MAIL then a page is displayed
    USERNAME : [email protected]
    PASSWORD :XXXXXXXXXX
    SIGNOUT COMPLETELY
    when this page is dispalyed and u press the back button of the browser
    it displays the same page. How it happens?

    Kindly neglect the previous post.....
    Okay check something like this
    1).maintain either a HttpSessionListener or a session flag try to checkout whether the user is active or else close the PrintWriter.
    2).Prevent caching of the webpage by using customary meta tag or by response,setHeader("Cache-Control","no-cache");
    way...
    Guess tht shud work.....

Maybe you are looking for

  • How to correct internal memory issue

    This is related to the standard SAP program SAPRCKM_MR11 in which there is one include RCKM_MR11F01 which contains a select statement : SELECT *      INTO CORRESPONDING FIELDS OF TABLE t_bhistory      FROM v_ckmlgrir      WHERE bukrs EQ p_bukrs     

  • Print of GR without material no and with Account assignement K / Q

    Dear Freinds, I want make Print out of Material Document with Material text (without  Material code with account assignement K or Q Project). I made out put setting for WE03, Transaction event type WE Print version 3 and Print Item 1, Material docume

  • How to create and attach a castlib to a movie

    Hi, I would like to know if there is a way to create and attach an external castlib to a movie with lingo. I need to insert a new cast in about 2 hundred movies... Thanks Paolo

  • Non English Characters do not appear as is while downloading in CSV

    Hi All, My report output has some non english characters. Downloading the output in CSV the non english characters dont show as is, rather appear as *???* I am using classic Report Template. How to overcome this? Should I create a custom Report Templ

  • Bat file only way to run java application

    hi, is there exists any other way to(other then writting java applic.class in a bat file) execute the java programs,of course other then writting java applic.class to command prompt. thanks 4 reply kk