Defining a Center Aligned Table in a WebI Report ?

I sure hope I'm missing something, but one of our developers has been struggling with this for days and it seems like such an obvious report building exercise.  I looked myself and couldn't see how to do it either... not even using something crafty.
The basic problem is that we have some content that will change every time the report is run, so we put this data in a one row table with the "show when empty" feature disabled for the cells and "auto-fit width" turned on.  If we could just center align the resulting table we would be fine, but the only way to center align it is to select another item and then use the center align feature.  However, that is a one-time operation that simply calculates the offset given the current data.  If the report is run again with different prompts (for example) the table size may be different, but the center offset is not recalculated because there is no way to mark the table for center alignment.
So we need the table to be center aligned (either to the page, report header, or another element would work for us) because it will have multiple (optional cells).  Also, FYI, we can't just put it all in one forumla and let the cell content be centered... because we're actually embedding multiple hyperlinks in those other cells... in a borderless table... to get a centered block effect on the results.
Any suggestions?  Only thing we've come up with is to insert padding cells that we set to Fixedsys fond and then calculate a space Fill() on based on the other results... but that's really messy and seems like overkill for something that's normally a "bread and butter" report building feature.

Hi Ray,
As I understand you want to Centre align the table , but when you select the  table centre align feature is disabled and you can only align the text in the table.
You can use Relative Positioning Feature to align the Table in relation to the Bottom, top, Left and right edge of the report and other block. This feature allows user to fix the position of the table even if data in the table changes and auto-adjust the table position when block data or another block data changes.
You can manually drag the table to the centre of the report; set the alignment of the text to the centre, when your data changes the, WEBI wonu2019t change the position of the table nor it changes the text alignment.
Please paste the report data here so that I can understand how you want to display the table data and your statement u201Cwe put this data in a one row table with the "show when empty" feature disabled for the cells and "auto-fit width" turned on.
Do you have any other blocks of data in your reporting along with the table data that you want to centre align?
I Hope this Helpsu2026
Thanksu2026.
Pratik

