Help!  Replace form portlet with report portlet

I have a page with 2 column regions. The right region contains a form portlet based on a stored procedure. When the user submits the form data, I would like the stored procedure to replace the form portlet with the report portlet results.
How can I do this?
Thanks,
Ed

Hi,
You can call the report in the form success. But this would replace the page with the report. The other way is to create a page with
the report portlet and call this page in the success of the form.
Thanks,
Sharmila

Similar Messages

  • Parameter form for a report portlet

    Hi,
    What's the best/easiest method of creating a form that a user can enter parameter values which are then used to restrict query in a report portlet?
    Is there any way of doing this via the wizards / without coding? The a report portlet generated via the wizard only seems to let a user be able to specify parameter values by them first clicking the "Customize" link on the portlet.
    The form portlet wizard does not seem geared to generating a form that is simply used to enter parameters...
    Help!

    Hi,
    You cannot right now make the customization form a portlet. You can use the form to accept parameters and call the report in the success procedure by passing the columns of the form. There are lots of question answered in the forum on passing form field values to a report. That could help.
    Thanks,
    Sharmila

  • Replacing a Portlet with another portlet

    I just want to know how to call one JSP(Portlet) from Inside another JSP(Portlet). The portlet Invoked should replace the first portlet.. This is very important, can anybody answer my questionRegardsvaij

    There is a very close example in the docs about this.
    You may be able to extract the info you need from there.
    Give that a try!
    http://edocs.bea.com/wlcs310/p13ndev/portldev.htm#1025195
    np

  • Problems with report portlet in a page

    I have developed a report i Portal. When i run the report standalone it works fine. But when adding the the report as a portlet to a portal page, the next bottom does not work.
    When I push the next button I get the error
    Error: The servlet produced the following error stack.
    java.lang.ArrayIndexOutOfBoundsException: 1024
    at javax.servlet.ServletInputStream.readLine(ServletInputStream.java:69)
    at oracle.webdb.page.PageBuilder.getMetaData(PageBuilder.java, Compiled Code)
    at oracle.webdb.page.PageBuilder.process(PageBuilder.java, Compiled Code)
    at oracle.webdb.page.ParallelServlet.doGet(ParallelServlet.java, Compiled Code)
    at oracle.webdb.page.ParallelServlet.doPost(ParallelServlet.java:128)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java, Compiled Code)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java, Compiled Code)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java, Compiled Code)
    at org.apache.jserv.JServConnection.run(JServConnection.java, Compiled Code)
    at java.lang.Thread.run(Thread.java, Compiled Code)
    Does anyone know anything about this probelm?
    Regards
    Fredrik

    This is a known bug which has been fixed in the 9iAS 1.0.2.1 (portal 3.0.8) release that went out at the beginning of the month. Upgrades to that release are due to go out within the next week or so.

  • (need help) Replacing AVI files with MOV files in a edit.

    I'm working on a large edit that uses low res AVI files for editing,
    Though all the high res files are written as MOV's with exactly the same name (just being a different filetype)
    Is there a way to automaticly re-link all those avi movies with those high res MOV files?
    The edit is quite big, so it would save me a very tedious job

    Close Premiere.  Change the name of the folder the current AVI files are in.  Reopen Premiere.  When it asks you where the files are, point it to the new ones.
    The only stumbling block may be the different extension.  I'm not sure if Premiere will pass that by or trip over it.

  • 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.

  • Calculated formula for replacing a comma with a Semicolon in a text field

    I need help replacing a comma with a Semicolon in a text field.
    I have a field that has names separated by commas.  
    Ex: Dog, Cat, Bird, Horse, Eagle, Worm, Snake
    I would like a calculated column that converts the field into: Dog; Cat; Bird; Horse; Eagle; Worm; Snake
    I figured out the first three positions (Dog, Cat, Bird,) but I can't figure out the rest.
    Using the formula below.
    =REPLACE((REPLACE((REPLACE([Title],SEARCH(",",[Title]),"1"," ; ")),SEARCH(",",(REPLACE([Title],SEARCH(",",[Title]),"1"," ; "))),"1"," ; ")),SEARCH(",",(REPLACE((REPLACE([Title],SEARCH(",",[Title]),"1","
    ; ")),SEARCH(",",(REPLACE([Title],SEARCH(",",[Title]),"1"," ; "))),"1"," ; "))),"1"," ; ")
    Please help

    check the similar post
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/66e2ae2a-4da9-4c58-a8bb-cf46b1bf448f/calculated-column-to-replace-commas?forum=sharepointgenerallegacy

  • Using a Simple Parameter Form Portlet with a Report Portlet to Search DB

    My organization registers clients for workshops in iLearning.We use iPortal for our web site. I would like to use a Simple Parameter Form Portlet for clients to conduct a search on the data that is in iLearning and have it displayed in a Report Portlet on a separate page. I have been able to bring the iLearning data into the Report Portlet but I have not been successful in setting up the Simple Parameter Form Portlet to do a search on the data and then have it displayed. Any suggestions.

    hi,
    i just tested this in portal 10.1.4 and it works fine. you can fire an event and pass a parameter from a simple parameter form portlet and consume this page parameter in a portlet builder reports component. there is some documented behavior in bug 3321558 that has to do with personaliziation (customization in older releases). if you enter some personalization the page parameter gets ignored. for more information on this please contact oracle support services.
    regards,
    christian

  • Getting my report portlet, to link to my form portlet

    I am attempting to put together a portal page that has the
    following components:
    A- Form Portlet with a Pull Down that links to a
    B- Report Portlet built by a SQL Statement that links to a
    C- Form Portlet that acts like a Property Sheet from the Report
    A drives B that drives C, all within the same page, using page
    refreshes, to show the linkage after clicks.
    I have been able to put this together because, I have used the
    explanation found in the Advanced Portal Presentation put
    together by Kenneth Atkins, that can be found at
    http://www.arrowsent.com.
    It provides a really good explanation on how to link portal
    components(forms, reports, etc) using the pdk.
    I have attempted to use what he has put together, and in general,
    it is all working, as he has explained in your ppt, except the
    very last bit. Where B refreshes C
    That is, my pull down form refreshes the report, just fine.
    and then when I click on my "item" in the report, to refresh my
    detail form, it does that, but what it brings, up is the item, I
    clicked on previously. It's like the "C" Component wants to show
    the previously selected item, rather than the current one.
    I am using Portal 3.0.9, on 8.1.7, and this behaviour is
    consistent on both Solaris and Win2000
    I have included the PL/SQL code that is inserted in "Before page
    processing section" of the "C" form.
    My guess is, that I have syntax wrong in either the do_event line
    or I am not setting the rowid for the auto_query to work
    properly.
    regards
    Franco
    =================================================================
    ================================
    PROCEDURE autoquery_task_form(p_session in out
    PORTAL30.wwa_api_module_session) IS
    v_RowID VARCHAR2(100);
    v_Session portal30.wwsto_api_session;
    v_st_id varchar2(40); --STEPS.ST_ID%TYPE;
    BEGIN
    v_Session := portal30.wwsto_api_session.load_session('CONTEXT',
    'SESS_PROJECT');
    v_st_id := v_Session.get_attribute_as_varchar2('ST_ID');
    htp.p('Print Step Id='||v_st_id); htp.br;
    BEGIN
    SELECT rowidtochar(rowid) INTO v_rowid
    FROM STEPS
    WHERE ST_ID= to_number(v_st_id);
    END;
    htp.p('Print Row Id='||v_rowid); htp.br;
    -- Tell the component that the query is coming from a link, and
    that the rowid
    -- is being used to query the correct context record.
    p_session.set_value (p_block_name=>'DEFAULT',
    p_attribute_name=>'_CALLED_FROM_LINK',p_value=>'ROWID');
    -- Pass the rowid of the context record to query.
    p_session.set_value (p_block_name=> 'DEFAULT',
    p_attribute_name=> '_ROWID',p_value=> v_rowid);
    -- Now do the actual query, using the query button processing
    in the target module
    -- this seems to execute with the rowid in context of the
    previous instance i.e, Out of Synch by 1 element in an array
    PORTAL30.wwa_api_module_event.do_event('DEFAULT',
    'QUERY_BOTTOM', 1, 'ON_CLICK', True, '', p_session);
    -- Save the session information, which includes the
    p_session.save_session;
    END;

    Hi,
    It seems like we have the same problem!!!
    Look at http://forums.oracle.com/forums/message.jsp?id=539039

  • Disabling the 'Schedule' tab on the Reports Portlet Parameter Form

    Hi,
    I have deployed several Oracle Reports through Portal using the built in Reports Portlet Parameter Form and I was wondering if anyone knows how to disable the 'Schedule' tab located on this form. I would like users to run the reports but not to schedule them.
    Thanks

    Hi .
    I forgot to say that, the reports is an XML report .
    regards
    rajesh
    Hi.
    I am facing a problem with the parameter form in reports 10g. The number of parameters in this report are huge. After designing the parameter form , i save and close the report. Now if i re-open the report to do changes, the width and height of the parameter form is reduced (which i increased changed previously) and if i click on any field , that specific field is repositioning itself inside the (reduced)border lines.
    I request the forum to give a remedy on this issue.
    thanks in advance
    regards
    rajesh

  • Oracle Forms and Oracle Reports as portlets

    Please, where can I get the documentation to publish Oracle Forms and Oracle Reports as portlets. I found some information about it in metalink but the URLs are invalid.

    Hi,
    Here are the steps you need to follow while building Portlets .
    1) After creating a Application,in the last step click on the Checkbox 'EXPOSE AS PROVIDER'.
    If the application has already been created ,click on the same checkbox in the grant access section.
    2) When creating a component within the application ,select the checkbox 'PUBLISH TO PORTAL'.
    Incase ,you have already created the component then just click on the same option in the grant access section.
    Now when you want to add these portlets to be part of a page .Just select the provider(Application) and the portlets under it.
    Hope this helps.
    Anu

  • 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.

  • PASS PARAMETERS BETWEEN FORM-- REPORT PORTLET

    I have to develop a page. On the left handside of the page preferably a portlet there will be a form where user will enter all the parameters. Based on the parameters a report has to be generated on the right hand side of the page which again can preferably be a report portlet.
    Could anyone give me directions as to how to proceed.
    Eg: user selects a deptno on the parameter form on the left side, the right hand side should display report of all the employees in that dept.
    Its similar to frame driver concept but this application prohibits use of Frame drivers.
    Thanks

    Hi,
    Please take a look at this: http://technet.oracle.com:89/ubb/Forum81/HTML/000755.html
    and this: http://technet.oracle.com:89/ubb/Forum81/HTML/000572.html
    Thanks,
    Dmitry

  • Reports Portlet Parameter Form LOV Format

    Hi,
    I have created several LOV's that I want to use in the Reports Portlet Parameter Form for running Oracle Reports, but the format I am choosing when creating the LOV's is not showing correctly on the parameter form. I am picking 'Check Box' and 'Radio Group' for several of the LOV's, but they are still displaying as Dropdowns on the parameter for. Am I doing something wrong here, can the parameter form show check boxes and radio buttons?
    Thanks

    hello,
    i am afraid the answer to both questions is 'no'. i would suggest you create some HTML/JSP parameter forms for your reports. the parameter form editor of reports is very limited and for more complex requirements we suggest using other tools (or the JSP web source of reports, which is available from 9i onwards).
    thanks,
    ph.

  • Error with IFRAME portlet - please help!

    We have a portlet that renders in an IFRAME. It has stopped working, and this is the error thrown by the portal. Any help will be rewarded with 1 million dollars cash money! ;-)
    <!--Extended Error Message: A user [Administrator] with ID [1]failed to access URL [http://portal50dev.cei.cox.com:80/portal/server.pt/gateway/PTARGS_0_1_365_201_0_43/http;/portal50dev.cei.cox.com/gadgets/CEI/Custom/General/IndustryNews/gadget.aspx]Error info: [-2147205086: Cannot open page -201 because this page is not owned by the current community.] at com.plumtree.server.CIPTGadgetGateway.GetContent(Object vAppDataStateObject, String vContentID, Int32 vObject, Int32 nClassID, Int32 nPageID, Int32 nCommunityID, String bstrUserInterface, Int32 lMode, Boolean bReturnAllGadgets) at com.plumtree.portalpages.browsing.gateway.GatewayControl.CheckActionSecurityAndExecute(XPHashtable arguments) in C:\UI Source Code\portalpages\dotnet\prod\src\com\plumtree\portalpages\browsing\gateway\GatewayControl.cs:line 158-->

    Jason,
    Please provide add'l background data on this portlet.
    - Did it work previously, and what has changed since then?
    - Does it call data from other portlets?
    (That may include results that the community hosting the 'iframe' based portlet does not have security rights for view access).

Maybe you are looking for