Problem while publishing the report in web

Hi all
I need to create a report using 10g report builder and publish it in web.
I downloaded evaluation version of 10g report builder and oracle SOA suite 10.1.3.1.0 and installed in my local system.(Is the any configuration required after installation?)
report builder details are as below:
Report Builder 10.1.2.0.2
ORACLE Server Release 10.1.0.4.2
Oracle Procedure Builder 10.1.2.0.2
Oracle ORACLE PL/SQL V10.1.0.4.2 - Production
Oracle CORE     10.1.0.4.0     Production
Oracle Tools Integration Services 10.1.2.0.2
Oracle Tools Common Area 10.1.2.0.2
Oracle Toolkit 2 for Windows 32-bit platforms 10.1.2.0.2
Resource Object Store 10.1.2.0.2
Oracle Help 10.1.2.0.2
Oracle Sqlmgr 10.1.2.0.2
Oracle Query Builder 10.1.2.0.2 - Production
PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
Oracle ZRC 10.1.2.0.2
Oracle XML Developers Kit 10.1.0.4.2 - Production
Oracle Virtual Graphics System 10.1.2.0.2
Oracle Image 10.1.2.0.2
Oracle Multimedia Widget 10.1.2.0.2
Oracle Tools GUI Utilities 10.1.2.0.2
Now I am able create a report but dont know where to deploy the report so that i can publish it in web.
I read some white papers in net but could not follow the steps.
Plz guide.
Regards,
Satya

Hi Satya,
for testing purposes you can start the OC4J comming with the Developer Suite and call your report in the browser like:
http://<your-machine>:8889/reports/rwservlet?report=<your_module>&destype=cache.....
You can include in <your_module> the path to your module.
Regards
Rainer

