BW and Webi fomat/edit  report

Hi all,
Currenty I'm working integrating BOE with SAP BW and I have some "challenges".
I search on sap portal and sap notes but I didn't find any document/blog that describes advanced formating in webi.
My question is can we do some modification's on report like If clauses, concat strings, best practices using hiearhies... Do you have some best practices with "formating" webi ?
Thank you for your response,
BR,
Gregor

Hi,
Here are the some formatting tips in Webi report
Tip #1 - Use the Last Refresh Date:
Go to Templates Tab->Free Standing Cells->Last Refresh Date
Drag this cell into you report
And you’ll have the last date and time on the report, so when you print it this date will be printed, too.
Tip #2 - Use the Document Author function:
Maybe you’d like to know who created this WebI document. Insert a blank cell from Templates Tab->Formula and Text Cells
Press Formula Editor option and…
Select from the list of Functions: Document Author.
And that’s how you’ll know who created the report.
Tip #3 - Formatting before printing
To make sure all your elements fit properly in the page before sending it to PDF format I recommend to press the Switch Page/Quick Display option.
Then click anywhere in the report page and in Document Properties set Page layout options.  For example:
Move Author and Last Refresh date to the header and add a title.
Tip #4 - An extra tip
This example shows months by their number. End users would prefer to see the month name instead, don’t you think?  If you can’t modify your universe to add a month name dimension you can create your own formula at report level to get this.
On month column create this formula:
That’s it:
Don’t forget to take into account these little tips from now on when you create your WebI reports.  These examples were made with BusinessObjects XIR3, but you can apply them with BusinessObjects 4.0, too. It's just that in BusinessObjects 4.0 the page layout is on its  own menu above the report.

