Help wanted....How to build form ???

Installed APPS 11i alredy in linux .Does the form builder /REPORT BUILDER is inside that AUTOMATICALL?
Or separately I have install form builder /REPORT BUILDER in linux ? so do i need to install a separate data abse too ? how to link thse with oracle object library ??
please advice.
Message was edited by:
user515785

try to understand your question,
you installed 11i in linux
you installed forms/report developer suite in the same server
you want to connect from forms/report to 11i database?
If above my understanding is correct, you can create entry in tnsname.ora and connect it.
regards

Similar Messages

  • How to build Form or Report on different table name

    Hi,
    I want to know, is it possible to query data from a different tables with same structure.
    For example:
    I have tables tableA, tableB ....
    What I want is to select table name from combo box and
    after that to query data for the chosen table.
    So is it possible anyway to build a form or report without knowing the table name during the design ?
    Thanks

    Hello Boris,
    The way you can make this work is like this:
    You need to create a view (say vw_2Tables)whose source is like
    select "table_A" tableName, col1,col2,... from table_A
    union
    select "table_B" tableName, col1,col2,... from table_B
    Then create the Report based on this view:
    select tableName, col1, col2
    from vw_2tables
    where tableName = :P_tablename;
    This will make the Portal create a bind parameter for you.
    Create an LOV whose Select statement is
    select "table_A" tableName from dual
    union
    select "table_B" tableName from dual
    And add this LOV to the bind parameter source in Report
    (in Customization Tab).
    You need to run this Report in customize mode
    (if your report name is say Rep_1
    then this will be http://...../Rep_1.show_parm)
    Hope this helps
    Madhav

  • Urgent HELP! How to Build a Podcast Dreamweaver CS3?

    I currently have a podcast running through blogspot.com, I
    got my RSS feed using FeedBurner. I am now building a website for
    my campus ministry using Dreamweaver CS3, and I want to import, or
    build my Podcast into my Dreamweaver site....how do I do it? The
    web site is for a Campus Ministry program at a local college, and
    we would like to have a web page within the web site where to
    students can go to not only listen to the streaming audio of the
    homily directly from the web page, but can subscribe to the podcast
    of the homilies as well. How do we do this? Thank you for your
    help!

    Here is the solution, I think that you are looking for.
    -Jim
    Attachments:
    Help_build_tab.vi ‏35 KB

  • How to build forms which retrieve multiple records

    Hi everyone,
    I am newbie to APEX.I have a question in FORM building in APEX.In oracle FORMS(6i) has the capability to search with any fileld on it . there is
    an option to search
    data with the id or department or name field.If it retrieves more than one record there
    is navigation controls to move from one record to another.
    Can we build same kind of FORMS in APEX .I didnt find any wizard to build such kind of
    FORM which has both inserting and querying capability.
    I found one option for that in apex (FROM with report).In the report section i can query
    for the records and link to FORM which populates all the data in the FORM. Is that the
    only option do we have in APEX to build the forms which gives multiple records as
    output.
    anyone plz help me in solving this
    thank u

    can anyone please help me in solving this issue,
    Is it possible to build such kind of forms with retrieves multiple records in APEX.
    Thanks

  • Help~~..how to disable form in jsp

    helo..i want to ask..i have three radio buttons and three text box..if radio button first is being checked and put in some value..i want to disable the other two..how i can do this..
    <table>
    <tr>
    <td height="34"></td>
    <td width="3%"> <input type="radio" name="inputType" value="ServiceNum">
    </td>
    <td colspan="2" valign="top"><font color="#000000" size="-1" face="Verdana, Arial, Helvetica, sans-serif">Enter
    Service Number</font><font size="-1" face="Verdana, Arial, Helvetica, sans-serif"> </font></td>
    <td valign="top">:</td>
    <td width="248" valign="top"><input name="txtSrvNum" type="text" id="txtSrvNum" size="40" maxlength="12"></td>
    <td width="196" valign="top"><font size="-3" face="Verdana, Arial, Helvetica, sans-serif" color="#0A3291">Example:
    00327548624</font></td>
    </tr>
    <tr>
    <td height="34"></td>
    <td> <input type="radio" name="inputType" value="AccountNum"> </td>
    <td colspan="2" valign="top"><font color="#000000" size="4" face="Times New Roman, Times, serif"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">Enter
    Account Number</font></font></td>
    <td valign="top">:</td>
    <td valign="top"><input name="txtAccNum" type="text" id="txtAccNum" size="40"></td>
    <td valign="top"><font size="-3" face="Verdana, Arial, Helvetica, sans-serif" color="#0A3291">Example:
    A500019982530 </font></td>
    </tr>
    <tr>
    <td height="24"></td>
    <td> <input type="radio" name="inputType" value="ESNNum"> </td>
    <td width="140"><font color="#000000" size="4" face="Times New Roman, Times, serif"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">Enter
    ESN Number</font></font> </td>
    <td width="37"> </td>
    <td valign="top">:</td>
    <td valign="top"><input name="txtESNNum" type="text" id="txtESNNum" size="40"></td>
    <td valign="top"><font size="-3" face="Verdana, Arial, Helvetica, sans-serif" color="#0A3291">Example:
    C000B31F</font></td>
    </tr></table>

    Hi,
    can u try this you work will easy
    <html>
    <head>
    <script language"JavaScript">
    function disableRadio() {
    if(document.inputForm.inputType[0].checked == true) {
    document.inputForm.inputType[1].disabled = true;
    document.inputForm.inputType[2].disabled = true;
    document.inputForm.txtAccNum.disabled = true;
    document.inputForm.txtESNNum.disabled = true;
    if(document.inputForm.inputType[1].checked == true) {
    document.inputForm.inputType[0].disabled = true;
    document.inputForm.inputType[2].disabled = true;
    document.inputForm.txtSrvNum.disabled = true;
    document.inputForm.txtESNNum.disabled = true;
    if(document.inputForm.inputType[2].checked == true) {
    document.inputForm.inputType[0].disabled = true;
    document.inputForm.inputType[1].disabled = true;
    document.inputForm.txtAccNum.disabled = true;
    document.inputForm.txtSrvNum.disabled = true;
    </script>
    </head>
    <body>
    <form name="inputForm">
    <table>
    <tr>
    <td height="34"></td>
    <td width="3%"> <input type="radio" name="inputType" value="ServiceNum" onClick="disableRadio();">
    </td>
    <td colspan="2" valign="top"><font color="#000000" size="-1" face="Verdana, Arial, Helvetica, sans-serif">Enter
    Service Number</font><font size="-1" face="Verdana, Arial, Helvetica, sans-serif"> </font></td>
    <td valign="top">:</td>
    <td width="248" valign="top"><input name="txtSrvNum" type="text" id="txtSrvNum" size="40" maxlength="12"></td>
    <td width="196" valign="top"><font size="-3" face="Verdana, Arial, Helvetica, sans-serif" color="#0A3291">Example:
    00327548624</font></td>
    </tr>
    <tr>
    <td height="34"></td>
    <td> <input type="radio" name="inputType" value="AccountNum" onClick="disableRadio();"> </td>
    <td colspan="2" valign="top"><font color="#000000" size="4" face="Times New Roman, Times, serif"><font size="-1" face="Verdana, Arial,
    Helvetica, sans-serif">Enter
    Account Number</font></font></td>
    <td valign="top">:</td>
    <td valign="top"><input name="txtAccNum" type="text" id="txtAccNum" size="40"></td>
    <td valign="top"><font size="-3" face="Verdana, Arial, Helvetica, sans-serif" color="#0A3291">Example:
    A500019982530 </font></td>
    </tr>
    <tr>
    <td height="24"></td>
    <td> <input type="radio" name="inputType" value="ESNNum" onClick="disableRadio();"> </td>
    <td width="140"><font color="#000000" size="4" face="Times New Roman, Times, serif"><font size="-1" face="Verdana, Arial, Helvetica,
    sans-serif">Enter
    ESN Number</font></font> </td>
    <td width="37"> </td>
    <td valign="top">:</td>
    <td valign="top"><input name="txtESNNum" type="text" id="txtESNNum" size="40"></td>
    <td valign="top"><font size="-3" face="Verdana, Arial, Helvetica, sans-serif" color="#0A3291">Example:
    C000B31F</font></td>
    </tr></table>
    </form>
    </body></html>

  • HELP! How to build a table with loop

    Hi,
    I have a problem with "loop for".
    When I used one Loop For, it's ok.
    I can build a tab with register but with 2 loop For, I can't. Why ?
    You can see my example for understand my question.
    Thank's a lot if you have a answer.
    Attachments:
    Help_build_tab.vi ‏47 KB

    Here is the solution, I think that you are looking for.
    -Jim
    Attachments:
    Help_build_tab.vi ‏35 KB

  • Any link to Building forms in illustrative mannaer

    Hi
    any pdf file contain "building forms" which is in illustrative manner to learn how to build forms.
    prasanth a.s.

    Hi Prashanth,
    Unfortunately I have no means to search for such items in the documentation listed on our pages at: http://www.oracle.com/technology/documentation/index.html
    Please try the Members Feedback forum instead at: Community Feedback (No Product Questions) as this has a wider audience and perhaps someone can help you there.
    Regards,
    Les

  • How to build portlets using struts

    Hi,
    Iam new to BEA weblogic.can any one help/guide developing portlets using struts on BEA weblogic 8.1 .
    I have a problem while configuring struts module URI.how to work exactly using struts on Weblogic for a portlets.
    Can any provide me the support for developing the sample portlet using sturts.
    thankx,
    RAGHU

    No i didnt tried on Page flows.First i am working on struts portlets.I will find out on page flows and reply u .If u had worked on struts page flows plz help me how i build portlets on struts .
    Thankx,
    Raghu.

  • Help wanted! How can generate forms in batch mode from command line?

    Hi Guys!
    I saw few years ago one utility wich can do this. We have application in designer repository. We want to regenerate all forms but now we must use designer gui for that.
    Could anybody knew any utility tools for make this generation easier and quicker?
    It would be nice to have this tool. We want to bye if anybody sell it?

    See if the following Oracle Designer Help topics are relevant:
    'About batch generation and design capture'
    'About the batch processing wizards'
    'Performing batch processing'

  • I have an editable pdf made in Acrobat. Viewing it Adobe Reader Mobile (Android) and I can fill it fine. I want to be able to fill the form but it keeps autosaving. I just want to email the form and then it goes back to an unfilled form. How do i do that?

    I have an editable pdf made in Acrobat. Viewing it Adobe Reader Mobile (Android) and I can fill it fine. I want to be able to fill the form but it keeps autosaving. I just want to email the form and then it goes back to an unfilled form. How do i do that?

    Currently, Adobe Reader for Android does not provide an option to disable auto-save.
    In the Reader home screen (where your files are displayed), you can make a copy of the original PDF document, open the copy (instead of opening the original document), make changes to the copy.  Once you email the copy, you can delete it.
    For more information, please see Help > How To... > Copy, edit, delete, manage.
    Although it is not the most convenient way to accomplish the task, that's the only feasible workaround that is available in Adobe Reader for Android right now.

  • How to build dynamic menus using JSP==Urgent==Please Help me

    Hello,
    I have exhausted searching on internet to find a book
    which tells how to build Dynmic menus in JSP.I dont want
    to use DHTML as this becomes complex as the menu categories
    are built using data from database.Is there any workaround in
    java to do this without DHTML or atleast sample code.
    can somebody help me in this regard.
    Thanks
    Jack

    Hello a.s.kumar,
    I would be greatful if you could send me the sample code.
    [email protected]
    we can't let MM Flash run away with the show can we. Javascript can do a decent job, but the underlying menu data is static.
    Cheers, Darren

  • How to build wizard in Oracle Forms?

    How to build wizard in Oracle Forms? Is it possible only in JDeveloper?
    Regards
    Rajesh Kumar

    What do you mean here - you want to extend the Forms Builder with your own wizard, or you want to build a Forms Application with a Wizard Style interface?
    If it's the First then you can't, if it's the second then check out the 9i demos there is a re-usable wizard component that shows you how to do it.

  • Hi guru's i want to dovelope smart form how can we give form name for sales

    hi guru's i want to dovelope smart form how can we give form name for sales order  plz help me  ...

    Hi,
    If u want to assign the form to Standard sales order, The, this form in the NACE.
    and the, Run from va02/03.
    Reward Points,
    Vamsi.

  • Help on how to call a new form

    Anyone there that can help me how to call a new form...
    Actually I have 3 forms.... the Parent, and 2 child...
    child a
    child b
    I used JFrame to the Parent...
    I used JDialog to the child....
    I want to know how to call child a by the child b.....
    this is my code in calling them....
    when i'm in the form_b, i used this code to show form_a....
    form_a a = new form_a();
    a.setVisible(true);
    when i'm in the form_a, i used this code to show form_b....
    form_b b = new form_b();
    b.setVisible(true);
    but the problem is when i call either of the two, there's always a new form for form_a and also for form_b....
    I want to call the form without opening a new form... that form also will be visible... is there anyways i can do this.... any help will do.... tenks....

    One way would be to have the parent maintain instances of A & B and have public methods for accessing A & B. Something like this. You would have to pass a reference to the parent class to A & B so that they can call the access methods.
    public class form_a extends JDialog{
       public form_a (Parent parent){
    public class Parent extends JFrame{
       form_a a;
       form_b b;
       public Parent(){
          a = new form_a (this);
          b = new form_b (this);
       public form_a getFormA(){
            return form_a;
       public form_b getFormB(){
           return form_b;
    }

  • How to build Dynamic Data Form in Planning

    Hi,
    I need for building Data Form in Planning 11.1.2.0 with table columns that would be consist of (example 1):
    - Nov 2011 - Actual
    - Dec 2011 - Actual
    - Jan 2012 - Actual
    - Feb 2012 - Forecast
    - Mar 2012 - Forecast
    - Dec 2012 - Forecast
    Note: current period is "Feb" and current year "2012" has been got from Essbase substitution variables.
    How to build Dynamic Data Form in Planning app using @relative function for period and year dimensions and Essbase substitution variables?
    Example 2 (for current period is "Mar" and current year "2012"):
    - Dec 2011 - Actual
    - Jan 2012 - Actual
    - Feb 2012 - Actual
    - Mar 2012 - Forecast
    - Apr 2012 - Forecast
    - Dec 2012 - Forecast

    As I know you can't use such range or functions in form member selection. Below are couple of options:
    Use bunch of variables for each scenario and the number depends on how many months you want to display (18 months etc..)
    pre-fill the data for related months and years and use data suppress options.

Maybe you are looking for