Building a report form ?

Hy folks,
I am searching for a way to read data from a database to make them available in a form and to use it as parameter for an database report!! The surrounding is the Internet and in use is an Web-Application Server 9i!
null

hello,
there are multiple ways to create an HTML form based on database data. a servlet would be one, but you could also create a PLSQL procedure using the PLSQL-Toolkit to create the form.
the form then sends the request to the report server passing the parameters.
regards,
the oracle reports team

Similar Messages

  • How to build a Report/Form sharing the same page and do multiple Updates

    Hi, I´m building and APEX application (V4.2). Customer is demanding a report/form with the ability to do multiples Updates with only one click. For example, they check multiples "check box" for Aprpove and then only one click for  "Apply Changes".
    Thanks in advance,
    Luis E Contreras

    Hi Luis,
    If I understand you correctly you want to check a number of rows for approval and update their status. The jQuery function used looks for checked checkboxes. In your case that will correspond with an update on the IND_PROBACION column. You can simply log the PK column value of each checked row:
    var pkS = $('.uReportStandard input[type=checkbox]:checked').map(
       function() {
       return $(this).parent().parent().find('td[headers="PK"] input').val();
       ).get().join(':');
    $('#P1_PKS').val(pkS);
    You need to replace PK with the actual column name of your primary key column, or rowid for that matter.
    In your submit process you can simply set each IND_PROBACION to your apporval value for each pk stored in the P!_PKS item.
    If you need further assistence, please set up an example on apex.oracle.com
    Regards,
    Vincent
    http://vincentdeelen.blogspot.com

  • Are Forms Builder and Reports available as Web Application?

    We have a few developers working on custom forms and reports for various projects including EBS 12.x. To avoid the hastle associated with patching and upgrading all desktops, we are looking for a server based forms builder and reports writer.
    I am familiar with UNIX based tools in EBS that can run with X-windows [on local desktop]. Created an SR with OS, but not getting a satisfactory response. I am looking for pointers to browser based tools. Do they even exist? I was hoping maybe something in Fusion stack might allow it.
    Thanks,
    Sachin

    Thanks all for your feedback. Confirmed this with the Oracle Sales team. There is no browser tool available from Oracle. If you must avoid the desktop install, the only option is frmbld/rwbuilder in $ORACLE_HOME/bin (R12).

  • How to build a report on a table containing ORDSYS.ORDIMAGE type?

    Hi
    I build a table with a column of type ORDSYS.ORDIMAGE then I
    build a form using wizard and populate the table by uploading
    intermedia type and I can make query on that form and see the
    image. But when I build a report using wizard, the report result
    shows image data as it is in text format.
    Am I doing something wrong or there is another way to make
    report on ORDSYS.ORDIMAGE column type.
    Thanks.
    bye

    This could be because, you might have the display type as text
    instead of html for this column.
    Could you pls verify this by selecting as html and try running
    the report. If it still not working then pls post your Portal
    Version so that we can verify it out here. Presently, it is
    working fine for me.
    Thanx,
    chetan.

  • Creation of Report+Form pages

    HI all,
    In [Building an application using APEX OBE|http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/devdays2012/apexp1_lab/apexp1_lab.html] when create the app, creates pages too, and one of them (well, 2) is a Report+Form.
    I tried to search this in my actual application created. But I only found, Form, and Report, but not both.
    There are some way to automatize the creation of this 2 pages, like Application Wizard does?
    Regards.

    GiuseppeL wrote:
    There are some way to automatize the creation of this 2 pages, like Application Wizard does?Yes. From the application home page click Create Page > Form > Form on a Table with Report, then follow the wizard.

  • Tutorial and SDRDemo ..Build Rich Client Forms in JDeveloper .

    I am doing the self learn tutorial in Jdeveloper
    ADF Business Components     10.1.3.34.12
    CVS Version (External)     (CVSNT) 2.5.03 (Scorpio) Build 2260 (client/server)
    Java™ Platform     1.5.0_05
    Oracle IDE     10.1.3.34.12
    Struts Modeler Version     10.1.3.34.12
    UML Modelers Version     10.1.3.34.12
    Versioning Support          10.1.3.34.12
    First one is simple
    1. I am using the "Build Rich Client Forms in JDeveloper using ADF swing .. Tutorial "
    when i select New Application , I cant see Java Application Swing ADF BC value from the application Temp in drop down ?? What am i misssing .???
    The second issue is bit complex I am doing the Tutorial SRDemo
    I am doing on page 2 –14 of Tutorial creating EJBS Session Beans when Running the Wizard I don’t see
    Generate Session Facade
    Entity Implementation
    Options, subsequently the screen shot on next page does which has all the methods are not appearing.
    Also when adding code (2-16) in SPPublic FacadeBean Iam getting snytax error for
    (clearly related to above issue), I have no choice but to redo the tutorial from begin
    but should I change something before I do that ?
    public ServiceRequests createServiceRequests
    (String problemDescription, Integer productId, Integer createdBy)
    { UnitOfWork uow = getSessionFactory().acquireUnitOfWork();
    ServiceRequests newInstance = (ServiceRequests)uow.newInstance(ServiceRequests.class);
    Products product = (Products)uow.executeQuery("findProductById", Products.class, productId);
    Users user = (Users)uow.executeQuery("findUserById", Users.class, createdBy);
    product.addServiceRequests(newInstance);
    user.addCreatedBy(newInstance);
    newInstance.setStatus(null);
    newInstance.setRequestDate(null);
    newInstance.setProblemDescription(problemDescription);
    uow.commit(); return newInstance; }
    ==============
    Other than that in previous steps I came across a few interesting Scenarios
    While following the step by steps operation of Tutorial I see on 2 –6 when I was “adding code to manage Default Value “ while I was doing the code adding
    public Integer getNextLineItem() {
    int maxLineNo = 0;
    for (ServiceHistories svh:getServiceRequests().getServiceHistoriesCollection()){
    if (svh.getLineNo() !=null) {
    int testLineNo = svh.getLineNo().intValue();
    if (testLineNo > maxLineNo){
    maxLineNo = testLineNo;
    return ++maxLineNo;
    for (ServiceHistories svh:getServiceRequests().getServiceHistoriesCollection()){
    I kept on getting the compile error for type casting, which when I tried to compare the source provided at the end of the chapter I found the type cast generated by Jbuilder was missing
    public List <ServiceHistories> getServiceHistoriesCollection() {
    return this.serviceHistoriesCollection;
    2.Another interesting thing I came across was by default the wizrd created the names of these variables and there corresponding getter and setter methods as user1 and user2, which lead to some confusion while doing Named query section on 2 –9 (Once again I took care of the problem by doing File comparison with the )
    private ValueHolderInterface createdBy;
    private ValueHolderInterface assignedTo;
    3. Also by default on 2 - 12 When I was Creating Top link Session, I didn’t get any session.xml file. ( tutorial presumed I will get one by default )
    4. Last is it normal to get Warning when getting report for POJO mapping for some of the Tables

    'Generate Web Service Stub/Skeleton' option in 10.1.2, was replaced by 'Generate Web Service Proxy' in 10.1.3

  • Publish Oracle Reports/Forms as Portlet

    Hai,
    Is it possible to publish Reports6i/Forms6i
    as portlet?!.
    with best regards,
    Mathan

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by bill lankenau:
    Yes
    For Reports 6i integration with Oracle9iAs Portal see the Oracle9iAS Documentation Library under "Business Intelligence Services", "Oracle Reports Service", "Publishing Reports to the Web" Section 5.4 Integration with Oracle Portal. Another resource to check out is the Reports page on OTN at: http://technet.oracle.com/products/reports/ and the whitepaper "Security Tips in Oracle Reports Services Release 6i with Oracle Portal Release 3.0".
    For Forms 6i, integration is accomplished at the URL level - simply create a portlet (HTML portlet, folder portlet, dynamic page portlet, etc.) that contains the Form's application URL. Users with a Java-enabled browser click on the link and the form is launched in a separate window. In theory you could copy the Forms applet tag within a dynamic page component, start it in place, and expose as a portlet, but will likely experience unacceptable page rendering performance waiting for the Forms applet to start.
    If SSO is important, you can configure Forms as an external application with the Login Server using Forms dynamic start feature. Be aware that Forms is using the 'get' method not the 'post' method and that you will see the username/password in the URL (this will change in a future release).
    The next generation of Forms, code named Cherokee, will provide highly interactive HTML forms directly within a portlet. Developers can use Cherokee much like they use Oracle9iAS Forms to declaratively build data entry forms that function like the Java or client/server-based forms of the past, but instead are rendered in pure HTML. <HR></BLOCKQUOTE>
    null

  • How to add a new field in Query Builder or Report

    Hi,
    I am writing a report using Oracle 6i query builder and report.
    example:
    QTY_1 QTY_2 QTY_3
    QTY_1 and QTY_2 are table fields and QTY_3 Is not. I need to show the value of (QTY_2-QTY_1) in QTY_3.
    I need to create a field QTY_3 which is not in the database table. How do I do that?
    Jun

    Hi,
    Try using formula to return the qty_1 - qty2.
    or
    select qty_1, qty_2, (qty_1 - qty_2) qty_3
    from table;
    regards,
    CB

  • Report, Form, and Data Component portlets go to error page

    I am able to add Report Form and Data Component portlets to my page, but when I click on the define button it takes me to my error page.
    Have I missed configuring something?

    hello friends,
    thanks for replly,
    i m using command noe after table node in main window, but i want display the data below the main window , it is diplaying  new page as required but only missing data below the main window.
    to be more clear i want to print all the window in first page then only go for next page , so is there any condition or parmeter in main window to go next page only agfter completion of first page.
    dont worry abt points.

  • Bug Report: Feature Request/Bug Report Form

    Re: Feature Request/Bug Report Form
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    The Feature Request/Bug Report Form does not include a drop-down option for Creative Cloud.

    Hi Stephen,
    We are collecting feature requests as idea threads here on the forums versus using that form. If you believe you have discovered a bug with Creative Cloud please post about it here on the forums.
    Thanks,
    -Dave

  • Page/Report/Form Name

    Hi All,
    Can anyone tell me which view would have the page/report/form name stored?
    Thanks in advance.
    Annie

    Hi Annie,
    You can check for Apex views by running:
    SELECT DISTINCT APEX_VIEW_NAME FROM APEX_DICTIONARY ORDER BY 1Hopefully, the names should be sufficient to determine the views you need. Once you have found one (eg, APEX_APPLICATION_PAGES), you can do a SELECT on it
    Andy

  • How to build a report in web Intelligence using Store procedure under Microsoft SQL Server 2000

    Post Author: ltkin
    CA Forum: WebIntelligence Reporting
    Hi,
    How to build a report in web Intelligence using Store procedure under Microsoft SQL Server 2000 ?
    Regards,

    Hi ltkin,
    Unfortunately, it is not possible in Xir2 to create Webi reports from stored procedures.
    Webi reports can only be created from Universe. So in Business Objects XIR3 we can create a special universe that enables Web Intelligence user's to access stored procedures residing in the database. This is the only way that Web Intelligence user's can access stored procedures.
    Please let me know if the above information helps.
    Regards,
    Pavan

  • How To Build Label Report In BI Publisher

    Hi All,
    Is it possible to build Lable report in BI Publisher.
    The requirement is to have three lable per line and each lable acts as a table.
    As per my understanding the BI Publisher report follows Top to Botton approach in For Each Loop and we need to follow left to right approach to build our report.
    Please let me know whether this is possible to build or not.
    Regards,
    Andy

    Hi,
    Is there a way to fix the data elements position within the Label Cell?
    Thanks
    Rajesh.

  • Select List (query based LOV) in a wizard created report form

    I have created an updatable report form with 3 columns:
    app_id
    user_id
    group_id
    Each app_id has multiple group_id's associated with it, and I want to show the group_id field as a Select List (query based LOV) that contains the groups associated with the app_id.
    My query for the select list needs to be similar to the following:
    SELECT DISPLAY_NAME, GROUP_ID
    FROM APPLICATION_GROUPS
    WHERE APP_ID = ?????
    ORDER BY 1
    The problem is, I don't know how to reference the app_id from the main report to replace the ?????.
    In other words, if my report returns 2 rows of data like this:
    app_id----------user_id----------group_id
    1-----------------24------------------3
    2-----------------24------------------15
    Then how do I get the group_id column to be a select list of possible groups for each application? If app_id 1 has 3 groups associated with it, 3, 4, & 5 and app_id 2 has 2 groups associated with it, 15 & 16, then those each of the select lists should be based on the app_id.
    Hopefully I explained this clearly.
    Thanks,
    Kris

    Leo,
    Thanks for the response, but I don't think you quite understand my problem. If I go to the Column Attributes screen for the group_id field, I have the "Display As" drop down set to "Select List (query based LOV)", not "Select List (named LOV)". This requires that the sql query be written in the "List of values definition" text area below. Within that text area I have the following query:
    SELECT DISPLAY_NAME, GROUP_ID
    FROM APPLICATION_GROUPS
    WHERE APP_ID = ?????
    ORDER BY 1
    The APP_ID that I need to reference is for the current row of data that is being processed. Therefore, I can't use a :PNNN_APP_ID variable, because that field does not exist on the page.
    Hopefully this explains it a little better.
    Thanks,
    Kris

  • PU19 Tax Reporter - Form 941 spool missing after 4.6c to ECC 6.0 upgrade

    Hi Experts,
    We recently underwent a technical upgrade from 4.6c to ECC 6.0.When we use PU19 tax reporter Form 941 as it is  a federal tax return form in US .When i check in job spool is not coming.Please let me know if some note is release for spool and printout put.
    Looking for your prompt response.
    Thanks & Regards,
    Ankur

    Hello Ankur,
    You need to get the Adobe Document Server running if you are going to
    print PDF files from Tax Reporter. Please have you basis group check
    that the Adobe Document Server is working correctly.
    Please use transaction SFP to test the Adobe Document Server using the
    Tax Reporter forms.
    From Adobe Document Services Implementation Guide;
    Installation Preparation
    Install a SAP Web AS 6.40 J2EE Engine or higher
    A SAP J2EE Engine on Windows is the basis for the Adobe Document
    Services.
    Therefore, before you begin with the installation, make sure that one of
    the following prerequisites are met:
    SAP Web AS J2EE engine on Windows is Installed
    The following installation types are supported:
    - SAP Web AS 6.40 ABAP + J2EE system (J2EE Add-In) or higher
    - SAP Web AS 6.40 J2EE system or higher
    For both variants the following installation options are supported:
    - Central System (Central Instance and Database Instance on one host)
    - Distributed System (Central Instance and Database Instance on separate
    hosts)
    - Dialog Instances
    For information on Adobe and the ADS I would suggest looking at the
    online documentation.
    http://service.sap.com -> SAP Help Portal -> Search on ADOBE and you
    will get the help information on configuration.
    Also review SAP Note No. 944221
    Regards,
    Manny

Maybe you are looking for

  • Adobe Reader: PDF im Browser - Kommentieren deaktiviert

    Hallo, ich erstelle mit iText ganz normale PDF's und zeige diese dann im IE8 an. Das Problem ist, alle Kommentierwerkzeuge sind ausgegraut und nicht nutzbar. Wenn ich so ein PDF direkt im Reader aufmache, kann ich das PDF auch kommentieren. Ich würde

  • Dynamic Where Clause in SQR

    How to construct dynamic WHERE clause in our sqr programming ? In my run control table I am having parameters fromdate, thrudate [mandatory parameters] and location as [Optional Parameter] how can I declare dynamic where clause to achieve this could

  • Issue with BLOB support

    All, I'm trying to use the APEX_UTIL.GET_BLOB_FILE_SRC function in a report. I'm calling the function in a report as the src attribute for an img element as follows: APEX_UTIL.GET_BLOB_FILE_SRC('P41_IMAGE_LOCATION', id). P41_IMAGE_LOCATION is configu

  • Add Classification Banner to CSV

    Is there anyway to add a classification banner to a CSV file? I've tried: select 'Proprietary Information' from dual union select * from emp; It just throws an error. Does anyone have an idea?

  • Can I show one years events on my Curve

    The User guide seems to indicate that the calendar will only show events for the display period, i.e. day, week or month.  I plan further ahead than this and would like to be able to have the calendar show events as far ahead as one year. Can this be