Display horizontal reports

we would like to display on a report a comparison between products. The relationship between these 2 tables is a many to many. On the intersection table, we have products that are equivalent to others in the market.
comp_A Others
A 1
A 2
A 3
B 1
B 2
and so on
we want to display a report in portal something like that looks like this (horizontally)
compA other1 other2 other3
A 1 2 3
B 1 2
Is this possible to do in portal? thanks
null

I might just use Oracle Reports. :)
Rich

Similar Messages

  • Horizontal display in reports

    Dear experts,
    some of the fields have to be displayed horizontally in reports.
    Ex:
               Tran No.     Book Value     Nominal Value
                   1001               1000             30000
                   2001               1200             40000
                   3001               1200             40000
    No. of transactions(Profit)    1598                                                   Face Value      23,52,86,946.00
    No. of transactions(Loss)     896                                                    Face Value      99,52,000.00
    Is this display possible in Bex reporting ??
    Regards,
    KV
    Edited by: K V on Feb 9, 2009 2:56 PM
    Edited by: K V on Feb 9, 2009 2:57 PM
    Edited by: K V on Feb 9, 2009 3:07 PM

    I think not possible in BEx, can be tried in  WAD

  • How to display horizontal line in top-of-page by using object oriented ALV?

    How to display horizontal line in top-of-page by using object oriented ALV.
    I am created top-of-page in object oriented alv.
    But not be successes in showing horizontal line in it.
    Can any one pls give solution for this..
    Thanks and regards..

    Hi
    Try like this
    data: gt_list_top_of_page type slis_t_listheader. " Top of page text. 
    Initialization. 
    perform comment_build using gt_list_top_of_page[]. 
    form top_of_page. 
    * Note to self: the gif must be loaded into transaction OAOR with 
    * classname 'PICTURES' AND TYPE 'OT' to work with ALV GRID Functions. 
    * I Loaded NOVALOGO2 into system. 
    call function 'REUSE_ALV_COMMENTARY_WRITE' 
         exporting 
    * I_LOGO = 'NOVALOGO2' 
    * i_logo = 'ENJOYSAP_LOGO' 
             it_list_commentary = gt_list_top_of_page. 
    endform. " TOP_OF_PAGE 
    form comment_build using e04_lt_top_of_page type slis_t_listheader. 
    data: ls_line type slis_listheader. 
          clear ls_line. 
          ls_line-typ = 'A'. 
          ls_line-info = 'Special'(001). 
          fgrant = xgrant. 
          concatenate ls_line-info fgrant 
          'Stock Option Report to the board'(002) 
                 into ls_line-info separated by space. 
                        condense ls_line-info. 
          append ls_line to e04_lt_top_of_page. 
    endform. " COMMENT_BUILD
    Use following syntex for footer print in alv:
    * For End of Page
    form END_OF_PAGE.
      data: listwidth type i,
            ld_pagepos(10) type c,
            ld_page(10)    type c.
      write: sy-uline(50).
      skip.
      write:/40 'Page:', sy-pagno .
    endform.
    *  For End of Report
    form END_OF_LIST.
      data: listwidth type i,
            ld_pagepos(10) type c,
            ld_page(10)    type c.
      skip.
      write:/40 'Page:', sy-pagno .
    endform.
    check this link
    http://abapprogramming.blogspot.com/
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5dc3e690-0201-0010-1ebf-b85b3bed962d
    Changing width of a custom container dynamically
    Display Page numbers in ALV
    Insert picture in selection screen.
    Logo in OO ALV Grid
    Reward all helpfull answers
    Regards
    Pavan

  • Csv/excel not showing vertical .  it is displaying horizontally plus

    hi i have this code that displays html, pdf or csv/excel
    download.
    htmll report and pdf is ok but the csv/excel download
    displays/ works but
    it shows accross instead of down.
    on my html to csv it is not dispalying vertically /down and
    it shows the html on the excel download
    also
    per cel it has both the plotid and the ceenum. it displays
    horizontally.
    Help
    Thanks in advance.
    <!-------------------- here are the code in 2 .cfm pages.
    here is the first page where the user selects
    html
    pdf
    escel/csv----------then it goes to a action page act_lop.cfm
    <h1>LOP Reports </h1>
    <div align="center">
    <form name="theForm" action="act_lop.cfm"
    method="post"><BR />
    Sorted by:  
    <select name="Orderby" size="1">
    <option value="CEEnum">CEE num</option>
    <option value="Plot">plot No</option>
    </select>
    <br />
    <br />
    Output Format:
    <input type="radio" name="outputFormat" value="HTML"
    checked="checked" />
    HTML  
    <input type="radio" name="outputFormat" value="PDF" />
    PDF  
    <input type="radio" name="outputFormat" value="CSV" />
    Download/Open Excel Spreadsheet <BR />
    <br />
    <input name="Submit" type="Submit" value="Generate Report"
    />
    <BR />
    <BR />
    <BR />
    </form>
    </div>
    </body>
    </html>
    <!--------- act_lop.cfm the action page. Html and pdf is
    working ok but the problem is the excel sheet.
    <cfquery name="getlop" datasource="oracdb10">
    select
    tabTee.CEEnum,
    tabTee.Plot,
    FROM
    tabTee
    ORDER BY
    <cfswitch expression="#Form.orderBy#">
    <cfcase value="CEEnum">
    tabTee.CEEnum
    </cfcase>
    <cfcase value="Plot">
    tabTee.Plot
    </cfcase>
    </cfswitch>
    </cfquery>
    <!---html report--->
    <cfswitch expression="#Form.outputFormat#">
    <cfcase value="HTML,PDF">
    <cfsavecontent variable="htmlData">
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>lop</title>
    </head>
    <style type="text/css">
    td{
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
    th{
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
    font-weight:bold;
    background-color:#FFFF99;
    h2{
    font-family:Arial, Helvetica, sans-serif;
    font-size:14px;
    h3{
    font-family:Arial, Helvetica, sans-serif;
    font-size:15px;
    </style>
    <body>
    <cfoutput>
    <table border="0" cellpadding="3" cellspacing="0">
    <tr>
    <td align="center">
    <h3>lop</h3><br><br></td>
    </tr>
    <tr>
    <td align="center">
    </h2>Your report returned #getlop.RecordCount#
    records</h2></td>
    </tr>
    <tr>
    <td>
    <table border="2" cellpadding="2" cellspacing="0">
    <tr>
    <th>Record Number</th>
    <th width="120">CEE num</th>
    <TH>plot No</TH>
    </tr>
    <cfloop query="getlop">
    <tr bgcolor="<cfif currentrow mod
    2>GHOSTWHITE<cfelse>WHITE</cfif>">
    <td>#CurrentRow#</td>
    <Td>#CEEnum#</td>
    <td>#Plot#</td>
    </tr>
    </cfloop>
    </table>
    </td>
    </tr>
    </table>
    </BODY>
    </HTML>
    </cfoutput>
    </cfsavecontent>
    <cfswitch expression="#Form.outputFormat#">
    <cfcase value="HTML">
    <cfoutput>
    #htmldata#
    </cfoutput>
    </cfcase>
    <cfcase value="PDF">
    PDF
    <cfdocument format="pdf">
    <cfoutput>
    #htmldata#
    </cfoutput>
    </cfdocument>
    </cfcase>
    </cfswitch>
    </cfcase>
    <cfcase value="CSV">
    <CFHEADER NAME="Content-Disposition" VALUE="attachment;
    filename=lop.csv">
    <cfcontent type="application/msexcel">"Cee Num","plot
    No"
    <cfoutput query="getlop"> #ltrim(CeeNum)#, #PLOT#
    </cfoutput>
    <cfabort>
    </cfcase>
    </cfswitch>
    <!-----------here is the las page
    ------------------------csv---------------------------->
    <cfquery name="getlop" datasource="oracdb10">
    select
    tabTee.CEEnum,
    tabTee.Plot,
    FROM
    tabTee
    ORDER BY
    tabTee.CEEnum
    </cfquery>
    <CFHEADER NAME="Content-Disposition" VALUE="attachment;
    filename=lop.csv">
    <cfcontent type="application/msexcel">"CEE num","plot
    No"
    <cfoutput query="getlop">#CEEnum#,#Plot#
    </cfoutput>

    CSV interpreted format expects a carriage return/line feed at
    the end of the row. Try
    <cfcontent type="application/msexcel">
    "CEE num","plot
    No"<cfoutput>#chr(13)&chr(10)#</cfoutput>
    <cfoutput
    query="getlop">#CEEnum#,#Plot##chr(13)&chr(10)#
    </cfoutput>
    HTH,

  • How to display horizontally to vertically column in oracle

    Dear All
    How to display horizontally to vertically column in oracle,Please give me Sol. ASAP

    Sunil,
    Which column is the sal column? I can’t see any numeric columns in your query. If you use htmldb_item calls in your query column, then this makes them strings and you can’t build sums on string columns. If you want to build sums in an updateable report / tabular form, then don’t use the htmldb_item API. Instead use the built-in display types on the report column attributes page. Using the built-in display types is the better options in most cases anyway and they do allow you to calculate sums even if the column is a text field or display and save type field.
    Regards,
    Marc

  • How do you get iPhone to display horizontally

    How do I get my iPhone 5s to display horizontally?

    Fist make sure Rotation lock is NOT on. Swipe up from the very bottom of your screen to reveal the Control Center. The Rotation Lock icon is the circular arrow around a small padlock. Make sure that is not on. It should not be White.
    If Rotation Lock is not on all you have to do is rotate the iPhone while holding vertical. Those apps that support rotation will rotate. Many apps and the Home screens, however do not Rotate.
    To check rotation start Safari. Then try and rotate the screen. Safari does support rotation. Report back if you are still having problems.

  • Budget is not getting displayed in Report S_ALR_87013558

    Hi Friends,
    For project the budget is not getting displayed in Report S_ALR_87013558 though the budget is planned by TCode: CJ30 and released also by TCode: CJ32
    Is there any setting in customising in information systems to display in the report.
    Please treat this as quite urgent.
    Regards,
    Manohar N

    Hi Sridhar,
    Thanks for the input.
    But still Budget is not appearing in the report, even after running CJBN & CJEN.
    I had a look into CJ30 but the overall Budget is available. Is there any change required in the report.
    Regards,
    Selva

  • Complete data not displayed in Report

    Hi forum,
    I have a cube based on data source 0FI_AR_4,which is updated via an ODS.I have created a query for ageging analysis.The query uses Referrence number ( invoice number) to display the receivables of various customers and number of days from due date.
    To my surprise many invoice numbers are not being displayed in the query, but when i restrict the query to the invoice numbers which are not being displayed the report generated is able to display all the doccuments.
    I have checked the data in the cube and all the invoice numbers are flowing well fro R/3.
    My only way of saying thanks to the people who solve the issue or provide helpful answers is by assigining points.
    Regds
    Suhel

    hello
    This is simple problem
    The result the query fetches is not able to display in the number of cells provided in the excel sheet
    So when you restrict the data, the query is able to show all the data fetched by accomadating in the columns available in the excel.
    Here in your case , there are not enough columns in the excel sheet to display all data
    Regards
    N Ganesh

  • Text data is not displaying at Report level for an Infoobject Item name

    Hi All,
    Texts data is maintained at Info object level but text information is not displaying at Report level for an object.  I have set the property at query level as "Text", but at report level it is displaying key values of the object, not displaying texts information.  This problem occured in QA(Quality) system but not replicated in Production system.  I have checked all properties at backend and query level and compared the same between QA and Production system didn't find any difference.
    Please suggest what might be the cause: at report level it is displaying key values instead of the textual information even text data is mainintained at backend.  In production it is displaying textal data for the IO.
    Thanks in advance.

    Hi All,
    Thanks for your valuable information.  I have changed the setting under Advanced tab as "Master data" for Access type for results values, but didn't solved the problem still it showing key information for the IO.
    In Production system the report displaying texts information for the IO, but in QA its displaying key information. The problem exits only in QA, its working fine in DEv and Production.
    As per my understanding might be the issue with Patches will be checking with Basis team on the same.
    Please suggest if you have any alternatives to fix the issue.

  • I need to display a Report which contain -- del QTY  and  INV QTY   in one

    Hi ALL,
    I need to display a Report which contain
    <b>Customer  , Material , Order No, Delivery No, Billing No , Order Qty , Dev Qty, Bill Qty , Invoiced Qty  and There Values  in One Line  .</b>
    How can I Display, When I am executing the report against the Delivery Number Bill Qty and Invoiced Qty is showing Hash ( # ).
    Do I need to right any Routines for this, if I am correct,  where I have to write that code and what is the code ,
    What are the Consolidation  routines ?????
    I am working on BI 7.
    Regards ,
    Shaik
    Message was edited by:
            shaik

    Frst check in backend, which all cubes have got data for each of three..
    Corresponding you can go ahead with Multi/Infoset..
    Look for reference no in all three cubes and pick one order and track tht by reference no in all cubes,
    Hope it helps..
    Thanks for points assigned

  • Report 6i/Webdb -Not able to display the report in the browser - rep- 3002 error.

    Would someone tell what I missed, I have set up the following:
    1) a report using report builder on NT
    2) my database is in Unix
    3) my report server is started in NT
    4) I run webdb listener for the following code: http://myweb.com/cgi/rwcgi60.exe?server=repserver+report=myreport+userid=usid/pw/connect_string+destype=cache+desformat=html. Then, I receive this message:
    Error: The requested URL was not found, or cannot be served at this time.
    Oracle Reports Server CGI - Report Job has terminated with error.
    Reports Server Replies:
    REP-3002: Error initializing printer. Please make sure a printer is installed.
    Why is it thinking I want to use the printer whereas I want to display the report in the browser?. Any help would be appreciated.
    null

    It sounds like that your Web CGI did not configure right. To test if your CGI configuration is correct, type:
    http://hostname:port/cgi-bin/rwcgi60exe?
    If you get a help screen, then you should be able to bring up your report.
    Regards,
    Xiaoling

  • Field symbol has not yet been defined-ALV Grid Display in Report

    Hi all,
              Iam calling a Function module for ALV grid display in Report programming. Its throwing the Error message Field Symbol has not yet defined. Can any one suggest what i have to do regarding it?

    Hi,
    <li> This is problem with fieldcatalog.
    <li> Check field names or table name in small letters in quotes while building fieldcatalog internal table
    <li> Check the fieldcatalog internal table , whether it has same fields as in data table which is shown using GRID_DISPLAY function module.
    Thanks
    Venkat.O

  • Can not display BI report in Web ui

    I created reporting profile with both bi and interactive reporting active and assigned to the business role functional profile
    I gave the BI connection client in the report that I wanted. When I select the report in webu ui, it's taking me to a sign on pad. I assume this for BI sign on pad and When i enter sign on, it's not taking me any where.
    This just a standard report in CRM My top 5 quotations. All necessary steps in basic bi connection, basic sales analytics are done too
    How does the the connection between BI and crm works?
    Please advise

    Hi Experts,
    We are using Webiu 2007 with BI 7. 
    We linked our sandbox to RWT system to test the report output. In my CRS, I have source system RWT defined and the same way in BI also we have assigned CRS to link these systems together. It is my understanding that when we select the report, we are just calling the from BI into CRM.  I have done the following steps in CRM
    1) Created reporting profile in CRM analytics as both BI and CRM interactive reporting activated
    2) Assigned this reporting profile to business role
    3) I selected My-Top-5 quotation report and gave the BI system in display  bi reports
    4) I can see the report on webui.
    Problem: When I selected the report,  a logon pad appears and I enter RWT user id and password, it's doing nothing.  But, I have another user who is logging in for the first time got an error "Error loading template "OTPLB_OCRM_QUTO_Q0001_1 notification number BRAIN276". When the same new user tried to login second or third time, it's not showing the error and nothing is happening when we enter userid and pass word.  But, we can logon to GUI RWT.
    We tried to pull a query view report and web template reports see if we can display data. The BI team gave me couple of info objects keys. 
    1) I created the report with object key and type as one for 3.x template and one for 3.x query view
    2) Created logical links for these two reports and selected these two reports in business role. Now the reports are showing in webui
    3) When I select any of these, it taking to a blank screen without any logon screen. 
    BW team says that these reports are running with data in their system.
    Can someone please help?

  • Display of report in excel format.

    Hi,
      How to display a report in excel format?? I have the display details in an internal table.
        Is it possible for the output to come in excel format as soon as we  run the pgm other.than downloading from list or grid format..If so how to do it??Kindly help..
    Thanks..

    Hi,
    Once you have all the data in the internal table, just use function module 'Download' or 'WS_Download' and pass the parameters in function module like the below for example.
    if not i_list[] is initial.                          " i_list is an internal table  
    call function 'WS_DOWNLOAD'                          
          exporting                                       
               filename            = filename1            
               filetype            = 'DAT'                
          tables                                          
               data_tab            = i_list               
               fieldnames          = i_header     "i _header has the field names
          exceptions                                      
               file_open_error     = 1                    
               file_write_error    = 2                    
               invalid_filesize    = 3                    
               invalid_table_width = 4                    
               invalid_type        = 5                    
               no_batch            = 6                    
               unknown_error       = 7                    
               others              = 8.                   
    endif.
    Now, the excel will be created which has all the data.
    Hope this helps.
    Thanks,
    Srinivasa

  • Display Oracle Report on new window

    Hi,
    How can I display Oracle report from HTML DB on a new browser window? I have branch to this report. Thanks much for your help.
    Lakshmi

    Search this forum for "new window". You should find it. Try:
    checkbox and report page in new window

Maybe you are looking for

  • Is it possible to run Oracle 11g R1 on VMWare instance?

    Hello, I have installed Oracle in a VMWare Windows XP instance, and when I try to navigate in IE7 to the Enterprise Manager I just get square boxes. I'm just trying to go to http://localhost:1158/em I'm a little new to this. Did I mess something up?

  • Credit note for Returns

    Hello, I did a credit note for a "returns order". Does someone know why I get the message: Document xxx saved (no accounting document generated) After that I have to press the "green flag" in change billing document or the ReleaseToAccounting within

  • Decimal places are not displayed in smartforms

    Hi,   Iam having a quantity field which has length 13 and decimals 3. While debugging it has the value has decimal places but while displaying it does not have the decimal places. Only the whole number is displayed. Can anyone help how to rectify thi

  • Adobe CS6 freezes or doesn't open.

    An employees CS6 won't open or do anything when trying to open files. Not sure what to do for this issue.

  • Provide list of the fixes with the new upgrade via OTA

    Hi, Can you please start providing a list of all the fixes available with the new upgrade via OTA. The list can be displayed in the System Update section along with the latest upgrade. This will give the users an idea on what all changes are are avai