Similar Messages

  • Problems while generating the report........

    Hi Experts,
    I have genereated a new report on purchasing data, I am facing bellow problems while generating the report,
    1) In rows one Invoice doc num is there, I am not getting result row for this object, I have given NEVER in supress result rows in properties of that object, but it's not showing.....how can i get result row for this object?
    2) I am getting '#' for the blank values, How to remove these '#"s
    Please help to solve my above problems,
    Helpful answer will be awarded with points,
    Thanks in advance,
    Venkat.

    Hi,
    1) If you have only Invoice Num it does not shows the result Row .
    2)If you display the characteristics as Key u will get as '#'. You can select as Text,then it will show 'Not Assigned'. (Hope you know that when the Values not updated from Infoprovider then # appears at output )
    Hope it helps

  • Problem while publishing the models - it is taking much time

    Hi,
    I am facing one issue while publishing the models.Previously when Re-publishing the models in Configurator processing pending publications usually took 3 to 5 minutes per model. Currently it is taking 15-20 minutes per model to process. Please suggest me the possiblities to identify the root cause of the issue.
    Thanks in advance.
    Regards,
    Purushoth

    You'll probably want to gather a trace for the Process a Single Publication concurrent request. You can turn this on by selecting ' enable trace' on the program definition. You'll need your dba to review the trace to identify which parts of the program are taking the longest.
    If you haven't run CZ Purge for awhile, try running it. Also find out how often stats are gathered for the CZ schema.
    Thanks,
    Jason

  • Getting error while executing the report in WEB

    Hello Experts,
    I have did validation in my report on selection screen, if that validation is successful then only we can see the report output
    otherwise it's give the error message.
    Validations are working query designer and RSRT but when I run the report in WEB then even if the validation is successful then also I am getting the error message and not able to see the report output.
    I have written the code in user exit for validation.
    Can any one tell me why it is so?
    what needs to do?
    Thanks
    Chetan

    Hi.
    Could you plz explain your validation logic and wich way it done ?
    Could you plz provide error message ?
    Regards.

  • Creating file on local drive while running the report on web

    I am using text_io package to write data to a file in reports. When I run it on my local machine, it creates the file (in C drive) perfectly but, when I am running this same report on the report server, it doesn't create the file. Looks like report server doesn't understand where to create the output file. I hard coded the path(C:\xyz.csv) in my report as to where to create the file, but the report server is not creating the output file. Any suggestions how to create the output file on my local machine while running on the web.

    Bhasker,
    You will have to use destype=localfile
    Please refer to appendis on commandlines in
    http://otn.oracle.com/products/reports/htdocs/getstart/docs/a92102_01.pdf
    Thanks
    The Oracle Reports Team

  • The page cannot be displayed while running the report with web link

    Hello,
    I tried to run the report using a web link similar:
    http://hostname/reports/rwservlet?report=WRFTCKL.rdf&userid=use/pass@datbase&desformat=pdf&destype=CACHE&paramform=yes
    I am able to see the parameter form, but after I entered some parameter and submit, I got an error as:
    The page cannot be displayed.
    But if I run it with the paramform=no and attached the parameter/value pair at the end of the link, the report will show on the web.
    Anyone knows what is wrong?
    Thanks.

    try this sample report from
    http://www.alexyscorp.com/products.htm
    (Download the Forms Reports Integration based on run_report_object (FMB,RDF) )

  • Problem while running the report from stored procedure

    Hi,
    I using stored procedure to generate my report.
    my stored procedure's code looks like this.
    CREATE OR REPLACE PROCEDURE PROJECTOVERVIEWREPORT1(query in VARCHAR2)
    IS
    myPlist SRW_PARAMLIST;
    myIdent SRW.Job_Ident;
    myStatus SRW.Status_Record;
    BEGIN
    srw.start_Debugging;
    myPlist := SRW_PARAMLIST(SRW_PARAMETER('',''));
    srw.add_parameter(myPlist,'GATEWAY','http://localhost:8888/reports/rwservlet');
    srw.add_parameter(myPlist,'SERVER','rep_kalyan1');
    srw.add_parameter(myPlist,'REPORT','BillFormat.RDF');
    srw.add_parameter(myPlist,'USERID','atl3_dev_jul04/atl3_dev_jul04@mgi');
    srw.add_parameter(myPlist,'destype','file');
    srw.add_parameter(myPlist,'desformat','pdf');
    srw.add_parameter(myPlist,'documentnumber','17181');
    srw.add_parameter(myPlist,'papertype','N');
    srw.add_parameter(myPlist,'desname','c:\temp\17181.pdf');
    myIdent := srw.run_report(myPlist);
    myStatus := srw.report_status(myIdent);
    srw.stop_Debugging;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    NULL;
    WHEN OTHERS THEN
    NULL;
    END PROJECTOVERVIEWREPORT1;
    Iam running the oc4j instance and the report server in my local machine.
    when i have typed http://localhost:8888/reports/rwservlet
    Iam able to see the help page.
    My rdf file is placed in OralceHome/reports/integ folder.
    Iam executing my stored procedure it is returning some error.
    Iam doing any thing wrong.
    Do i need to modify anything.
    Is the place of rdf file correct.
    plz help me solving the above problem.
    --Kalyan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    This is the error message iam getting..
    any idea????
    * WELCOME TO EVENT-BASED-REPORTING API *
    * API-Version : 9i *
    * (C) Oracle Corporation, 2000 *
    * Debugging turned ON *************************************
    *** Length of Paramlist : 1
    OK : Parameter added : GATEWAY=http://localhost:8888/reports/rwservlet
    *** Length of Paramlist : 2
    OK : Parameter added : SERVER=rep_kalyan1
    *** Length of Paramlist : 3
    OK : Parameter added : REPORT=BillFormat.RDF
    *** Length of Paramlist : 4
    OK : Parameter added : USERID=atl3_dev_jul04/atl3_dev_jul04@mgi
    *** Length of Paramlist : 5
    OK : Parameter added : DESTYPE=file
    *** Length of Paramlist : 6
    OK : Parameter added : DESFORMAT=pdf
    *** Length of Paramlist : 7
    OK : Parameter added : DOCUMENTNUMBER=17181
    *** Length of Paramlist : 8
    OK : Parameter added : PAPERTYPE=N
    *** Length of Paramlist : 9
    OK : Parameter added : DESNAME=c:\temp\17181.pdf
    Starting run_report: building url
    *** Building URL (RUN_REPORT)
    OK : URL built : http://localhost:8888/reports/rwservlet?SERVER=rep%5Fkalyan1&REPORT=BillFormat%2ERDF&USERID=atl3%5Fdev%5Fjul04%2Fatl3%5Fdev%5Fjul04%40mgi&DESTYPE=file&DESFORMAT=pdf&DOCUMENTNUMBER=17181&PAPERTYPE=N&DESNAME=c%3A%5Ctemp%5C17181%2Epdf&statu
    *** Submitting HTTP Request
    *** using URL :http://localhost:8888/reports/rwservlet?SERVER=rep%5Fkalyan1&REPORT=BillFormat%2ERDF&USERID=atl3%5Fdev%5Fjul04%2Fatl3%5Fdev%5Fjul04%40mgi&DESTYPE=file&DESFORMAT=pdf&DOCUMENTNUMBER=17181&PAPERTYPE=N&DESNAME=c%3A%5Ctemp%5C17181%2Epdf&statusf
    ERROR : HTTP request failed

  • Problem while running the report from a form

    Hi,
    I am able to call a report from forms9i using run_report_object. This report just has a boilertext within it. I did this just to check the functionality of run_report_object built-in. This worked perfectly.
    But when I am trying to call a report based on emp table from the form, it gives me error saying that it cannot run the report.
    Can anyone please help me.
    Thanks
    Narain

    Hi Ino Laurensse ,
    Thanks for the response.
    The error code and message is as follows
    frm-41214 Unable to run report.
    I am able to call from forms9i a report with some boilertext but not a report accessing the database. Thro' out I have never changed the username.
    The following are the changes I made
    In the rwservlet.properties
    I specified the
    reportserver name = repsrv ( I created it and started from the services)
    singlesignon = no
    I am able to run the report which is accessing the emp table from the report builder with the same user as the one which I am using in forms, but, the same I am not able to call from forms.
    thanks
    Narain

  • While Refresh the report in webi i got database error.

    Hi All,
    I try to refresh the report in CMC i got database error . Can any one please help me how to resolve this.
    Regards,
    Arjun

    Hi Mallikarujun,
    Try selecting the values using show values for particular column in Universe.
    If that is fine and you are using SQL Server then the query is returning more that 2147483647 which is the limit for the return count by SQL Server (4 Bytes).
    There may be issue in join condition, if not try applying filter in query

  • Problem while publishing the service

    Hi,
    I have installed the SAP netweaver Trail sP1 Preview JAVA EE server.
    I have also installed the Preview _Dev Studio.
    The Application server is up and running fine
    http://<hostname>:50100/
    I followed the
    "Web Services Testing and SAP NetWeaver Application Server, Java EE 5 Edition"
    arcticle written by Mamoon Yunus.
    I could create the web service as mentioned in the document.
    But when i try to publich it it fails it gives aerror message "Publishing failed".
    One thing which i noticed is the Webservice is try to published on http://<hostname>:50000/ and thats the reason i think the publishing fails.
    How can i chage the port number form 50000 to 50100.
    What ahsould be steps followed form developer studio
    Best Regards
    Manoj

    Hi Vladimir,
    Thanks for the help.
    I could test the webservcie with the SOAPSonar tool and it worked fine.
    Only one thing i would like to address
    is that the p;ublishing of the webservice on the SAP server was very slow.
    For almost 3 hours the dialog was showing  "publishing.......".
    Then finally i cancelled it and i got a message that service was deployed sucessfully.
    I had the windows 2003 server m/c with 1GB RAM on whihc both the SAP server and netweaver studio was running.
    Can this be the problem of slow publishing
    Best Regards
    Manoj

  • Problem while navigating the different portal Web Dynpro application

    Hi .
    while navigating from one application to another.
    my IE browser stuck with the error.
    Can't execute the code from the freed script.
    it occurs:
    when i navigate from tree structure 's child to another web dynpro application.
    what to do ...
    Regards

    Hi John,
    How have you added the required jar files. For DC projects you cannot use project properties and add the jar files to the build path (In case you have followed this method).
    You will have to add the public part (i believe it is ejbclient.jar and is generated automatically when you create an EJB DC) of the EJB DC as used dc.
    Regards
    Sidharth

  • Problem while Creating the LEAD through WEB UI

    Hi,
    I am trying to create Lead from WEB UI. But, it is asking Sales Rep., but I am not able to find that field in the WEB UI.
    And In the Status field, I am able to See only 2 statuses, "Open" and "In Process".  I am not able to see any other status like "Rejected By Sales" and "Closed".
    Can you please let me know the reason for this. Do we need to do any configuration or Coding Related , to achieve this.
    Thanks,
    Sandeep

    Hi,
    You can enter partners (Sales Rep) in Lead in assignment block Parties involved , for additional status check your status profile attached to transaction lead, also check lowest and highest value in status profile.
    Regards,
    Dipesh.

  • Error F107:Restrict Period while running the report RFUMSV50

    Hello Experts,
    I am facing the problem while runing the report RFUMSV50.
    I am running it first time and getting this error F107:Restrict Period
    Kindly guide me
    Regards
    Naveen

    Hi Naveen
    Before execute select the variant which is already defined.
    Regards,
    Anji.
    Edited by: anjiee on May 11, 2010 1:17 PM

  • Error while executing the report to display on the web in BI 7.0?

    Hi All,
    In BI 7.0, Getting Error while executing the report to display on the web?
    The error message displayed is:
    " Network Access Message : The website cannot be found ".
    Source: DNS error.
    Why this error is coming.
    Wht needs to be done.
    Thanks in Advance.

    Hi Kishore,
    All the configurations are in proper shape.
    We need to change any IP adresses or proxy settings in the Internet explorer (Tools -> Internet options -> Connections -> LAN settings -> etc.,)
    Do We need to configure any server address for getting the output to display on web pages in BI 7.0.
    EP is not configured over here. Is that causing the problem.
    Thansk in Advance.

  • Problem while exporting the data from a report to an excel file.

    Hi SAP guru's,
    I have a problem while exporting the data from a report to an excel file.
    The problem is that after exporting, the excel file seems to have some irrelevant characters....I am checking this using SOST transaction..
    Required text (Russian):
    Операции по счету                                    
    № документа     Тип документа     № учетной записи     Дата документа     Валюта     Сумма, вкл. НДС     Срок оплаты     Описание документа
    Current Text :
       ? 5 @ 0 F 8 8  ? >  A G 5 B C                                   
    !   4 > : C       "" 8 ?  4 > : C      !   C G 5 B = > 9  7 0 ? 8 A 8        0 B 0  4 > : C         0 ; N B 0      ! C <       ! @ > :  > ? ; 0 B K        ? 8 A 0 = 8 5  4 > : C
    Can you help me making configuration settings if any?
    Regards,
    Avinash Raju

    Hi Avinash
    To download  such characteres you need to adjust code page to be used during export. You can review SAP note 73606 to identify which code page is required for this language
    Best regards

Maybe you are looking for

  • Trying to play movie thru mini DVI port -  display keeps switching back to desktop(?)

    I'm not able to play a movie continously to my TV through the dvi port (via hdmi cable) using display mirroring. Picture shows up OK, but after the movie runs a very short time attention shifts back to the iTunes control screen. I've successfully mir

  • To test how can we use the opt  'logical file name' to name the file based

    Hi Sir/Madam,            to test how can we use the opt  'logical file name' to name the file based on the selection made in the dtp run for extracting data as flat file.

  • ITunes corrupted music on iPod touch

    I connected my 32GB iPod touch to the computer this morning and found that it immediately corrupted all the music on the ipod and made it inaccessible. The normal screen came up to do the sync, but then the "Capacity" display showed 15GB classified a

  • Did ios7.4 help the ipad sync with itunes

    did the update of ios 7.4 help the ipad sync with itunes - songs not playing

  • 关于weblogic的运行模式: product & develop

    $BEA_HOME/user_projects/domains/mydomain/applications 这个applications目录提供了一个deploy applications的快速途径,在你的weblogic服务器被安装/配制成development的模式下. 当weblogic server的实例运行在development的模式下,系统会自动的配置你所置入的applictions文件,并提供运行. 目录下的文件格式/结构为: * 一个标准的j2ee application *