Customize portal report layout

Is it possible to customize the report layout ?
I don't want a plain table layout.
Can someone tell me where I can find documentation on how to customize portal report layout?
Thank U.
Regards Cecilie

Hi,
You can customize the Report Layout by using
the Custom option in the Report Layout section
while creating the Report.
It allows to write your own HTML code to define the Layout.
The three Layout options which can be used are:
Tabular
Form
Custom
Hope this Helps
Thanks
Vineet

Similar Messages

  • Portal Report Layout Editor

    I have created a report selecting the custom report layout option. Rather than using a link on the column, I would like to add different links in the footer section in the Report Layout Editor. My problem is trying to create a link and pass a value from the report to the next report. I have tried to use the placeholder #fieldname.field# in an attempt to pass the value in my call to the other report object but it is not working. My actual call is listed below:
    Address
    When I click on the link the other report returns "No row returned". If I substitue the placeholder with a value I know exists the link works correctly.
    Does anyone have a suggestion as to how I can embed the placeholder in the link command. Any help would be much appreciated.

    Sharmila-
    Thanks for the reply. I am trying to reference a value from the report rather than the parameter itself. I'll try to explain. I have a report which displays information for an employee. For a custom report, in the report layout editor there are three different sections, headings, body and footer. In these sections you place the HTML to customize your layout. In the body you can reference placeholders like #EMPLOYEE_ID.LABEL# for the column heading or #EMPLOYEE_ID.FIELD# for the value retrieved from the database. In the footer section of the report layout editor I want to create a link to another report using employee_id as the parameter in the link to the next report, however, within the link I am not able to get it to recognize the value from the placeholder. When I click on the link the URL shows the placeholder #EMPLOYEE_ID.FIELD# rather than the value like 1001.
    Any suggestions?
    Regards
    Mark

  • HTML DB Customize SQL Report Layout

    Hi everybody,
    Is it possible to have an automatic orientation (portrait, landscape) based on report width ? If it's to large for portrait, it switchs landscape ? If letter it's not too much large it switch to legal ? and so on.....
    Thanks. Bye.

    The problem is when I execute a report and I want to
    print it, the page break is not done. I want toHTML does not have any concept of a "page break" or a page even. The browser just sends the currently displayed HTML BODY content to the printer and the printer takes it from there.
    Google for HTML page break and see what you find
    http://www.google.com/search?hl=en&q=html%20page%20break&btnG=Google+Search
    If system user want to print the report they don't
    want to have problem and make a lot of test before
    having the report they want. Is it possible to move
    column like Discoverer ?What you see (in the browser) is what you get on the printer.
    You can implement some simple column re-ordering functionality in your report using some of the techniques I showed at
    Swapping columns on reports
    You can even show/hide columns as per Carl's example at
    http://htmldb.oracle.com/pls/otn/f?p=11933:46
    So, user can play around with this until the desired columns are seen in the desired order and then use the browser's Print function to print what is on the screen.
    Hope this helps.

  • Customize SQL Report Layout

    I have a SQL report which returns 15 colums. Rather than format the report vertically with 15 rows for each record or horizontally with 15 columns for each record, I'd like to return a 3x5 table of values - is this possible.

    The problem is when I execute a report and I want to
    print it, the page break is not done. I want toHTML does not have any concept of a "page break" or a page even. The browser just sends the currently displayed HTML BODY content to the printer and the printer takes it from there.
    Google for HTML page break and see what you find
    http://www.google.com/search?hl=en&q=html%20page%20break&btnG=Google+Search
    If system user want to print the report they don't
    want to have problem and make a lot of test before
    having the report they want. Is it possible to move
    column like Discoverer ?What you see (in the browser) is what you get on the printer.
    You can implement some simple column re-ordering functionality in your report using some of the techniques I showed at
    Swapping columns on reports
    You can even show/hide columns as per Carl's example at
    http://htmldb.oracle.com/pls/otn/f?p=11933:46
    So, user can play around with this until the desired columns are seen in the desired order and then use the browser's Print function to print what is on the screen.
    Hope this helps.

  • Standard Portal Reports Customization

    Hi,
    We have a scenario where we need to move KM content and PCD objects between two portals. I am moving the Content through ICE and objects through Transport export/import.
    1. Are there any standard portal tools to check the consistency of the object and content after its gets imported into the target portal.
    2. Is there any log which captures the ICE execution status and records when it ran last with success/failuer status?
    3. Is it possible to customize standard portal reports like 'Link Consistency Report' /'Permissions Report'? If yes, where can I find the code for the same.
    Rgds
    Gulshan

    hi,
    whenevr u r sending data through ale/idoc the data which u sent will only be captured in idoc ,i mean if for example u r sending only 5 fields data using change pointers method hten u will get tht details only in ur corresponding idoc.

  • Custom report layout question...can't find any answers anywhere

    I am trying to build a report in Portal, using the custom report layout. The report displays like so, before I do any customization:
    COLUMN1 COLUMN2 COLUMN3
    COLUMN1 COLUMN2 COLUMN3
    COLUMN1 COLUMN2 COLUMN3
    COLUMN1 COLUMN2 COLUMN3
    where COLUMN1 is the same value, always per report; COLUMN2 and COLUMN3 vary.
    What I want is:
    COLUMN1
    COLUMN2 COLUMN3
    COLUMN2 COLUMN3
    COLUMN2 COLUMN3
    COLUMN2 COLUMN3
    In the report layout editor, Body section, this is what I see:
    <TD ALIGN="LEFT"><#COLUMN1.FIELD#></TD>
    <TD ALIGN="LEFT"><#COLUMN2.FIELD#></TD>
    <TD ALIGN="LEFT"><#COLUMN3.FIELD#></TD>
    so #COLUMN1.FIELD# must be some kind of array, but I am not finding any documentation anywhere on how to reference the individual values. All I need is the very first value of the COLUMN1 variable. Once I have that value, I can put it where I need it, but I can't get at that value, just the array.
    I have searched portal center, the app server documentation, html documentation. I have googled everything I could think of, but came up with nothing. I found a similar question on this forum, but no one responded with an answer. Any help would be greatly appreciated.

    Helen,
    The best way for your case is to use a content folder and customize it whichever way you like.
    however, your question is about reports. the problem in reports is this that you have to use just one single query and the layout of the results of this query are displayed in a peculiar way.
    anyway. something similar but not exactly the same as what you wanted do is the following.
    use a query like the following: (with a union in between)
    SELECT COLUMN1,NULL , NULL ,NULL ,NULL
    FROM my_source_table
    WHERE myCriteria LIKE 'SoAndSo%'
    UNION
    SELECT NULL,COLUMN2 , COLUMN3, COLUMN4, COLUMN5
    FROM my_source_table
    WHERE myCriteria LIKE 'SoAndSo%'
    ---------- Now, have the following codes in the layout segments:
    <!--- header --->
    <table border="0" cellpadding="1" cellspacing="1" width="20%" align="center">
    <!--- body --->
    <tr align="center">
    <td><table border="0" cellpadding="1" cellspacing="0" width="30%" align="center">
    <tr align="center">
    <TH><#COLUMN1.FIELD#></TH>
    </tr>
    </table>
    </td>
    <TD class="report_cell" ALIGN="LEFT"><#COLUMN2.FIELD#></TD>
    <TD class="report_cell" ALIGN="LEFT"><#COLUMN3.FIELD#></TD>
    <TD class="report_cell" ALIGN="LEFT"><#COLUMN4.FIELD#></TD>
    <TD class="report_cell" ALIGN="LEFT"><#COLUMN5.FIELD#></TD>
    </tr>
    <!--- footer --->
    <TR><TD></TD></TR>
    this should produce a report with a table structure (you may see the whole if you give BORDER="1" in the main table tag). Within this table, the first column of the first row should be showing top-leftmost column value once (COLUMN1 value) and then the next rows would show last four column values as a table block on the right-bottom part.
    with kind regards,
    naqvi

  • How to customize the table layout in WAD (BI70)

    hi experts,
    i want to customize the table layout in WAD.
    in 3.5, i can set the table interface class,and use T_Code se24.
    but now i am using BI7.0, there is no table interface, so how can i customize the table layout?

    Use report designer for customerizing.

  • Standard Report layouts in Crystal 2008 for SBO 2007A

    It has been 2 years since SBO adopted Crystal Reports to become part of the standard product, I refer back to the initial links which promised links to Standard Reports, however 2 years later these links appear to be exactly the same, no updates.
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/807d22cb-cb1d-2b10-8794-fb76d7feca88#section12 [original link is broken]
    For SBO 8.8 there appears to be a pack of Reports available for Sales Orders, Purchase Orders etc
    I would like to know if there a pack of standard Crystal reports for SBO 2007A and if so where would we be able to find them?
    Many thanks
    Kevin West

    I found the following link
    https://websmp101.sap-ag.de/~sapidb/011000358700001094082009
    It has the following - Crystal Reports Layout - IT Invoice Layout for Release 2007 A
    An invoice layout for Italy...well done 2 years and we now have an Italian invoice

  • Custom Report Layout with mutliple child tables

    I am trying to create a custom report layout (using Bi Publisher) where I have parent data (multiple jobs on a page) and several child tables for each job (JobDays and JobStops) and several child tables for JobDays (JobDayProviders, JobDayCrew). On the apex screen, I have a join on Jobs and JobDays and I am using functions to string each child row value for JobDayProviders and JobDayCrew together and putting a <br> in between so that they will format on separate lines within a cell. It works fine on the screen but when trying to print to pdf, it ignores these line breaks. I have also tried using <br></br> (saw an article that said just use HTML in bi pulisher) which puts two lines in between each value on the screen and is still ignored on the pdf.
    for example:
    Table hierarchy:
    Jobs table
    Job Stops
    Job Days
    Job Day Service Providers
    Job Day Crew
    Report Layout per job (will have mutlipe jobs to print, just printing 1 day per job):
    Jobs.col1 JobStops.row1 JobDay.col1 JobDayProviders.row1 JobDayCrew.r1
    JobStops.row2 JobDayProviders.row2 JobDayCrew.r2
    JobDayProviders.row3
    Thanks,
    Linda
    First, is there a way to get bi publisher to recognize the line breaks? If not, what is the best way to create a custom report for this scenario? I tried to create a report query with mutliple queries, but cannot determine how to link the child queries to the paren query. I have seen an example where a button is pressed to print one parent row and the id of that row is saved and referenced as a parameter in each of the queries, but if printing mutliple parents on a report, how would I link the child queries to the parent query?

    Helen,
    The best way for your case is to use a content folder and customize it whichever way you like.
    however, your question is about reports. the problem in reports is this that you have to use just one single query and the layout of the results of this query are displayed in a peculiar way.
    anyway. something similar but not exactly the same as what you wanted do is the following.
    use a query like the following: (with a union in between)
    SELECT COLUMN1,NULL , NULL ,NULL ,NULL
    FROM my_source_table
    WHERE myCriteria LIKE 'SoAndSo%'
    UNION
    SELECT NULL,COLUMN2 , COLUMN3, COLUMN4, COLUMN5
    FROM my_source_table
    WHERE myCriteria LIKE 'SoAndSo%'
    ---------- Now, have the following codes in the layout segments:
    <!--- header --->
    <table border="0" cellpadding="1" cellspacing="1" width="20%" align="center">
    <!--- body --->
    <tr align="center">
    <td><table border="0" cellpadding="1" cellspacing="0" width="30%" align="center">
    <tr align="center">
    <TH><#COLUMN1.FIELD#></TH>
    </tr>
    </table>
    </td>
    <TD class="report_cell" ALIGN="LEFT"><#COLUMN2.FIELD#></TD>
    <TD class="report_cell" ALIGN="LEFT"><#COLUMN3.FIELD#></TD>
    <TD class="report_cell" ALIGN="LEFT"><#COLUMN4.FIELD#></TD>
    <TD class="report_cell" ALIGN="LEFT"><#COLUMN5.FIELD#></TD>
    </tr>
    <!--- footer --->
    <TR><TD></TD></TR>
    this should produce a report with a table structure (you may see the whole if you give BORDER="1" in the main table tag). Within this table, the first column of the first row should be showing top-leftmost column value once (COLUMN1 value) and then the next rows would show last four column values as a table block on the right-bottom part.
    with kind regards,
    naqvi

  • SAP 8.8 Crystal Report layout templates

    I have installed SAP 8.8 this is working fine apart from one thing i don't understand..  maybe i am just being stupid..
    But there are no Crystal report layouts in the system.  Do we have to download these.. surely we don't have to write them all from scratch ???

    Dear Rabie,
    Without the User ID  On Cannot Access the Portal and Cannot Download the Files.
    Regards,
    Vamsi

  • Can't see Report Layout in IE

    Hi All,
    When i am executing the report in report designer, the report is executing but cant see the layout of the report in IE . I can see all tools and options except report layout at portal and even i m not finding any error msg also. plz help in this regards.
    Regards,
    Kaushik

    Hi Kaushik,
    1) Are you facing the same problem with any other reports you format on report designer ?
    What changes have you made to your report output?
    Report Designer is a new feature of BI 7.0 and I know only the theory of it. You said you have checked with WAD..have you tried using this report which is having problem in WAD as 'Report Web item'?
    There might be a setting that you need to do in report desginer or there is some additional installation to be done in order to support Report Designer (remember this is a new feature so even Basis or Protal teams are new to it!)
    See these two items from help.sap,
    4. Executing the Report
    You execute the report in the portal (Web). The report is displayed in the standard Web template for reports. You can set the standard Web template for reports in Customizing for the standard Web templates at SAP NetWeaver ® Business Intelligence ® Reporting-Relevant Settings ®BEx Web ®Set Standard Web Templates ® Enterprise Report.
    You can also create a print version of the report directly in the Report Designer. The report is converted into a PDF document, which you can then print.
    5. Publishing the Report
    You can publish reports in BI roles or as iViews in the portal.
    You can also call the BEx Broadcaster from the Report Designer and broadcast reports. More information: Functions of the BEx Broadcaster
    Also see this.
    Use
    When you display a report in the portal (Web), it is automatically embedded in the standard Web template for reports. The report is displayed in a table on the Web. In addition, a date in the upper area of the Web template indicates how current the data is. Using the standard pushbuttons provided, Information, Send, and Print Version, and the link Filter, you can access the most common functions for navigating in and further editing your report.
    Integration
    When you have created and saved a report in the Report Designer, choose  (Execute): The report is displayed automatically in the portal using the standard Web template for reports.  
    From a technical perspective, the standard Web template for reports is based on the 0REPORT_DEFAULT_TEMPLATE Web template. This Web template is set as the default for displaying reports from the Report Designer in the SAP Customizing Implementation Guide under SAP NetWeaver ® Business Intelligence ® Reporting-Relevant Settings ® BEx Web ® Set Standard Web Templates ® Enterprise Report. The standard Web template contains three pushbuttons, Information, Send and Print Version, and the link Filter to call the filter pane.
    You can copy this Web template to make changes and set it as your new standard Web template for reports in the IMG. Note that to activate the changes in the SAP Reference IMG, you must start the J2EE Engine.
    Here is the link.
    http://help.sap.com/saphelp_nw70/helpdata/en/b2/e50138fede083de10000009b38f8cf/frameset.htm
    Do keep us updated on the progress of this issue.
    All the best!
    Regards
    Sudeepti

  • PDF Printing Issue - Customised Report Layout Error

    Hi,
    I am trying to get a PDF file output based on the customised RTF file created. I follow the following steps but I am facing an issue with that.
    (i) Go to Shared Components > Report Queries.
    (ii) Create a new Report query with more than one query.
    (iii) Using the XML Data in the Report queries, create a Report Layout (RTF) file.
    (iv) Navigate to shared components Report Layout and upload the RTF file.
    (v) Once this is done, use the Report Layout created in the Report Queries. Select the Layout name from the Drop Down.
    (vi) Click on TEST REPORT, this produces an error: Adobe Reader could not open the <file name> because it is either not a supported file type or because the file has been damaged (for example it was sent as an email attachment and wasn't correctly decoded )
    Additional Info
    The apex instance configured with Embbedded plsql, rdbms version is 11.1.0.7.0 and the BI publisher version 10.1.3.3.
    ISSUE DESC
    When I use mulitple Queries even after using Generic Report Layout I get the output for the first query alone in the PDF and the remaining Queries are ignored.
    And when i use a user defined template, then even If i have a single report query I get the error.
    To summarise, I am not able to use the customised Layouts.
    I have reproduced the issue in apex.oracle.com
    Please log in using,
    WORKSPACE: demo_test
    USER NAME: [email protected]
    pwd: vidhya
    After logging in please select the Application Builder.
    In that select the Application named PDF.
    Select the Shared components > Report Queries
    Select the Report Query named test.
    Click on the TEST REPORT button in the Source Queries Section.
    You will get the error.
    Now in the same page in the Report Query Attributes Section change the Report Layout to Use Generic Report Layout and then click on 'TEST REPORT', this will give the PDF file without errors.
    The same report has been called from the PRINT REPORT button provided in the page 1 of the application.
    This issue is really urgent and critical. Require your inputs/help.
    Thanks,
    Ramya

    I' an APEX newbie and believe I am having the same or a similar problem. I am (for now) developing a system using the hosted Apex development system online. I have created a Report Query which works fine with the default layout. I downloaded the XML (tried both sample data and schema) into Word 2007 with the BI Publisher Template Builder. I used the table wizard to create a simple layout containing all columns with no customization at all. Saved as an RTF, uploaded to Apex as a Report Layout, associated it with the Report Query, clicked Test Report -- and I got nothing.
    When the is a PDF, I get the same error you mention ( Adobe Reader could not open the <file name> because it is either not a supported file type or because the file has been damaged (for example it was sent as an email attachment and wasn't correctly decoded ). If I switch to an HTML file the out is just a blank screen.
    If I switch back to generic report layout, it works fine. This suggests there is something wrong with the template, though it looks fine in Word with the sample data.
    I've searched the forums and Google for the better part of a day. What am I missing?

  • Report Layout Editor

    I have used this successfully in the past but have a new challenge.
    In the past I have been able to produce clean and tidy reports for a single table. Now I want to do the same for a query joining two tables (order and transaction) on a single order id.
    An order has several transactions. I don't want to repeat the static order details on every row, just the changing transaction details.
    I have been able to list only the transaction details in the body section quite easily. I've also been able to list the labels for the order details in the head section. But when I try to list the field data using the .FIELD suffix instead of the .LABEL suffix it is not changed to data.
    I take it that the head section is designed to deal only with .LABELS while the body section deals only with .FIELDS.
    Can anyone suggest an alternative for doing this? Would a dynamic page be better? And if so how do I do it? Bear in mind that I need to pass a variable containing the order id from another report.
    null

    Sharmila-
    Thanks for the reply. I am trying to reference a value from the report rather than the parameter itself. I'll try to explain. I have a report which displays information for an employee. For a custom report, in the report layout editor there are three different sections, headings, body and footer. In these sections you place the HTML to customize your layout. In the body you can reference placeholders like #EMPLOYEE_ID.LABEL# for the column heading or #EMPLOYEE_ID.FIELD# for the value retrieved from the database. In the footer section of the report layout editor I want to create a link to another report using employee_id as the parameter in the link to the next report, however, within the link I am not able to get it to recognize the value from the placeholder. When I click on the link the URL shows the placeholder #EMPLOYEE_ID.FIELD# rather than the value like 1001.
    Any suggestions?
    Regards
    Mark

  • Calling Stored procedure from portal report

    I have a simple portal report. ie.
    select empname
    from emp
    where dept = :dept
    The users can customize the portlet and change the value of the bind variable (:dept).
    On the Additional PL/SQL section of the report I need to call a procedure and
    pass the value of the bind variable. Since the portlet is not being called from
    another, p_arg_names and p_arg_values will not give me anything. In the above example I would
    need to pass the value of ":dept" to the procedure. How do I get the value?

    Hi,
    Have you tried the 'get_value' function?..The syntax is
    declare
    l_dept number(5);
    begin
    l_dept := get_value('dept');
    /* further process */
    end;
    where 'dept' is name of the bind variable.
    -Krishnamurthy

  • Passing value from Portal Form as parameter to portal report

    I have a portal form that I have created using the custom form layout editor to build/modify the display of the form. When I run the form and I have a record queried I would like to be able to click a link and pass the value of a field as a parameter to a portal report. For example, lets say I have a field on my portal form called assignment_id, and after I query a record assignment_id equals 1. I would like to use the value 1 from assignment_id as a parameter to a portal report. I am not sure how to reference the value of a form field, can this be done within the header, body or footer of the custom layout editor? Or can I somehow reference the value of a form field from the Additional PL/SQL Code section?
    Has anyone tried this with success? Any info is appreciated.
    Regards
    Mark

    Hi,
    You can get the values of the variables from the session variables. Here is an example which gets the value of the field FLIGHT_NO and passes it on to a report.
    While accessing the value of a field you should prefix it with "A_" (A_FLIGHT_NO)
    declare
    flightno number;
    blk varchar2(10) := 'DEFAULT';
    begin
    flightno := p_session.get_value_as_varchar2(
    p_block_name => blk,
    p_attribute_name => 'A_FLIGHT_NO');
    call('SJDEMO30.report1.show?p_arg_names=flightno&p_arg_values='||flightno);
    end;
    Thanks,
    Sharmila

Maybe you are looking for

  • Two Stage confirmation

    hi  SRM Gurus We are implementing SRM 4.0 classic scenarios. we have following process 1 Create a shop cart 2 Create a  Purchase Requisition 3 Create a Purchase Order 4 Central Stores does the first stage goods receipts by keeping the confirmation on

  • UCCX windows to linux migration

    Hi, what data is migrated with using Pre-upgrade tool (windows to linux migration tool)? I am concerned about hitorical data, is whole historical data migrated? Migration from UCCX 7.0(1)SR5 to 8.0. Regards, Wojciech

  • Database Storage PROBLEM

    We are building mostly read only Real estate web site. We have 300.000 and more pictures(50 kb) what users will see from their browers. We have a problem storing those images.The speed is the major concern in our application. 1.Put them into the data

  • Exchange Infrastructure in 2004s

    Hi I would like to know what version of XI comes with Netweaver 2004s and what is the procedure to install and configure it? I have heard that the procedure is not the same as that of Netweaver 2004. The istallation will be done on WAS 7.0, right? Wh

  • [Help please] Delete page

    Hi, I am using InDesign in a quite basic way. Lately I encoutered a problem. When I delete a page my columns and pictures are shifted in a wrong way. I added some screenshots to explain what I mean. This is how it looks before deleting a page: Then I