Reporting Services: freezing rows in tables - reportingservices-2005

I'm a bit new to Reporting Services 2005. I have a report that gets emailed out and some users want to freeze the top two rows while scrolling. Is this possible?

set your fixheader property true
for this Select Table > property > fixheader = true
Second way open your rdlc file in xml edition
put the fix header as show below in your header tags
<header>
<FixedHeader>true</FixedHeader>
</Header>

Related

Ol start is not workign in birt

ol with start attribute not working
<ol start="5"> <li>test item</li></ol>
Birt omitting start attribute in Ol tag if specified. And the list item always starts with 1
This is not a question actually.
BIRT does not support the whole HTML specification and there are no plans to change this.

rdlc-repeat data in report header across multiple pages

I am using ssrs 2012.
How can I repeat username in the report header? ReportItem doesn't work if the report spans across more than one page.
I was told to use Internal parameters but there is no such option with rdlc.
Can this somehow be done in codebehind?
Thanks
I am a bit confusing about your problem.
Just add a page header, rigth click on report design surface, insert->page header:
Add a text box and set the expression value to the following built-in field
You should get something like this in every page:
Note I am using rdl but built-in fields is available for both RDL and RDLC.
Let me know if this was helpful.

Odoo 8.0 Qweb report: how to print sale.order.lines on one page?

I'm looking how to print the report on selected sale.order.lines,
The conditions are:
print all sale.order.lines in the table on one page (only if not fits continue on other pages),
repeat table header only one time
repeat company header only one time on the top of the document
Current behaviour is that all sale.order.lines are printed on the separate pages with header and footer repeated on every page;
Can any Odoo 8.0 specialist help me ?
Thank you very much.
1.create your custom report ,customize your report what ever you want.Give the paper format,and all the thing.
enter link description here
I Prefer Create a new module Report than Customize it using Qweb Report. It's more Easier
Odoo Documentation

Create new view within Report; use different data. In order to export 2 reports to same page in Excel

I am using Oracle OBIEE 11.1.1.5.0
I have 2 existing views saved as separate reports. One is a Pivot; the other is a Table. Their data sources are unrelated.
I want to be able to combine both views into one compound view within one report, so I can export both to the same Excel file.
Please let me know how to implement. Please excuse my word selection; I am very new to this product.
Edit: It was suggested that I include both reports on a dashboard, and then export from there. Here are my available dashboard options. Am I missing an Export option that should be visible for the version I am using? Am I not seeing it because I don't have full permissions?
long story short, it seems as though OBIEE 11.1.1.5.0 does not give you a seamless way to export entire Dashboard pages to Excel.
HOWEVER, there is an ugly way to do it.
Page Options --> Print --> Printable HTML --> Save As --> .xls
see this thread for more info.
here is another thread.

How can a library masterpage display report specific text?

My reports are linked to a masterpage in a library file. I want the masterpage to display the report name, but the report name will be different for each report. How can the report communicate the report name to the library's masterpage?
Use resource files. Here's how:
Create and link a resource file to the report. See the BIRT documentation here. For example, if you have a report called Products_Report.rptdesign, and your application localization is US English, then your resource file should be called Products_Report_en_US.properties.
Create an entry in the resource file for the report name. For example, report_name=Products Report. You'll want the key to be the same for every report.
Access the resource from the library's masterpage. For example, you could add a Dynamic Text element with this expression: reportContext.getMessage("report_name", reportContext.getLocale());
Use global constants. Here's how:
In the BIRT report designer's Outline pane select the rptdesign element.
Click the Script tab.
Create a constant. For example: var REPORT_NAME = "Products Report";
Save
Access the constant from the library's masterpage. For example, you could add a Dynamic Text element with the expression: REPORT_NAME;
This is a bit easier than using resources file - but with the resources file you get the ability to display a different report name to users depending on their language.

Resources