Repository reports cannot generate HTML report

Hello
In our Computing Labs, we have Oracle9i Designer installed on Windows XP Professional.
Our students are having a problem when they try to Run Report in Repository Reports.
The student first sees an error message for Internet Explorer that says "Cannot find "file:///c:/docume~1/%username%/LOACLS~1/Temp/ck*.tmp.html". Make sure...". %username% of course being the current user and ck* being the filename of the report.
If the user examines the contents of ~/Local settings/Temp, they will see that when this error message comes up, there is a file ck*.tmp (no HTML extension). The HTML file is never generated though.
When the user click on the OK button for the error message, Internet Explorer open to a blank page. When IE is closed, Repository Reports posts a message that says "CDI-21309: Unable to delete file c:\docume~1\%username%\locals~1\Temp\ck*.tmp.html". When the OK button from this message is clicked the user is returned to Repository Reports, but the report is never generated.
Our users are set up as Dynamic Local Users, and are members of the Power Users group. We do have some pretty tight restrictions on Group Policy.
When a user who is a member of Administrators (also dynamic local user) logs in and attempts to create a report, (s)he has no problem. Repository Reports functions exactly as it should.
I have already given Power Users complete access to all files on the hard drive, so I don't think it could be an NTFS file permission issue.
If anyone has any advice, it is certainly welcome. Our students need to be able to print off these reports for classes, and I am not familiar at all with Designer.
Thank you very much
David Summers
University of Idaho ITS
Student Computing Labs

Here is how I resolved my problem with non admin users not being able to run reports.
Designer 9i ver 9.0.2.80.6
Repository Reports ver 9.0.2.80.4
Problem - When non Administrator users try to generate a report in Repository Reports, they either get a file not found error for the HTML report (and IE will not show the report) or Repository Reports stops responding (and rwrun.exe has to be manually killed).
Fixes
-%TMP% and %TEMP% environment variables must resolve to paths that are fewer than 30 characters. In our environment (WindowsXP with Novell Dynamic Local Users), %TMP% and %TEMP% were the temp folders in the user's profile, which is a long path. Changing the environment variables to point to c:\temp was one step in resolving the issue. Although there is a patch released related to this, my installed version is post-patch and I still had to change the temp environment variables.
-HKLM\SOFTWARE\ORACLE\HOME0\REPORTS_TMP must be set to a writable area for the user group using Designer and Reports. In our environment it was set (during install) to the local administrators temp space (in administrators local profile) - I'd guess it gets set to whatever %TMP% or %TEMP% is for whichever user installs the application. Our users cannot write to this folder, so setting this registry value to c:\temp was another step in resolving the issue.
-c:\OraHome1\reports\logs must be writable for whichever user group is running Reports. Before making this change but after making the previous two changes, reports would simply freeze for Power Users. When trying to log off, rwrun.exe had to be manually killed - and sometimes a Dr Watson report would come up and ask to be sent in. By granting the user group that uses Reports write permissions to this folder (or the equivalent in your environment), Repositry Reports no longer freezes and successfully generates the HTML report.
David Summers
University of Idaho ITS
Student Computing Labs

