Need to center align the headings in the BEX 7.0 report.

Need to center align the headings in the BEX 7.0 report. Also need to text wrap the headings in the BEX  7.0 report . Please let me know how do we do that?

Hi Srikanth,
Check this help doc on Report designer:
http://help.sap.com/saphelp_nw70/helpdata/en/43/8af9fecf797107e10000000a1553f7/frameset.htm
Bye
Dinesh
(Assign points if helpful)

Similar Messages

  • Index of the Headings in the Table - Group row number 1. 1.1

    I need to see the data as below in the grouping table
    Index of the Headings in the Table.
    1  Heading
    1.1 Sub Heading
    1.1.1 Detail Heading1
    1.1.2 Detail Heading2
    etc..
    kindly help me on the expression
    ShanmugaRaj

    Hi ShanmugaRaj,
    Suppose my Heading field is SalesTerritoryGroup, Sub Heading field is SalesTerritoryCountry, Detail Heading field is CalendarYear. Please refer to the following expression:
    =Runningvalue(Fields!SalesTerritoryGroup.Value,countdistinct,"DataSet2") & " " &
    Fields!SalesTerritoryGroup.Value
    =Runningvalue(Fields!SalesTerritoryGroup.Value,countdistinct,"DataSet2") & "." &
    Runningvalue(Fields!SalesTerritoryCountry.Value,countdistinct,"SalesTerritoryGroup") & " " &
    Fields!SalesTerritoryCountry.Value
    =Runningvalue(Fields!SalesTerritoryGroup.Value,countdistinct,"DataSet2") & "." &
    Runningvalue(Fields!SalesTerritoryCountry.Value,countdistinct,"SalesTerritoryGroup")
    & "." & Runningvalue(Fields!CalendarYear.Value,countdistinct,"SalesTerritoryCountry")
    & " " & Fields!CalendarYear.Value
    If you have any questions, please feel free to let me know.
    Regards,
    Alisa Tang
    If you have any feedback on our support, please click
    here.
    Alisa Tang
    TechNet Community Support
    The Report is very slow in rendering now after this logic.. Could you suggest on making it faster
    ShanmugaRaj

  • I am not getting the headings of the fields in ALV output.

    I am not getting ALV out put but  the headings of the fields in ALV output.
    Please see my below code .
    TYPES : BEGIN OF ty_zgxmit.
              INCLUDE STRUCTURE zgxmit.
    TYPES : END OF ty_zgxmit.
    DATA : gt_zgxmit TYPE TABLE OF ty_zgxmit.
    *&      Form  alv_display                                              *
    This subroutine is to display the out put in ALV.                    *
    FORM alv_display .
    Local data
      DATA: y_x          LIKE boole  VALUE 'X'.
    DATA: lt_fieldcat  TYPE slis_t_fieldcat_alv.
      DATA: lf_fieldcat  TYPE slis_fieldcat_alv.
      DATA: lh_index     LIKE lf_fieldcat-col_pos.
    For variant
    DATA: ws_repid LIKE sy-repid,
          g_save TYPE c VALUE 'A',
          g_exit TYPE c,
          g_variant LIKE disvariant,
          gx_variant LIKE disvariant.
      For 1st field.( RPT_LOC )
        CLEAR lf_fieldcat.
        lf_fieldcat-fieldname = 'RPT_LOC'.
        lf_fieldcat-tabname = 'GT_ZGXMIT'.
        lf_fieldcat-ref_tabname = 'RPT_LOC'.
        lf_fieldcat-ref_fieldname = 'ZGXMIT'.
        lh_index = lh_index + 1.
        lf_fieldcat-col_pos = lh_index.
        lf_fieldcat-key = y_x.
        lf_fieldcat-no_sum = y_x.
        APPEND lf_fieldcat TO lt_fieldcat.
    For 2nd field.( BAL_XMIT )
        CLEAR lf_fieldcat.
        lf_fieldcat-fieldname = 'BAL_XMIT'.
        lf_fieldcat-tabname = 'GT_ZGXMIT'.
        lf_fieldcat-ref_tabname = 'BAL_XMIT'.
        lf_fieldcat-ref_fieldname = 'ZGXMIT'.
        lh_index = lh_index + 1.
        lf_fieldcat-col_pos = lh_index.
        lf_fieldcat-key = y_x.
        lf_fieldcat-no_sum = y_x.
        APPEND lf_fieldcat TO lt_fieldcat.
    For 3rd field.( INC_XMIT )
        CLEAR lf_fieldcat.
        lf_fieldcat-fieldname = 'INC_XMIT'.
        lf_fieldcat-tabname = 'GT_ZGXMIT'.
        lf_fieldcat-ref_tabname = 'INC_XMIT'.
        lf_fieldcat-ref_fieldname = 'ZGXMIT'.
        lh_index = lh_index + 1.
        lf_fieldcat-col_pos = lh_index.
        lf_fieldcat-key = y_x.
        lf_fieldcat-no_sum = y_x.
        APPEND lf_fieldcat TO lt_fieldcat.
    For 4th field.( Z500_XMIT )
        CLEAR lf_fieldcat.
        lf_fieldcat-fieldname = 'Z500_XMIT'.
        lf_fieldcat-tabname = 'GT_ZGXMIT'.
        lf_fieldcat-ref_tabname = 'Z500_XMIT'.
        lf_fieldcat-ref_fieldname = 'ZGXMIT'.
        lh_index = lh_index + 1.
        lf_fieldcat-col_pos = lh_index.
        lf_fieldcat-key = y_x.
        lf_fieldcat-no_sum = y_x.
        APPEND lf_fieldcat TO lt_fieldcat.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                i_callback_program       = 'ZJV_2245'
                it_fieldcat              = lt_fieldcat
           TABLES
                t_outtab                 = gt_zgxmit
           EXCEPTIONS
                program_error            = 1
                OTHERS                   = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " alv_display

    You can force the headings like so.
    CLEAR lf_fieldcat.
    lf_fieldcat-fieldname = 'RPT_LOC'.
    lf_fieldcat-tabname = 'GT_ZGXMIT'.
    lf_fieldcat-ref_tabname = 'RPT_LOC'.
    lf_fieldcat-ref_fieldname = 'ZGXMIT'.
    lf_fieldcat-reptext_ddic  = 'Whatever Heading'.    "<-  Right here
    lh_index = lh_index + 1.
    lf_fieldcat-col_pos = lh_index.
    lf_fieldcat-key = y_x.
    lf_fieldcat-no_sum = y_x.
    APPEND lf_fieldcat TO lt_fieldcat.
    Regards,
    Rich Heilman

  • Since I upgraded to the latest os my spotlight doesn't seem to work anymore and the headings across the to keep disappearing and appearing

    Since I upgraded to the latest os my spotlight doesn't seem to work anymore and the headings across the to keep disappearing and appearing

    I think I figured out Firefox, I went under Help > Troubleshooting Information > Reset Firefox.
    I only have one account on my computer. Honestly I don't even really know how multiple accounts work. I've never played around with it. I already allowed Java - should I disable it?

  • Need to Center Align an Image

    I have a report that is printing out a series of barcode sheets. I need for the barcode image to be centered on the page each time it prints, but the problem is that the item will vary in size from page to page, depending upon the actual value behind the barcode. So, I can't just manually center the field in the paper layout, and if I set the field to 'variable' or 'expand' so the field can enlarge if it needs to, it simply extends out in the right direction, but not the left, and is off-center.
    Is there any way to make sure the field will stay centered based on the value of the field, and no the field itself?
    Thanks,

    Insert the image into a frame with variable horizontal elasticity, and then anchor the center of the frame top edge to some object centrally positioned on the page. If you don't have such, just draw a piece of line or something in the header of the page.

  • How to get my_text in the CENTER aligned on my_form?

    Hello
    I put  a text field (say, its name is 'my_field' 80 characters length) WITH OUT caption and NONE appearence (not Solid box, no Sunken box).
    And i am populating/filling this field with some value PROGRAMATICALLY. Pre-Populating value is vary in its lenght.
    For example in 1st case,  i am pre-populating this my_field with 'AAAAAAAAAAAAA'
    In some other case,  i am pre-populating this my_field with 'AAAA'
    In some other case,  i am pre-populating this my_field with 'AAAAAAAAAAAAAAAAAAAAAAAAAAA'
    Fine.
    But i want print this text/value IN THE CENTER all the time / all cases, no matter How much lenghts's value i am populating, i mean, it shuld come CENTER in the micro soft word
    Pls. let me know how to get this formatting as CENTER ALIGNMENT
    Thank you

    You probably need to set the Align property of the Text field at design time..
    Select the Text Field and then in the Text formatting toolbar, choose the Align Center option to have the text displayed always in the center.
    Thanks
    Srini

  • How do I center align the text in my text boxes if they are currently right aligned?

    I created a client questionnaire in Word and then turn it into a PDF and created the text boxes necessary. The problem I am having in Adobe XI Pro is that I want all of the text in my text boxes to be centrally aligned rather than left aligned. However, when creating and editing the text boxes, I see no option to help me do so. When clients fill out the form it looks messy because the information that the fill in tables in not centrally aligned, so it makes my tables look poorly organised. Help would be much appreciated, thank you.

    In Form Edit mode, right-click the field(s) and select Properties - Options, and under Alignment select "Center".

  • 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

  • I've been using samsung for a long time and I just changed into an iPhone 5s and the most important thing I need is my calendar appointments , but in the notification center it doesn't show my events for tomorrow , will there be an updated or this soon?

    I've been using samsung for a long time and I just changed into an iPhone 5s and the most important thing I need is my calendar appointments , but in the notification center it doesn't show my events for tomorrow and it doesn't even show more than 1 event  , will there be an updated or this soon? Or should I just shift back to samsung?????

    Go to settings/notification centre and make sure today vie and calendar day view are both on

  • How to align the JLabel to the center

    Hi,
    I made a JFrame and a JLabel, I want to put the JLabel to the center of the North position. But it doesn't work, it's just placed in the upper left corner. I tried to use html code, such as:
    JLabel l = new JLabel("<html><h1><center>Hello</h1></html>");
    And then put it in the JFrame's north position, but it doesn't work either. What should I do?
    Thx
    Adrian

    Oh, sorry,
    I just found out the function on how to align it to the center, it's
    JLable.setHorizontalAlignment(JLabel.CENTER);
    Please forget about this question.

  • I want to change my account in the AppStore from USA to Saudi , but there are some cents 0.04 $ prevent change to Saudi and I do not need these cents So what is the solution ?

    I want to change my account in the AppStore from USA to Saudi , but there are some cents 0.04 $ prevent change to Saudi and I do not need these cents So what is the solution ?

    Click here and request assistance.
    (88185)

  • I need to do sap sd certification ,training for same is very costly from authorised center and i canot afford ,the other way is i do training from unauthorised center and take certification exam in any country where prerequisite is not doing training

    i need to do sap sd certification ,training for same is very costly from authorised center and i canot afford ,the other way is i do training from unauthorised center and take certification exam in any country where prerequisite is not doing training from authorised center.how good it it to do prepare from unauthorised center and take exam in any country like australia ,US ?please help understand .

    Hi Preeti,
    please first understand the difference between a subject (your header) and its body line, please never write so long subject matter.
    Now coming to your queries , what you thinks being at Australia or US is free of Cost. The first thing is that i don't understand your mission for taking Certifications, Are you a working proffesional because for more than 2 yrs. of working experience, you don't need any training , you can take direct examinations.
    And if you are not a working professional, i don't thing taking any certification will serve any purpose in your job hunt, although it will enrich your Resume only, you will nothing get out of this from just taking a vertification
    So, please tell us that you are a fresher or having real time working exposure in SAP SD module, then any one will guide you well.

  • I need to know how to stop a notification that keeps coming up when playing a spades game, that keeps telling me to go to the game center. I even shut off the notifications in the settings, this is an anoying problem

    I need to know how to stop a notification that keeps coming up when playing a spades game, that keeps telling me to go to the game center. I even shut off the notifications in the settings, this is an anoying problem

    I'm pretty sure this is an Apple thing and you can't do anything about it. To get rid of the notification just do as it asks then try to forget about it.

  • 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]

  • Why does Vertical Align Center align objects along the horizontal?

    And why does Horizontal Align Center align objects along the vertical?
    -g-
    P.S. Please please please make the Eydropper tool available by function key so I can toggle to it while using the Text tool. Please!

    g,
    but when I select two objects and click the vertical align button they snap to an invisible horizontal line
    This is (almost) identical to:
    Because (the centres of) vertically aligned objects will be on the same horizontal level/line.
    And that is just one way of expressing what vertical alignment means. Here are a few others:
    Their centres have the same height,
    Their centres have the same Y value on the Artboard/Workspace,
    In all cases, you can draw a horizontal line through their centres.
    Mathematically, Y = C (Y is a constant value C) is the equation for a horizontal line.

Maybe you are looking for