Displaying Report in Web layout

Hello All,
Can anyone please tell me how to display reports in web layout during runtime. I've created a report in month_report.jsp, having both Web Layout & Paper Layouts. At runtime when I call the report the Paper Layout version is getting displayed. Is there any extra parameter I've to pass.
For Example if I give the following address
http://host-110:7778/reports/rwservlet?&report=month_report.jsp&destype=cache&desformat=htmlcss&userid=admin/test@testing&p_month=JANUARY
I get to see the Paper Layout version of the report. What I want is the Web layout. Is there any thing or any setting I've change in the Reports server. Kindly help me out on this.
Regards,
Arun.V

Thanks Frank,
No one seems to giving me a reply in the reports forums. They are hard to come by. Could you please direct me to some post which might be helpfull. I just want to know whether there's something wrong with the way I'm calling the report... May be thats the reason that I'm getting the Paper Layout as output instead of Web Layout.
Regards,
Arun.V

Similar Messages

  • Displaying a Report in Web Layout

    Hello All,
    Can anyone please tell me how to display reports in web layout during runtime. I've created a report in month_report.jsp, having both Web Layout & Paper Layouts. At runtime when I call the report the Paper Layout version is getting displayed. Is there any extra parameter I've to pass.
    For Example if I give the following address
    http://host-110:7778/reports/rwservlet?&report=month_report.jsp&destype=cache&desformat=htmlcss&userid=admin/test@testing&p_month=JANUARY
    I get to see the Paper Layout version of the report. What I want is the Web layout. Is there any thing or any setting I've change in the Reports server. Kindly help me out on this.
    Regards,
    Arun.V

    Thanks for your reply dsegard,
    I tried out your suggestion. It seems the I'm able to access the jsp report. But I'm getting the following error on screen.
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    A name was started with an invalid character. Error processing resource 'http://host-150/test/monthly_rpt.jsp'. Line ...
    <%@ taglib uri="/WEB-INF/lib/reports_tld.jar" prefix="rw" %>
    -^
    I checked by accessing a simple jsp page without a tag library. It's worked fine. I also checked to see whether the corresponding jar file was missing from the library.But it wasn't. Could you please point out what's causing this error.
    Regards,
    Arun.V

  • Run 10g Report in Web Layout

    Hi,
    I am using Report Builder:10.1.2.0.2 installed on Windows XP (Service Pack 3) and developed simple report. We are using Oracle E-Business Suite R12 and developed report by connecting to the EBS database.
    I have created "Data Model" and designed "Paper Layout". After compiling the report when i tried to run report using "Paper Layout" report generates the report in Paper layout but similarly if i try to to run the report using "Web Layout" then it opens blank Internet Explorer page. I want to see same output with Paper Layout is displaying using Web Layout too. Please guide me with steps i need to perform to achieve the requirement..
    Regards,
    Priyanka

    Hello,
    The web layout (that is, the web source) is primarily used for the .jsp format for added flexibility via the web for web developers using Oracle Reports.
    You will need to add your own code to the "Web Source" in order for anything to be displayed in the web layout. Additionally, any changes made to the Paper Layout will not cross over to the Web Layout per confirmation with Development. You may use the rw:include tag in the Web Source (see Help) to obtain some of the paper layout in your web layout.
    Having a rdf file with only a paper layout, does not mean that this report when run will not display in a web page.
    You can still perform the following with Oracle Reports 9i or higher and use the .rdf to display the paper layout from the web:
    http//webserver.domain:7779/reports/rwservlet?report=you_report.rdf&destype=cache&desformat=html&userid=scott/tiger@db
    Kind regards,
    Alex
    If someone's answer is helpful or correct please mark it accordingly.

  • Problem running report in web layout

    Hi
    I have a problem of running my report in web layout.
    If i run the report in web layout it does not show the changes that i made to it , the colors and text sizes and styles, if I used no templates and changed the report manually it will just show the report as before it was modified.
    But when I run it in paper layout every works fine.
    Any ideas about what I'm doing wrong?
    Thanks

    Also I tested with the sample Report Test.rdf (Comes along with installation).
    Even that runs well in Paper Layout and report hangs when run in Web Lay out.
    Please help me with your valuable inputs on this regard.
    Thanks and Regards,

  • Paper Layout displayed instead of Web Layout

    Hello All,
    I've developed a report in Reports 10g and saved it as a jsp file, having both paper & web layout. I've also designed a form in Oracle forms 10g with a list item displaying the list of all reports available. I've written the following piece of code to run the report selected.
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(200);
    rep_status VARCHAR2(20);
    rep_location varchar2(100);
    pl_id paramlist;
    d date;
    DF VARCHAR2(10);
    BEGIN
         IF(:rbg=1) then
              df:='pdf';
         else
              df:='htmlcss';
              end if;
    repid := find_report_object(:REPORT_LIST);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,cache);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,df);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'rep_devserver');
         IF(:report_list NOT IN ('APTC_ANNUAL_RPT')) THEN      
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=YES P_USER_CONNECT=ADMIN/PINNET@PINNET                         P_SERVER_NAME=rep_devserver P_ACTION=http://pin-150:7778/reports/rwservlet?');
         v_rep := RUN_REPORT_OBJECT(repid);
         ELSE
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=NO P_USER_CONNECT=ADMIN/PINNET@PINNET                         P_SERVER_NAME=rep_devserver P_ACTION=http://pin-150:7778/reports/rwservlet?');
              v_rep := RUN_REPORT_OBJECT(repid);
         END IF;
         rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
         LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
         WEB.SHOW_DOCUMENT('http://pin-150:7778/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=rep_devserver','_blank');
    ELSE
    message('Error when running report');
    END IF;
    END;
    Now after this piece of code gets executed I get to see a JSP report in Paper Layout format. But I want the Web Layout to be displayed. Can anyone please tell me what I've to do to get the desired output in Web Layout.
    Reagards,
    Arun.V

    Hello Francois,
    Thanks for the reply. As per my code "df" actually is a variale which stands for the format of the output, which is determined by the users selection(in this case a radio group) in the form. DF stands for either "pdf" or "htmlcss".
    The following is the code I've used to determine the users preference which can be found within my original posting.
    DECLARE
    df varchar2(10);
    BEGIN
    IF(:rbg=1) then
    df:='pdf';
    ELSE
    df:='htmlcss';
    END IF;
    END;
    Kindly point out to me if there are any errors in the way I've written this code.
    Thanks & Regards,
    Arun.V

  • About displaying report in web ?

    Will everything be displayed in web using oracle 10g ?
    Do I need to install any software on the client machine if I want to generate paper report ?
    The report format displayed in web and paper layout are different, can I adjust the web layout to display the same as paper layout ?
    Thanks.

    Since Oracle Application Server 9i Rel2 (9.0.2) everything is web only. For a user to get his Reports he only needs a browser, and Acrobat Reader if he wants PDF Reports.
    Paper Layout = html, htmlcss, PDF, file, printer etc
    Web Layout is programmed in jsp and is most bound to html
    For more information about Reports:
    http://www.oracle.com/technology/products/reports/
    Regards,
    Martin

  • Pls help me to track post print event in reports 10g (web layout)

    I am displaying a report on the web using WEB.SHOW_DOCUMENT built in after calling it from Forms. I want to update some attribute in the database after the report is printed. Where can i place the update statement.
    note:I dont need solution for the reports printed using paper layout.
    Thanks in advance.

    Mr. Marcos, The problem is After-Report trigger will fire when the report is printed in paper layout. when the same report is printed in web layout the After-Report is not firing. It seem that the update code should be included in the Web-Source tab in Object Navigator but I don't know how to script it.

  • Deploying report in web layout.

    Hi Friends,
    I have developed a report throuhg report builder 9i for both web and paper layout. When I am running this paper layout mode the output format is appearing perfectly but in case of web layout not is appearing properly as well as item with VISIBLE property 'NO' is also appearing.
    Please give the solution bit details probably with eaxmple.
    Thanks in advance.
    Sanjeev

    Sanjeev,
    Paper and WebLayout are using different informations. For Paper Layout the "classical" Model with fields and frames and corresponding properties is used. For the Web Layout the WebSource (see in Object Navigator) is used. So changing a property in paper layout will not change the web layout (with the exception of using the include-tag in the web source, which references a frame with content from the paper layout).
    regards
    Rainer

  • REP-56092 WHEN RUN REPORT IN WEB LAYOUT

    I have installed report 9iDS and can run report in paper layout without any problem.
    However , when I press "Run Web Layout" button , I get message
    rep-56092 NO CLASS DEFINED FOR DESTINATION TYPE SCREEN WHEN RUN WEBLAYOUT.
    Do anybody has idea why this is happening??

    Hi
    If the ENVIRONMENT is Sun SPARC and
    NLS_LANG: Traditional Chinese_Taiwan.ZHT16MSWIN950 , then it is a known problem. There is a bug 2332838 filed for this issue.
    regards
    ~sudha

  • Display mode in WEB layout

    Hi,
       In the folder,a user can access layout in display mode by use t code UPSPMD, the other use can still do the planning bu use t code UPSPL,
       How can we achived the same goal in the web layout?
    Thanks,

    Hi Nataraj,
       Thanks for your reply. Here is how I test it.
       I have two web applications which is indetical except under one of them, the "only ready for output" is set to trune and the other one is set to false.
       Now I open one web application, and when I tried to open the second one, I get the message indicate that the planning area is locked.
       I did another test again. this time I tried to open the same application twice- this application's "only ready for output" is set to true, it still fail when I tried to open the same application twice,
       Do I have to configure some other attributes? I am also in BW3.5 version.

  • How to run a report as Web Layout

    I've just created a simple report and I've run it as Paper Layout. All works well.
    If I try to run it as Web Layout, it waits for a while and then nothing happens.
    As for Oracle Form I've never had such problems, so when I run a form, soon the form gets on the default browser.
    For Oracle Reports do I have to set anything particular? Why doesn't the report open automatically when I run it as Web Layout?
    Thanks in advance

    What is your Reports version and what is the default browser? E.g. Developer 10g does not work with Firefox (see note 419414.1).

  • Displaying reports in web dynpro view

    Hai all,
              Iam working on a project in webdynpro which is used for the newly joined employees to fill their personal info.After they do that I need to display the reports to the Admin to Process the request for generating employee id.I have never worked with reports in web dynpro.All I need toknow is
    --->Coding for getting the reports containing the requests and displaying them in the view.
    Also this project is done using SAP HR---IS there any change in coding to retieve data from backend when using SAP HR.
    Any help and answers will be appreciated.
    Thanks n Regards
    Sharanya.R

    Hi,
    You can try using UI element Iframe.
    URL can be mentioned in source property of Iframe as http://www.google.com.
    Re: How to Add URL in a view .
    Regards
    Manas Dua

  • Problem Running Reports on Web layout

    Hi Gurus,
    I am using Oracle Developer Suite 10g Release1 and I am using OS Windows XP.
    I created a Barcode Report and I am trying to run it via web and it is hanging.
    Can you please let me know y this is happening. I am using Oracle 10g DB.
    Thanks and Regards,

    Also I tested with the sample Report Test.rdf (Comes along with installation).
    Even that runs well in Paper Layout and report hangs when run in Web Lay out.
    Please help me with your valuable inputs on this regard.
    Thanks and Regards,

  • Using Reports in Web Layout Editor

    I am tring to figure out how to use the commit date of a document to the repository in a historical or active report. I have the option of release date but this will not work for the SLA metrics that I am trying to gather as some documents enter workflow and are not released until the document is approved.
    Does anyone know how to use the date of commit to create a report?
    Thanks
    Data_bitz

    In order to use parameters you need to develop 2 pages in JSP.
    The first page is where you request the information from the user. The second where you display the data based on those parameters.
    1st page.
    This is essentially a html page with a form. Forms include a method="post" or "get" and an action= "2ndpage.jsp"
    In the form you can use check boxes, radio button, drop down menu etc. Each will have a name. I.e:
    <form name="form1" action="pageName.jsp" method="post">
    <select name="P_TEAM" class="OraCellText">
    <rw:foreach id="team" src="G_TEAM">
    <option value="<rw:field id="f_Id" src="TEAM"></rw:field>">
    <rw:field id="f_desc" src="TEAM"></rw:field>
    </option>
    </rw:foreach>
    </select>
    </form>
    What i'm doint in this page is displaying a list of departmentsl team in the form of a drop down menu. The user select an option from the list and hit the submit button as per below.
    <input type="hidden" name="name" value="userId/[email protected]">
    <input type="submit" name="Submit" value="Start Search!" class="OraCellTextCenter"
    2nd page.
    In this page the query will have a parameter in the where clause and the parameter name will be P_TEAM as this is the name of the drop down menu.
    SELECT PRO.SITE
    ,UPPER(A.ASSIGNEE)ASSIGNEE
    ,COUNT(C.CALLID) COUNT
    FROM CALLLOG c
    WHERE C.CALLSTATUS<>'Closed'
    AND A.GROUPNAME = :P_TEAM
    This is just an example (simple). There are other ways.

  • Report Web Layout

    I am using Oracle 9iDS Report Builder
    I have built a report that is supposed to generate data in Arabic. Once i generate it as a paper layout the characters, whether the numbers or letters, are displayed correctly.
    The PROBELM is when i run the report as a WEB LAYOUT, the arabic letters only are displayed in English, not as fuzzy characters, normal English characters as the ones i am writing now, only they are capital and include brackets (, or ).
    There is no problem with the browser language settings, as it runs web pages in arabic. Also, i have set the NLS_LANG to the arabic.
    Notice that when i run the same forms in Arabic in retrieves and accepts arabic characters correctly.

    iam facing the same problem as
    I'm using Report Builder 9.0.0.0.33, Oracle Developer Suite10g 9.0.4.0.1, Oracle Database 10g Release 2, and NLS_Lang is American_America.AR8MSWIN1256
    I have two problems
    1- I have a report which retrieve data from database, these data contains Arabic words. Arabic characters can display properly on Paper Layout. However, when I run report on Web Layout, Arabic characters are changed to ?????? characters
    2- When I make a new report and change in its prosperities like format mask, fonts, and color, these changes can display properly on Paper Layout. However, when I run report on web Layout, these effects doesn't appear at all.

Maybe you are looking for

  • ORA-19279 How do I write a query to return the data?

    I have XMLType tables in Oracle 11. I insert XML data from documents and each table only contains one XML document. I can write queries to return outer tags and inner tags but not outer and inner tags in the same result set. There can be one to many

  • How i can connect developer 6i & 2000 to databse 10g standerd-one

    How i can connect developer 6i & 2000 to databse 10g standerd addition one

  • OM11g: Dynamic notifications on different user objects.

    Hello On the User object, I have 3 custom attributes. These attributes are of type "Checkbox". I'd like to notify an administrator when any one of these attributes change value. For example: Attribute1: Head Office Access Attribute2: Remote Office Ac

  • Location indicator constantly on

    My location indicator is constantly on. I have iphone 5s running ios7.0.5. I have shut off background app refresh, I have no apps running, and I have checked location settings to find no purple location indicator near an app name. I went through the

  • View text messages by date iPhone

    Hi, I have an iphone 4 (not 4s) my phone company is chargin me an incredible high number of text messages while I was out of the country, that was 2 months ago.  I want to know if there is a way to look for messages by date and not by person I texted