Similar Messages

  • Hiding table items in web report when "no applicable data found"

    Hi,
    i want to hide a complete web item from a web report using web table interface
    when i have the situation "no applicable data found".
    I cannot use javascript due to requirements in my solution.
    can i set some attributes in the START method in the class?
    i can see there is an attribute N_NO_DATA which tells if no data is found.
    Can i use this in the other methods to hide the complete table including table heading?
    Best regards,
    Jarle

    Hello,
    datas are available in the Cube, they are displayed when there is no filter or when only one single value is selected in the filter.
    The problem happens when two or more values are selected in the filter.
    Example :
    The field selected is Profit Center.
    Without filter the I can see :
    PC1
    PC2
    PC3
    etc...
    If I select in filter the value PC1, I can see :
    PC1
    If I select in filter the value PC2, I can see :
    PC2
    But If I select in filter the values PC1 and PC2, I can see :
    No Applicable Data Found.
    BR,
    Pedro.

  • How to add A single row at the middle of the table in a Webi report

    Hi,
         I created a Webi report using Universe(Created universe using bex query).Now i have a requirement to display a row at the middle of a report. Can you please tell me ,how to add a sigle row at the middle of a Webi report.
                                                    Thanks in advance
    Regards
    Monika

    Hi Monika,
    It is not really possible to add a row (I assume you mean of unrelated data) to the middle of a table in a report. You can add a new table with a single row between two tables. For instance you could add a new one row table, or even single cells which are positioned relatively between two tables. Possibly a block on top of another. But this gets tricky.
    Can you explain in more detail what you are trying to do?
    Thanks

  • How to access data from SAP Tables from a Webi report

    hi all,
    I have a webi report for financial data and from a Bex query which is build on a Cube (this has data from 2 SAP ECC systems)
    i want to build a functionality where in i can call some SAP Table data from this webi report. i should be able to pass information or some hard code where it can understand the source system it has to pick data from.
    in SAP BI, we have this ption wherein we can achieve this through RRI..
    is this possible in Webi ?
    Thanks
    SKS

    Hi.
    Create a universe on top of SAP Tables and create a webi report.
    Using hyper link /open doc we can call  this report from the webi report created on top of your Cube .
    @Sri

  • Center align Alv Heading possible ?

    Hello everyone,
    I was wondering is there any possiblity to align ALV heading.
    Currently i am using 'REUSE_ALV_COMMENTARY_WRITE'
    Using the TYPE SLIS_T_LISTHEADER, i am adding the headings and calling 'REUSE_ALV_COMMENTARY_WRITE'.
    Any possiblity to Center align the ALV headings
    Thanks.

    REPORT  ZTEST4.
    TABLES : t001.
    TYPE-POOLS: slis.
    DATA : w_repid LIKE sy-repid.
    TYPES : BEGIN OF ty_comp.
            INCLUDE STRUCTURE t001.
    TYPES : END OF ty_comp.
    DATA: wa_layout  TYPE slis_layout_alv.
    DATA: it_fieldcat TYPE slis_t_fieldcat_alv,
          wa_fieldcat TYPE slis_fieldcat_alv.
    DATA : it_comp TYPE TABLE OF ty_comp.
    INITIALIZATION.
      w_repid = sy-repid.
    START-OF-SELECTION.
      SELECT * FROM t001 INTO TABLE it_comp.
    END-OF-SELECTION.
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          i_program_name         = w_repid
          i_internal_tabname     = 'IT_COMP'
          I_STRUCTURE_NAME       = 'T001'
          i_inclname             = w_repid
        CHANGING
          ct_fieldcat            = it_fieldcat[]
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 2
          OTHERS                 = 3.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program          = w_repid
          i_callback_html_top_of_page = 'HTML_TOP_OF_PAGE'
          is_layout                   = wa_layout
          it_fieldcat                 = it_fieldcat
          i_html_height_top      = 10
        TABLES
          t_outtab                    = it_comp
        EXCEPTIONS
          program_error               = 1
          OTHERS                      = 2.
    *&      Form  html_top_of_page
    FORM html_top_of_page USING document TYPE REF TO cl_dd_document.
      DATA: text TYPE sdydo_text_element.
      DATA: position TYPE i.
      SEARCH document->html_table FOR document->cursor.
      IF sy-subrc eq 0.
        position = sy-tabix.
        CALL METHOD document->html_insert
          EXPORTING
            contents = '<div class=MsoNormal align=center style="text-align:center"> '
          CHANGING
            position =  position.
        CALL METHOD document->html_insert
          EXPORTING
            contents = '<span align="center" style=" font-weight:bold;">Test Company Code Data</span> </DIV>'
          CHANGING
            position = position.
      ENDIF.
      CALL METHOD document->new_line.
      CALL METHOD document->new_line.
      text = 'User Name : '.
      CALL METHOD document->add_text
        EXPORTING
          text         = text
          sap_emphasis = 'Strong'.
      CALL METHOD document->add_gap
        EXPORTING
          width = 2.
      text = sy-uname.
      CALL METHOD document->add_text
        EXPORTING
          text      = text
          sap_style = 'Key'.
      CALL METHOD document->add_gap
        EXPORTING
          width = 10.
      CALL METHOD document->add_icon
        exporting
          sap_icon = 'ICON_DATE'.
      text = 'Date : '.
      CALL METHOD document->add_text
        EXPORTING
          text         = text
          sap_emphasis = 'Strong'.
      CALL METHOD document->add_gap
        EXPORTING
          width = 2.
      text = sy-datum.
      CALL METHOD document->add_text
        EXPORTING
          text      = text
          sap_style = 'Key'.
      CALL METHOD document->add_gap
        EXPORTING
          width = 10.
      text = 'Time : '.
      CALL METHOD document->add_text
        EXPORTING
          text         = text
          sap_emphasis = 'Strong'.
      CALL METHOD document->add_gap
        EXPORTING
          width = 2.
      text = sy-uzeit.
      CALL METHOD document->add_text
        EXPORTING
          text      = text
          sap_style = 'Key'.
      CALL METHOD document->new_line.
      CALL METHOD document->underline.   "Draw  an underLine
    ENDFORM.                    "HTML_TOP_OF_PAGE

  • Need to have same report format in Xcelsius as there in WEBI report

    Hi All,
    I have 5 tables in my WEBI report placed horizontally. But when i try to bring these tables from webi to Xcelsius using Live office,  those tables are appearing Vertically in excel. In there any work around for this. I need to display those tables horizontally in the excel as there in WEBI report.
    Thanks,
    Shweta.

    Hi Remi,
    If export the CR report to excel, you can import this excel sheet in Dashboards using the symbol near Manage Connections option.
    But this will be a static spreadsheet. If you want to use the live data then you will have to go with Live Office data connection.

  • Some of the pivot table header column not center-aligned

    I've dragged a pivot table model from Data Controls. The generated pivot table on page does not display some of the header columns center-aligned. I tried to set a css style in HeaderFormat listener for the columns, but it did not work. I checked the html source code and found the problem was caused by "colspan" not created properly. I'd like to know how pivot table header columns are created, anyone who knows please kindly give some tips,thanks!

    Try setting the Header Row to allow to repeat. I've had to set that Repeat option to get things to break over pages correctly.
    Ryan D. Lunka
    Cardinal Solutions Group
    [email protected]

  • Is there a shortcut to center-align all items of a certain type only?

    I know the title of this thread is poorly worded; I apologize. Let me try to explain.
    I design transit schedules, which I create in InDesign using tables. These schedules list arrival times for bus stops, but when the bus does not stop at a particular stop, this is indicated by an em dash.
    Example:
    The times are left-aligned within the columns (they are aligned on the colon). However, the em dashes are center-aligned. Currently, the entire table is left-aligned by default, and I manually highlight and center-align the em dashes. When there are just a few em dashes or when the em dashes are all adjacent to each other, it's no big deal.
    But I often have to work with schedules in which the em dashes are in every other row (like the top half in the example above) or scattered throughout the table, and in those cases, my very manual method is a real pain in the neck—I have to highlight and center each em dash individually.
    What I would LOVE to find is a feature similar to the Find and Replace feature, in which I could essentially ask InDesign to Find all em dashes within the document and center align them only. I've searched for such a feature to no avail. Am I overlooking something, or is this just not possible in InDesign? And if it's not possible, can you think of a better and more efficient way of center-aligning the em dashes than my current method?
    FYI, I'm still using InDesign CS3, though I hope to upgrade soon. If I learn that a Find and Align type of feature is available in CS5, well—that's just more motivation for me to upgrade ASAP!
    Thanks for your help and input.

    It can be solved through find and change itself. I think the below image will clarify your requirement.

  • How to put a tab space in a center aligned paragraph and have it remained centered?

    I am trying to put a tab spacing within a paragraph that is center aligned but when I press the tab button it pushes the paragraph to the left. How do I solve the problem? I have several lines I need to do this for so adjusting it one but one is a bit tedious.

    I don't use Captchas because they are not web friendly.  Humans have a hard time reading them which often leads to form submission failures and frustration.  I much prefer the Honeypot (hidden input field) method.  It traps spam bots who cannot resist filling in fields because they don't use CSS or JavaScript.  If the hidden field contains any characters, your form processing script can be set-up to flag that as spam and abort the submission.  Humans never see the hidden field, so it works seamlessly behind the scenes.   There's no limit on how many hidden form fields you can have on a page.
    Nancy O.

  • Smartforms - Center Alignment in the cell

    Hi
    I have defined a label in the following format using Smartforms...
    All the variables are contained within a template, which is in a loop
    I see that the texts which are right to the bar code are coming at the top right corner..
    http://img41.imageshack.us/img41/2193/label1present.png
    How can I get them to right center alignment like the following image...
    http://img193.imageshack.us/img193/4839/label1desired.png

    Hi Grame,
    You can create the 2 windows ,. one for bar code and another for that text.
    Overlapp those wondows so that the text window will come at the place where u want.
    Try if this is working.
    Rgds,
    Madhuri

  • How to center align preview page

    When I preview my webpage (which I am creating in fireworks) in the browser it is to the left of the page, How do I center align it?? Thank you in advance for your help

    You shouldn't be creating your total web page in Fireworks, only the graphics  :-)
    You should slice up the images you need and then export those and use them in your HTML or via the stylesheet as background images.  A web page that is full of images will only slow down the loading plus not be indexed by search engines...
    To then center the page, you need to use CSS to to align the page in the center of the browser window regardless of window size.  This again, is done when you move over to the HTML editor, not in FWs.
    A good tutorial that may help the transition from taking a FWs comp to HTML
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt1.html
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    Book: Ultimate CSS Reference
    http://www.sitepoint.com/launch/005dfd4/3/133
    http://twitter.com/nadiap

  • Vertically-aligned tables shift down when entering/editing text within the table.

    Hi all,
    We have a sudden problem that is occurring, and I've done a lot of searching without finding anything close to this happening elsewhere.
    If there is ever a table that is aligned vertically within a text frame, you cannot edit the text without having it shift down one line break for every letter you type, until it's bottom-aligned within the frame. You can then click "align center", and it will re-align itself. Then, if/when you need to change even one letter again inside the table, it will shift down one line.
    We've tested it with two different docs on both Mac and PC, with the same problem. I've cleared my prefs on the Mac to see if that would make a difference, and it hasn't done anything.
    Any thoughts here? I can't recall anything that would have changed since this started happening, but it won't leave us alone now!
    Thanks!!

    Very interesting. I do lots of tables but don't vertically justify so I have never run into this. However I can confirm this behavior on a new clean test page I made, using InDesign CS5 (7.0.3) on Mac OS 10.6.6. I have no other problems with InDesign; it is running flawlessly. And no weird plug-ins or system hack software.
    My test file uses my default font (Adobe Minion Pro) and the default table (Insert > Table).
    It also shifts down when I delete a character in a cell. And the shift for me is more than one carriage return. I can get it back to center-aligned by top aligning and then choosing center align again.

  • I want to display header information of My ALV Report center Aligned.

    Hi all,
    I want to display header information of My ALV Report center Aligned. How can I do it..Also I want to show two different Layout display of ALV report according to the Radio Button Present in the selection screen.. Pls help me out in this.

    Hi,
    call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                i_callback_program      = gd_repid
                i_callback_top_of_page   = 'TOP-OF-PAGE'  "see FORM
    Form top-of-page.
    *ALV Header declarations
    data: t_header type slis_t_listheader,
          wa_header type slis_listheader,
          t_line like wa_header-info,
          ld_lines type i,
          ld_linesc(10) type c.
    Title
      wa_header-typ  = 'H'.
      wa_header-info = '       EKKO Table Report            '. Leave Space such that it comes to Center
      append wa_header to t_header.
      clear wa_header.
    Date
      wa_header-typ  = 'S'.
      wa_header-key = 'Date: '.
      CONCATENATE  sy-datum+6(2) '.'
                   sy-datum+4(2) '.'
                   sy-datum(4) INTO wa_header-info.   "todays date
      append wa_header to t_header.
      clear: wa_header.
    Total No. of Records Selected
      describe table it_ekko lines ld_lines.
      ld_linesc = ld_lines.
      concatenate 'Total No. of Records Selected: ' ld_linesc
                        into t_line separated by space.
      wa_header-typ  = 'A'.
      wa_header-info = t_line.
      append wa_header to t_header.
      clear: wa_header, t_line.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
           exporting
                it_list_commentary = t_header.
               i_logo             = 'Z_LOGO'.
    endform.

  • Picture Center alignment in a page

    Hi,
    Can we do center alignment of an image in crystal reports?
    The scenario is like this.
    1. Created a OLE object in details section.
    2. Defined the detail section as "Format with multiple columns.
    3. OLE object grpahic location is defined as the file name and location comes from database.
    Here, in database, I defined the pciture size as Small, Medium and large. Based on that, we are adjusting the spaces in the report.
    For example, if there are 4 small images, I am displaying those images in a single page. As I defined the details section with "Format with multple columns", I can make 4 small images display in one page.
    If there are medium images, I am displaying 2 images in a single page.
    If there are large imates, only one I am displaying in a page.
    This setting is done based on the image size given in database.
    Here the issue comes, as even though the image size can fit into one portion of page, the image size is defined either as medium or large. And the image is by default left aligned.
    Here I would like to center align the object, so that, the page won't look odd.
    Is there any way we can do this?
    Thank you,
    Regards,
    Gowtham

    Hi,
    The page can have something called regions. You can place portlets in these regions. If you are on 309 you add regions by editing the page. if you are on 902 then you can do it by editing the layout of the page.
    Hope that helps.
    Thanks,
    Sharmila

  • Still cannot center align panel !!  can it be done in JSC2????

    Hi,
    I have trawled trhough posts and cannot find how to center align a panel on a page. I have tried setting width=100% and setting vertical align to center for components.
    Main problem is when I resize page all the content is fixed. I would like this to move to center based on page size.
    Is there a way to wrap all of page in a div and set width=100%?
    Can i wrap all the page in a one cell html table and set width=100%?
    any help much appreciated.
    loti.

    Search for Tob Norbye's Weblog... He has quite some work on it. As far as I remember, he set "position: absolute" and set the left margin = 1/2 of the width of the layer you want to center-align. also, he set "left: 50%". This worked for me, but it has one catch, you have to key in the half of absolute width, besides that the solution seemed good enough to me.