Similar Messages

  • Sql Server Web Edition Reporting Services errors when trying to connect to Windows Azure SQL

    I am using a preconfigured image from the Azure VM Gallery to create a VM.
    --> Sql Server 2012 SP1 Web running under Windows Server 2008 R2
    After configuring Reporting Services I get the following error when trying to run a report that connects to my Azure SQL db.
    An error has occurred during report processing. (rsProcessingAborted)
    An attempt has been made to use a data extension 'SQLAZURE' that is either not registered for this report server or is not supported in this edition of Reporting Services. (rsDataExtensionNotFound)
    On the VM using SSMS I can connect to the Azure SQL db.  On the VM in Report Builder when I define a connection I get a similar error to the one above when I test that connection.  I am using Microsoft Azure SQL as the data source type. 
    Interestingly in Report Builder, if I proceed past the connection definition, I can see the tables from my Azure SQL db in the dataset definition page.
    One more note.  If I use a different image from the Gallery (Sql Server 2012 Standard SP1 on Windows Server 2012) my report builder connection works and the reports run fine.  I believe that the Azure documentation says that Sql Server Web edition
    is an acceptable choice for the SSRS on VM for reporting.
    Any thoughts or suggestions?
    Thanks -- Tom Reilly

    Hello,
    A VM with SQL Server 2008 R2 or 2012 supports all Reporting Services features, including all supported data sources, customization and extensibility, and scheduled report execution and delivery.
    Did you run the report in Report Manager,or preview the report in Report Builder? Which version of the Report Builder you installed in the Windows Azure VM? SQL Reporting does not support reports created from Report Builder 1.0 or 2.0. You can create reports
    using Report Builder 3.0 and then upload the reports.
    What's more, please also check the database source credential of the report.
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here.
    Fanny Liu
    TechNet Community Support

  • Different display on client report builder and web reports

    Hi all, I have build a report in report 6i version Report Builder 6.0.8.13.1.And I set the page to 8.5*11 ,and it runs well in the client ,but when I put it on the UNIX SERVER,and run it from web URL,It displayed different from the client report builder.The web report is "smaller" than the client report ,but the font size is as same as the client .
    My HPUX is 11x,and display the Chinese report .
    Any body know why ?give me some advice ,thank u very much.

    Hi
    If you had built the report definition on Windows and then moved this to Unix server, you may find different fonts in use. This is becuase your Unix setup does not have the same fonts install. At design time, You need to use fonts which are available on Unix also. The same fonts shaould also be installed for printer in Unix i.e. the AFM/PFM font files should be kept under $ORACLE_HOME/guicommonX/tkXX/admin/AFM or PFM directory. This would give you the same output and would lessen the porting affect.
    Thanks
    Rohit

  • Reports 6i and Web Wizard

    Hi All,
    I am developing reports for web using Report 6i. When I use web wizard to create html output (option - Generate HTML stylesheet output now). Everything fine except there is gap (10-12 blank lines) between pages.
    I need your help in getting rid of these lines. What I need is continuous report.
    Any help appreciated,
    TIA,
    Jitendra.

    Hi,
    I've you found a nice way to do a continuous report? If so, it would be nice to post it here.
    The way I've found is far from being nice, but, well, it works.
    I have three report
    - the master
    - the head report
    - the body report
    1:
    The master report is an empty report. The only thing it does is produce some HTML code for a frameset (declared in the 'Before Form Value' of the report property palette). This frameset is built from the two other reports, the first being the head report (its corresponding frame being not resizable, with no scroll bar) and the second being the body report. That way, I have HTML code looking like :
    <html>
    <frameset rows="1*,19*">
    <FRAME name="A" frameborder=0 noresize scrolling=no SRC="url of the head report">
    <FRAME name="B" frameborder=0 SRC="url of the body report">
    </FRAMESET>
    </HTML>
    For the "sub-reports"' URL, I had trouble placing the desformat and destype parameter because Reports see &desformat as a lexical reference to the value of the desformat for the report being generated. So, bored, I finally used the 'run' shortcut of the cgicmd.dat file (search for that in the Reports manuals). I then ended up with URL like :
    http://computer.server.com/dev60cgi/rwcgi60.exe?run+param+param+param+param
    where params are the usual rwcgi60 parameters needed to produce a report.
    2:
    The head report contains only the headers for the columns. There's no repeating frame or whatever. The text boilerplate objects of the headers are on the top of the report, the rest being empty.
    3:
    The body report has been modified so the body section of the report (the rectangle with thick black borders) fills completely the height of the report. Inside it, I've created a repeating frame, its height being a divider of the height of the report. What I mean is : my report is 11" high, so I've created a repeating frame 0.5" high. That way, there would be no space between pages.
    And that's about it.
    Well, I'm not sure this is a very viable solution, and I admit I don't really like this kind of hacking in a professionnal reports structure. But if beauty is not your primary concern, maybe this thing should help.
    ... but I haven't found yet out how to place the report footer... ;-)
    Anyway, I hope all this can inspire you a little bit,
    Frederic :-)

  • Query designer report and Web Templates

    Dear All,
    I have a very basic/stup doubt.
    Are reports made through Bex Query Designer and Web Templates the same?
    Actually there is a following requirement:-
    "Navigate from a BW Web template to a PCUI application". I have a document related to it but it gives me step on how can i modify my web templates to achieve this functionality. But all my reports are made through query designer and it available to user through Web Dynpro portal.
    So i just wanted to know is Web Template and Reports made through query designer the same? So that i can implement the changes in my report.
    Thanks.

    Hi Anup,
    by using web templates we can use N number of data providers (Queries) for a single analysis view with various available options. - N number of Queries can be assigned to Web template to create a web report
    but by using the Query designer ,you can create a single report which may not provide sufficient information to the client and the number of features are less compared to web template.
    as you mentioned that you are using the web dynpro.
    i think the web dynpro requires the web reports as an iview and ths iview can be created by using the Query designer and or web app designer.
    so the most clear view can be given to client using the WAD reports

  • Company code restriction for dashboard and webi reports in BOBJ

    Hi Friends,
    We have a requirment where we need to restrict user on company code level in bobj.
    we have some dashborads and webi reports which need to be restricted at company code level, hence i have created a  role in BI and restricted the queries (bex queries) on company code level and same role and user i have imported in BOBJ.
    Now i can see the role and user in BOBJ and also i can login to BILAUNCH PAD with authentication as SAP  But unable to run the webi reports and dashboard hence i have added those reports to this user in bobj and now i can run the reports, but restriction is not working.
    In BI I am able to restrict user  but in bobj its  not restricting. kindly let me know if i am missing anything?
    We are having BO 4.0 SP6.
    Thanks
    Basis

    Hi Saurabh,
    In BI its wokring perfectly fine.
    I can run the query for specific company code and data is being populated as the respective compay code.
    I have also configure SSO between BI & BO using below link
    http://wiki.scn.sap.com/wiki/display/BOBJ/How+to+setup+SSO+against+SAP+BW+with+SAP+BO+BI4.0+Common+Semantic+Layer+%28UNX%29+or+BICS
    but when i am trying to create a olap connection in IDT with SSO connection test is getting failed with belwo error.
    com.businessobjects.mds.olap.OlapException: [Internal] SSO token or User password is empty.
    I checked STS is already there in APS .
    Thanks
    Basis

  • Edit Report option freezes and Formatting Vanishes in EPM 10.0

    Hi,
    While creating a report in EPM 10.0 which i have selected as 'Use as Input form', i created Active X buttons and did dynamic formatting as well. All seems to be fine but as i Close and Reopen, or i Refresh the template, formatting vanishes and Edit Report option also gets disabled.
    I am working on EPM 10.0 SP07 Patch 02. Please guide me on this.
    Thank you.
    Rgds,
    Poonam

    Hi Poonam,
    This is probably happening because the report/input schedules is not getting connected. Please check the connections once.
    Also if you had named the report in "Edit Report" earlier, say for example "Sales Report", once the report is open you should be able to see this name on the EPM context pane, right side under Current Report: Connected to "Your Model" and below that in the drop down the default selection should be "Sales Report". This means that the report is connected and the Edit Report option is active.
    Hope this helps.
    Regards,
    Bhairavi

  • XML and Web Service Data Source Missing in Crystal Reports for VS

    I would like to use a Web Service as the data source for a Crystal Report that will be running outside of my Visual Studio application.  So setting the data source to the web service in code is not possible.  My understanding is Crystal Reports has a connection (in the Database Expert under New Connection) named XML and Web Service.  Here you can select web service and enter the WSDL URL for the web service.  However it does not appear in the list for Crystal Reports for Visual Studio.  Does this connection type come with the Visual Studio version of Crystal Reports and if not is their a way to obtain it? 
    Thank you for your assistance.

    None of the bundled versions of CR have the driver. Reason is that the driver responsible for these connections requires the Java framework and I suspect MS would not be too pleased if we installed the Java framework. The stand alone versions, since they are not part of any bundle can and do install the Java framework and the driver. Note that even the latest release of CR - CRVS2010 does not have the driver as it essentially becomes a bundle or a VS2010 plug-in.
    So, the short of it is; you have to obtain a stand-alone version of CR. I'd recommend CR 2008 (12.x) as CRXI R2 will run out of support in June of this year.
    - Ludek

  • Web part created on a subsite for a sharepoint list in another site using sharepoint designer, to show only the subsite's reports. Connection dropping off and showing all the reports

    I crated web parts in the sub-sites (we have about 10 subsites) using sharepoint designer from a main list in another site.  Then used web part to show only the  ubsite's reports - using connection to the main list.  Problem is, the connection
    is dropping off and showing all the reports on the main list that are confidential.  this has happened 3 time lately.  Could someone explain why it happens some times?  I had to fix it by adding the web part again and connecting it
    Thanks, Subathy.

    Hi George,
    If you want to use a top level site "department" list column in all sub-sites, you can go to top level site and create a
    lookup type "Site column" to look up the value from the department list, then all sub-sites can use this lookup type site column created in top level site.
    Thanks 
    Daniel Yang
    TechNet Community Support

  • Edit Report option freezes and Formatting vanishes in EPM Excel 10.0

    Hi,
    While creating a report in EPM 10.0 which i have selected as 'Use as Input form', i created Active X buttons and did dynamic formatting as well. All seems to be fine but as i Close and Reopen, or i Refresh the template, formatting vanishes and Edit Report option also gets disabled.
    I am working on EPM 10.0 SP07 Patch 02. Please guide me on this.
    Thank you.
    Rgds,
    Poonam

    Hi Poonam,
    This is probably happening because the report/input schedules is not getting connected. Please check the connections once.
    Also if you had named the report in "Edit Report" earlier, say for example "Sales Report", once the report is open you should be able to see this name on the EPM context pane, right side under Current Report: Connected to "Your Model" and below that in the drop down the default selection should be "Sales Report". This means that the report is connected and the Edit Report option is active.
    Hope this helps.
    Regards,
    Bhairavi

  • FR and Web Analysis reports will not run in workspace

    I have configured both FR and Web Analysis and then re-configured workspace to pick them up. 'Reporting and Analysis shows up in my foundation metadata under workspace. All my related ports are enabled.
    Database connection manager, import financial reporting reports, preferences financial reporting, tools/link to web analysis, do not appear in workspace.
    get 'required application context analyzer is missing. please contact your adminstrator.' error when try to run a web analysis or financial reporting report from workspace.
    Web analysis as a client with reports is working fine.
    Financial reporting allows me to create a database connection, create a report, pdf preview from the client but web preview breaks with generic page not found error.
    Any suggestions would be most appreciated.

    Hi,
    You can use panel while creating reports and put all the graphs on it .
    Panels color can be changed.
    Thanks
    Yashwant

  • Reports Web Cartridge and Web CGI

    How Reports Web Cartridge and Web CGI
    converts url into pdf and html output.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by [email protected]:
    It is my understanding that neither of the above is used by Oracle Forms with the run_product statement for WEB applications. Can anyone tell me if either of the above is used by Oracle Forms with the statement run_report_object?
    I'm asking because I want to know that if I use the run_report_object built-in (WEB environment)which replaces run_product
    (Client/Server environment), will it be able to display the parameter form as run_product currently does in the Client/Server environment. I am talking about Oracle forms calling Oracle reports.
    <HR></BLOCKQUOTE>
    Did you ever get an answer to your problem. I having trouble with bringing forms over from client server to web, I can't get a parameter form to run. I've been told to use paramform=html in the URL but where is it? Where do I place this statement?
    null

  • How to Edit Webi or Crystal report in New BO 4.0 LaunchPad

    Hi,
    Can someone guide me how to edit a webi or crystal report in new BO4.0 LaunchPad
    Thanks,
    VB

    Hi all,
    I can not display report as modify mood. When I do right click on report, it displays like as below :
    I only updated java with the latest version 8 update 45.
    Can anybody help me ? Because I can't get modify mode, so I can't edit my reports.
    Thanks.

  • Financial reportin,Interactive reporting and web analysis

    Hi,
    Could anyone help me in what kind of reports exactly generates by the above 3 tools.How we will generate reports using financial reporting.i mean to say what process we will follow .
    In a financial domain project , what we will do exactly with the above three tools.
    I am quite interested to know as much info as i can on these 3 tools.
    replies will be highly appreciated.

    This is quite a big subject and you need to do more investigation, but as a starter for ten (these are high level views only)
    Financial Reporting - is used to create high quality, high format reports - ideal for finance based use
    Web Analysis - is used as a more interactive visual tool, with emphasis on exceptions/graphs and drilling etc
    Interactive reporting - is one of the old Brio tools and is more of a BI reporting tool
    There is a Query and Reporting forum at Hyperion Query and Reporting that might be useful to post on.
    Hope this helps.
    Andy King
    http://www.analitica.co.uk

  • Document integration for Bex reports and web reports

    Hi,
    I would like to attach few documentaion (like business usage of the report) for all existing reports in BW system. We are delivering all reports through Bex reports and Web reports.
    Report user should be able to see attached documentation through "Document" property in Web report.
    I have followed this way but not able to get on-line documentation for queries.
    1. RSA1--> Documents >Meta Data> selected Object type ELEM> Import document> attached word document.
    2. I enabled Documents property in Query designer.
    3. When I executed this query in Bex, I could see document symbol for all characteristics & Key figures in all cell (in default view)
    4. The same result with Web report (all cells are having document symbol).
    But I dont want to display documents in defaul view, if any user wanted to have doucment info, then should click on "document" tab and should be able to down load / read on line.
    Let me know why I am getting document symbol for all key / char, even though i selected "ELEM". I know we could direclty import documents in query designer, what is the difference..
    Rgds..

    Hi,
    Anybody could provide step to step procedure for doucument integration for Bex reports.
    Best regards,

Maybe you are looking for