Similar Messages

  • Generate HTML report with ANT

    Hello,
    I'm  new to FlexPMD. I have just generated my firsts reports. I try to generate HTML reports.
    I browse the documentation, this forum and the web and I find informations to :
    - generate documentation with Hudson
    - generate documentation with Maven
    - generate documentation with XSLT pmd.xml -> html
    Ok, I try to keep it simple. So I don't want to use Hudson.
    I'm using ANT, and I currently don't want to install/learn Maven.
    I'm using FlexUnit with ANT. And It's really simple to generate reports :
    <junitreport todir="${report.flexunit.loc}">
                <fileset dir="${report.flexunit.loc}">
                    <include name="TEST-*.xml" />
                </fileset>
                <report format="frames" todir="${report.flexunit.loc}/html" />
    </junitreport>
    I'm really new to FlexPMD, so I don't have currently a big knowledge, but it seems impossible to generate a HTML report just like junitreport. (1 line in an ANT task)
    I test the XSLT transformation found on this forum (thread "XSLT pmd.xml -> html"). It's really cool. But it's seems difficult, for example, to extract the wrong code part and add it to the HTML page.
    So, what is the simpler solution to generate HTML report just with FlexPMD/ANT ?
    Thanks !

    Hello,
    Currently you generate a PMD report with ANT  like this :
    <! -- define taskdef  -->
    < taskdef name="pmd"  classname="com.adobe.ac.pmd.ant.FlexPmdAntTask"  classpath="${build.pmd.loc}/flex-pmd-ant-task-${flexpmd.version}.jar">
             < classpath>
                 < path refid="flexpmd.base" />
                 < pathelement  location="${build.pmd.loc}/commons-lang-2.4.jar" />
                 < pathelement  location="${build.pmd.loc}/flex-pmd-core-${flexpmd.version}.jar" />
                 < pathelement  location="${build.pmd.loc}/flex-pmd-ruleset-api-${flexpmd.version}.jar"  />
                 < pathelement  location="${build.pmd.loc}/flex-pmd-ruleset-${flexpmd.version}.jar"  />
                 < pathelement  location="${build.pmd.loc}/plexus-utils-1.0.2.jar" />
             < /classpath>
    < /taskdef>
    then generate XML  report like this :
    < pmd  sourceDirectory="${src.loc}" outputDirectory="${report.loc}"  ruleSet="${build.pmd.loc}/rules.xml"/>
    The  XML contains some file nodes :
    < file  name="/Users/user/workspace/AS3_UTILS/src/utils/align/gridAlignSpaceNumber.as">
           < violation beginline="22" endline="22" begincolumn="0"  endcolumn="27" rule="adobe.ac.pmd.rules.naming.TooShortVariable"  ruleset="All Flex Rules" package="utils.align"  class="gridAlignSpaceNumber.as" externalInfoUrl="" priority="5">This  variable name is too short (3 characters minimum, but 1 actually).  Detects when a field, local, or parameter has a very short name<  /violation>
    < /file>
    The  message is in the text node  < violation>TEXT< /violation>
    For  me, we miss an important part of the message : the portion of the "bad"  code.
    It could be very usefull if PMD can generate  something like this :
    < file  name="">
           < violation beginline="" endline="" begincolumn=""  endcolumn="" rule=""  ruleset="" package=""  class="gridAlignSpaceNumber.as" externalInfoUrl="" priority="">
            < description>TEXT< /description>
            < code><CDATA[MY CODE
    MY CODE
    MY CODE]>< /code>
        <  /violation>
    < /file>
    With this, we can  generate "full" HTML report with XSLT transform easily.
    I  understand that it modify the standard XML schema of the output.
    So,  perharps it could be an option like this :
    < pmd fullDescription="true"  sourceDirectory="${src.loc}"  outputDirectory="${report.loc}"  ruleSet="${build.pmd.loc}/rules.xml"/>
    What do you think ?
    Thanks !

  • Generate HTML REPORTS Help

    hai....
    i am new to this field i need some help regarding how to generate html report ... well i am using db2 as my database .....and these reports are not crystal reports.....
    i have to generate some fields information from multiple tables in the database...
    thank you

    Apex does not as yet support PDF printing out of the box. At this stage your options are;
    1. Wait for the release of Apex 3.0 (evaluation instance is now available).
    2. Use FOP to generate PDF output (probably not for a novice user). See this link;
    http://www.oracle.com/technology/pub/notes/technote_htmldb_fop.html
    3. Purchase a product such as PL/PDF
    http://www.plpdf.com
    cheers,
    Ron

  • Cannot generate a reports region with a search field in an existing app.

    I have not found a way of generating a reports region with a search field on an existing page in an existing application.
    Can anyone help?
    n.b. I am using htmldb with Oracle XE

    If it's DPS no. There is no native search available.
    You'd have to do the entire thing in HTML.
    Bob

  • Maven : Generate html report

    Hi all!
    I would like to know how to generate the html report with the maven plugin.
    It's said that "Currently, FlexPMD produces a XML report by default, plus an HTML report when invoked by the Maven site plugin."
    I added the section correponding to the FlexPMD in my pom project as following :
                <plugin>
                    <groupId>com.adobe.ac</groupId>
                    <artifactId>flex-pmd-maven-plugin</artifactId>
                    <version>1.0.RC4</version>
                </plugin>
    but when I do a site generation, it just generates me a pmd.xml report with the violations (good!) but the flexpmd.html report generated is empty (there are just the default informations about my project but nothing about pmd).
    If someone has allready configured flexpmd on his maven project, I will be happy to have some help please!
    Thanks'

    Hi
    We didn't modify anything to get the HTML report. We just download the source code of "flex-pmd-maven-plugin", modify the version in the pom to "1.0.RC4", and launch "mvn clean install"
    This will install the plugin and download all dependencies in your MavenRepository
    Then in the pom of our flex project we define the plugin in the <build><plugins> section and also in the <reporting><plugins> section , like this :
    <plugin>
         <groupId>com.adobe.ac</groupId>
         <artifactId>flex-pmd-maven-plugin</artifactId>
         <version>1.0.RC4</version>
    </plugin>
    Then in the top level of our flex projet (the same level of the pom file) launch "mvn clean site"
    This will generate the flexpmd.html in the target/site directory.
    Hope it will help !

  • How to Generate HTML Report Output in Excel

    Dear Experts,
    How to convert HTML report output in Excel.
    I have reports which output is coming in HTML format & the same I want to use in Excel.
    So tell me how I can covert the same in Excel.
    Thanks
    Sudhir

    hello,
    in your case, you might want to make the following :
    a) use DESFORMAT=HTML
    b) use MIMETYPE=application/vnd.msexcell (or whatever mimetype your excel application is bound to)
    i am nor sure if excel will understeand our HTMLCSS (which is actually HTML4.0 using layers for best possible rendering of the paper page in the browser).
    regards,
    the oracle reports team

  • Generate html report

    I need to add text to my html report as my VI is running (or after all VI's are finished running). I have different sub-VI, and my html report has to include the result for all of the test. How do I code LabView to append text as each test is finished? Thanks

    Just a quick example.
    Also, try looking at Example HTML Report from:
    Help Menu> Examples...> Advanced > Report Generation
    Cheers!
    ian
    Ian F
    Since LabVIEW 5.1... 7.1.1... 2009, 2010
    依恩与LabVIEW
    LVVILIB.blogspot.com
    Attachments:
    example_2003_01.vi ‏51 KB

  • Reporting mechanism on HTML report file, using TestStand 2012 SP1

    Hi,
    I am using TestStand 2012 SP1, where the reporting mechanism is configured to be in HTML format.
    I am not getting the full report of the sequence file which is executed, however I get a part of it printed on the HTML file.
    The following are the configured "Report options",
    ===========
    Contents Tab:
    ===========
    Report Format : HTML Document
    Default Numeric Format : %$.13f
    Include Step Result: Checked
                  Result Filtering Expression : Result.Status=="Failed"
                  Include Test Limits : Checked
                  Include Measurements : Checked
                  Include Arrays : Insert Table
                  Filter : Include All
    Include Execution Times : Checked
    On-The-Fly Rporting and Only Display Latest Results : Checked
    Select a Report Generator for producing the Report Body : DLL
    ===========
    Report File Pathname Tab:
    ===========
    Generate Report File Path : Checked
           File Name/Directory Options : Specify Report File Path by Expression
           Report File Path (Sequential Model) :
                            StationGlobals.TopLevelReportPath
                            +RunState.ProcessModelClient.AsPropertyObjectFile.​DisplayName+"Report_[<FileDate>]<Unique>.<FileExte​nsion>"
    Please let me know a solution to this problem.
    Thanks,
    Dharani

    Jason,
    Thankyou for replying.
    Yes, I need only the steps which had failed to print on the report file.
    The problem what I am facing is, if there are 10 failed steps, the report is not printed for all.
    Also the order of printing is not correct for the first step and the last step which is printed on the report file.
    I had used "Post Expression" for printing data for all the failed steps. Normally these post expressions should be printed beneath the step in the report file.
    However,
    1) For the first step which is printed on the html file, the post expression gets printed just above the step and also it gets printed beneath the step.
    2) For the last step which is printed on the html file, the post expression is not printed beneath the step.
    Please let me know if i need to provide some more information.
    Thanks,
    Dharani

  • Need to generate html report on deprecated api

    Hi All,
    How do I write a generic tool that can print a report in html format of all the deprecated methods of a class and their count. Are there any freely downloadble tools that does this. What is the best way to do this if I have to write on my own.
    Thanks & Regards,
    Kumar.

    Yep:
    1) Get hold of the source code for x-doclet tags and tinker around with them so that you can find all the deprecated tags in your system.
    2) Write some code yourself that picks up all your files and searches for instance of the deprecated tag
    3) Use javadoc to generate javadoc. Parse the output HTML using DOM/SAX parsers to find deprecated methods
    Unfortunately, a class file never knows that a method is deprecated - so you cant use reflection to find deprecated methods (nor can you use BECL)

  • How to email generated HTML report

    Can I create a link on my generated report that will issue the mailto command and email the results of this report run?

    You will have to include some Javascript in your report, I guess. A simple solution is provided by Internet Explorer itself:
    File -> Send -> Page by Email
    Or you can run your report with destype=mail, but you don't have a preview that way.

  • Differentiate between report and generated scheduled report - report list

    How do I differentiate between a (.rpt) report and a (scheduled generated report) from this report (.rpt with data) when I list all the reports on the server.
    I need this information because when I view the scheduled report, I do not need to set the parameters via the crystal viewer.
    Thanks in advance.
    JM

    Ted.
    I am not sure why the scheduled report is saying si_instance=false.
    So I scheduled the sample report - Drilldown and named the scheduled instance as "DrilldownInstance",
    it created two info objects. One has SI_INSTANCE = true and the other has SI_INSTANCE = false!!!!!
    select * from CI_INFOOBJECTS
    where
    SI_PROGID = 'CrystalEnterprise.Report'
    and SI_KIND = 'CrystalReport'
    and si_name LIKE '%DrilldownInstance%'
    I presume it should have only created one object, and set si_instance=true
    Thanks,
    JM
    P.S
    Sorry to be a bother! but this is driving me nuts!
    Edited by: jam mend on Jan 20, 2009 9:07 PM

  • HTML report looks different than REPORTS PREVIEWER

    I am having a weird problem with my reports. My reports look just fine in the Oralce Reports Developer live previewer. However when I look at the Report Server generated HTML format of the same report, the label on the right side of the page gets truncated. When I change the justification of this label to left justified as opposed to the current setting, then it appears fine. I need this label to be right justified to align with the currency fields below it. Is this an Oracle Bug? Is there something I can do without having to try to layout my report all over again.
    Thanks for any advice in advance.

    Hi
    The output shown on the live previewer will be different then the output generated through server becuase live previewer uses different resolution and fonts. We have not heard of any truncation issue in html output. You nedd to have a proper printer installed which shall be accessible to Report server i.e. if if the Report server owner has the proviledges to print to that printer. Try running Report runtime in batch mode with the same reports to check the Report output. If you can get it right in rwrun60, you will get the same output through Report server also.
    Thanks
    Rohit

  • Hyperlink to a html report

    Hi ,
    I`m using LV2009.
    I have simulated a test report of a test board and generated a HTML report in the VI. The generated HTML report is saved in the file in some folder in the hard drive.
    All I wann is the hyperlink to the HTML report in the front panel.
    I saw few posts in the forum on the hyperlink but majority dealt with the excel sheets.
    Looking forward for your solutions.
    Regards,
    Manoj
    Solved!
    Go to Solution.

    Sorry, didn't see the 2009 in your post. Attached as LV 2009
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness
    Attachments:
    About.vi ‏24 KB

  • Oracle Reports Generating Incomplete Report

    Is it possible for Oracle Reports to generate incomplete report due to persistent caching problem? For example, in the report there is a summary section and details section. When I run the same report with different parameter, some of them will have the details section missing but others are fine.
    Here is the URL for requesting the report:
    http://172.16.6.222:7790/cgi-bin/rptsrvCgi?report=int_inv_ver.rdf+desformat=HTMLCSS+destype=cache+cmdfile=cmdfile.par+report_name_in=AReport+db_user_in=WUI+output_in=Cache+jobname=AReport+paramform=no+reprint=0+issue=0+master_inv_code_in=1111+child_inv_codes_in=2222
    How do I troubleshoot? Any idea?
    Thanks.

    Hi,
    its quite some time ago that I a looked Oracle Reports, however, I think that the event mechanism is quite complex to achieve
    I want it to be done within the scope of a single request.
    Which means that if Oracle Reports hangs, the user session follows.
    As in, the entire process should be complete through one cycle.
    Unfortunately you don't control how long reports run, which means that there is no sense in stopping the page lifecycle for this
    I don't want to keep a day end sort of procedure that inserts into the db at the end of the day.
    Fair enough, but as far as I remember there is an eventing in Reports that would allow you to have the Oracle Reports Server triggering the upload
    So I think, the architecture I would go for is:
    - user requests report
    - report generates PDF output
    - reports uploads to DB
    - reports_processing table holds user ID and reports ID plus flag to update when report is done
    - If using JSF, you could use af:poll to check frequently for the report to be finished.
    This here may help: http://www.oracle.com/technology/documentation/reports.html
    Frank

  • How to change color in html report with MARKUP HTML ON?

    While generating html reports using MARKUP HTML ON with in sqlplus, I would like to highligh the records with different colors. how can do this?

    Here is an example - it produces nice output and sets the background. It displays in red if database is in NOARCHIVELOG mode. You can go further and use CASE statements for certain conditions to display different colors, font sizes.
    set markup html on spool on entmap off -
         head '-
         <style type="text/css"> -
            table { background: #eee; font-size: 90%; } -
            th { background: #ccc; } -
            td { padding: 0px; } -
         </style>' -
         body 'text=black bgcolor=fffffff align=left' -
         table 'align=center width=99% border=3 bordercolor=black bgcolor=white'
    spool logmode.html
    select  'Archive Log Mode :'|| decode(log_mode,'NOARCHIVELOG','<font color=red>Database in '||log_mode||' mode </font>',log_mode) "Archive Log Mode"
    from v$database
    spool off
    set markup html off

Maybe you are looking for

  • I have just purchased ARD 3.3, how many computers can I install it on?

    I purchase the unlimtied option (but I know that is how many clients I can manage.) I want to be able to manage the machines on two different computers. Will I need two copies? Thanks

  • Purpose of Append Structure in DDIC(SE11)

    What is the purpose of Append Structure in DDIC(SE11)-Table?How to use this? Title by: Alvaro Tejada Galindo on Jan 23, 2008 6:11 PM

  • I can't export my movie because a file is missing, how can I find it?

    I've spent ages making a movie and now it says cannot export because a movie file cannot be found. I have no idea what file this is! It says it is called 'Trim 1' but this doesn't appear to be any of my movie files. I did have some problems importing

  • Upload Component, Pass extra Variable

    Hello all. I have been trying to get an upload component to work for some time now, but have been having a few troubles getting one to do what i need.  Recently i found a component that does pretty much everything i want bar one thing, pass an extra

  • Copying songs from shuffle to hard drive

    My Ipod shuffle was synced to my old computer which died, taking behind all the information on it, including, obviously, my entire music library and songs on the shuffle. I've been trying to catch up with the music on the new computer, but I know the