Maybe you are looking for

  • How to check/update an open purchase order ?

    Dear Experts, Is there any Transaction to check the open purchase order? Since our company has recently started working with SAP, my supervisor asked me to make a full report of it. Thus, I would kindly like to ask                                    

  • How do I change the default address that macmail emails to?

    I set up a group to mass email and several of there contacts in the group have multiple email addresses.  How does macmail decide which address to send to and how can I change that? Thanks, C

  • Oracle 10.2.0.4 vs 10.2.0.5 SQL optimizer

    Hello, Recently we upgraded from Oracle 10.2.0.4 to 10.2.0.5 deployed on AIX 5. Immediately we could see slowness for a particular SQL which used partition as well as indexed column in predicate clause. e.g. SELECT COL1, COL2 FROM TAB1 PARTITION (P1)

  • Cloning Schema within same database in DG environment

    Hi guys, I have a Production database with Data Guard configured (2 physical standbys, one same DC, 2nd other DC). I need to clone a schema (size approx. 380GB) within the same database, ofcourse creating cloned schema with a new name. Example: =====

  • How to switch from jdbc driver 10.x to 9.x

    I currently have the jdbc driver 10.x installed and I cannot get rid of it. I deleted every instance of ojdbc14.jar on the server. and I put classes12.jar in /$catalina_home/common/lib/ I stop tomcat restart apache and than start tomcat again. and ev