How to wrap the heading text in alv.

HI all,
      I need help, how to wrap the heading text in alv.
can any help ... plz..
Advanced Thanks
Regards
GUhapriyan

Hello GuhaPriyan,
I assume that you're referring to the ALV Grid's title. The maximum length for this title is 70 characters and this would generally fit in the one line.
Are you intending to wrap it because you purposefully want the text to come in two lines? In that case, I'm not sure that it's possible.
But otherwise, there's an option in the Layout called SMALLTITLE. You can set this attribute so that the title would be displayed in a amaller font and hopefully, all of your text shows up on the screen.
Regards,
Anand Mandalika.

Similar Messages

  • How to retrieve the header texts for a contract

    HI,
      i think we need to use the FM read_text to get the header texts for a contract but dont know how to use the FM like what all the parameters are passed to that to get the header texts of a contract(va43).
    any help is appreciated with points.
    thanks
    prasad

    Hi,
      Pls refer this code,    
        CALL FUNCTION 'READ_TEXT'
                  EXPORTING
                    client                  = sy-mandt
                    id                      = '0001'
                    language                = sy-langu
                    name                    = v_textid
                    object                  = 'KNMT'
                  IMPORTING
                    header                  = t_header
                  TABLES
                    lines                   = t_lines
                  EXCEPTIONS
                    id                      = 1
                    language                = 2
                    name                    = 3
                    not_found               = 4
                    object                  = 5
                    reference_check         = 6
                    wrong_access_to_archive = 7
                    OTHERS                  = 8.
                IF sy-subrc EQ 0.
                  LOOP AT t_lines.
                    CONCATENATE w_arktx t_lines-tdline INTO w_arktx
                                       SEPARATED BY space.
                  ENDLOOP.
                ENDIF.
                IF w_arktx NE space.
                  MOVE w_arktx+1(1583) TO t_lips-arktx.
                ELSEIF w_arktx EQ space.
                  CLEAR w_text_name.
                  CLEAR v_textid.
                  wa_lips-matnr = t_lips-matnr.
                  wa_lips-vkorg = t_likp-vkorg.
                  wa_lips-vtweg = t_lips-vtweg.
                  w_text_name = wa_lips.
                  CLEAR w_arktx.
    Retrieval of Sales Text
                  CALL FUNCTION 'READ_TEXT'
                    EXPORTING
                      client                  = sy-mandt
                      id                      = '0001'
                      language                = sy-langu
                      name                    = w_text_name
                      object                  = 'MVKE'
                    IMPORTING
                      header                  = t_header
                    TABLES
                      lines                   = t_lines
                    EXCEPTIONS
                      id                      = 1
                      language                = 2
                      name                    = 3
                      not_found               = 4
                      object                  = 5
                      reference_check         = 6
                      wrong_access_to_archive = 7
                      OTHERS                  = 8.
                  IF sy-subrc EQ 0.
                    LOOP AT t_lines.
                      CONCATENATE w_arktx t_lines-tdline INTO w_arktx
                                         SEPARATED BY space.
                    ENDLOOP.
                  ENDIF.
                  IF w_arktx NE space.
                    MOVE w_arktx+1(1583) TO t_lips-arktx.
                  ELSE.
    REgards
    srinivas

  • How to change the header text on output type in sapscript

    Dear All,
    In the sapscript, I would like to changes the header text from invoice number to sales number on the output type z001.
    Could someone can guide me?
    Thanks.

    Hi,
    Please go through following link :
    http://forums.adobe.com/thread/870081#870081
    Thanks and Regards,
    Vibhuti Gosavi | [email protected] | www.infocepts.com

  • How to get the header text of a PO

    Hi,
    Do you guys know which table stores the header text of a PO? i'm only getting RM06E which is a structure.
    Thanks!

    Hi,
    You need to use the Function Module 'READ_TEXT' for retrieving any text in the header texts.
    For this FM, the mandatory export parameters will be
    a) client b) ID c) language d) name e) object
    here the parameter name will be your P.O.No and the object will be your P.O. table - 'EKKO'.
    So on executing this FM, all the required texts are retrieved in the tables parameters. From this tables paramater, you can read the table and pass on the values to your required internal table for display purpose.
    lakshminarayanan
    Please mark all helpful answers for points.

  • How to change the header text fontFamily of spark DataGrid?

    I use an embed font (Nunito-Light.ttf),  and i can set the font of GridColumn to Nunito-Light in DataGrid , but it seems that it has no effect to the header of DataGrid.
    and then I create a  headerRenderer for spark DataGrid, and try to set the fontFamily of "labelDisplay" to Nunito-Light  , but It seems still no effect .
    If I set the fontFamily of "labelDisplay" to "Verdana" or "Arial" , it has effect , so strange! Is that a bug?
    Anybody  has the same problem? Please tell me how to solve it ,thank you very much!

    Hi,
    Please go through following link :
    http://forums.adobe.com/thread/870081#870081
    Thanks and Regards,
    Vibhuti Gosavi | [email protected] | www.infocepts.com

  • How to wrap the long text in page when the item is a messageStyledText

    Hi,
    I have one region which is a labeledfieldRN and two items under this RN which are messageStyledText.Now, those items are mapped to two VO attributes.Both are VARCHAR2(240).
    While running the page all 240 characters are appearing for these two fields and we are forced to scroll the page horizontally.
    'NoWrap' is made false for these two items.
    Is there any way we can wrap the data in next lines so that we need not scroll?
    Please help.
    Thanks,
    Abhijit.

    You may want to play around with the "Visual length" of other fields if you have them. Maybe by shortening other fields, you can prevent having to scroll for your 240 character length field.
    -Scott

  • How to edit the header text of colums in DataGrid

    Hi
    Iam not able to edit the headertext or column header names of the datagrid ..can somebody help me asap..how to do it...I want to edit the  column header names (headertext) in the runtime ..similar to  edit the data in the rows of datagrid by setting the editable property to true..

    Even the DataGridColunm has property headerRenderer.I tried the following ..But its not working ..plzz help me out
    <mx:DataGridColumn id="timeCol"    dataField="Time"    headerText="Time (ms):"  headerRenderer="Display" />
    The code for Display.mxml is as follows
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Label xmlns:mx="http://www.adobe.com/2006/mxml" initialize="inti()">
        <mx:Script>
            <![CDATA[
                public function inti():void{
                    this.addEventListener(MouseEvent.DOUBLE_CLICK,edit);
                public function edit():void{
                    trace("In Naga");
                    this.text="naga";
            ]]>
        </mx:Script>
    </mx:Label>

  • How to change the header text of documents posted to FI from accrual engine

    Dear experts,
    could anybody explain us step by step how we can get a different header or position text into transaction ACACTREE01, which can can be shown in FI or CO-Reporting.
    Kind Regards
    Sladinky

    Hi Sladinky,
    Can you please suggest this in case you have already implemented it ?
    Thanks,
    Sourav

  • How can repeate the header in hierarical alv

    Hi all,
       i want to display the two header for each key item in hierarchal ALV.
    please let me know if there any way to the above requirement.
    Regards
    Anil Kumar K

    Try this link :
    Re: Can i Have multiple levels of records in ALV GRID
    Hope It`ll give you some guide line .
    Thanks

  • Display the  long text in alv by using function modules

    Hi all,
    How to display the  long text in alv by using function modules ?
    Send me any sample code.
    Thanks in advance
    krupali.

    Hello KR,
    Use READ_TEXT and concatenate the first lines of the text.
    CALL FUNCTION 'READ_TEXT'
         EXPORTING
              id       = 'F01'
              language = sy-langu
              name     = lv_name " purchase order with leading zeroes
              object   = 'EKKO'
         TABLES
              lines    = t_lines
         EXCEPTIONS
              OTHERS   = 8.
    You can loop at t_lines and concatenate header in to some other field.
    Best Regards,
    Sasidhar Reddy Matli.
    Edited by: Sasidhar Reddy Matli on Aug 13, 2008 12:25 PM

  • How to wrap the text in column headers?

    Hi Friends,
    Can anyone please suggest how to wrap the text in column headers of a Java WebDynpro table?
    I believe that caption is the only UI element that a column header can have and it does not allow wrapping of the text.
    My original requirement is as follows,
    In a table I need to dynamically set the width of the columns according to the width configured by the user in some other view. All the columns of the table are dynamically rendered.
    Now what happens is when the user sets the width of the column to a rather low value, say 15 pixels, then the column is displayed like
    Supplier Catalog Name
    Sheila
    Catalog
    Name
    Dropdown
    As you can see it looks rather odd.
    Supplier Catalog Name is the header of the column and I use IWDCaption for header.
    Sheila Catalog Name Dropdown is the value of a particular row at the specified column. I am using a TextView as the TableCellEditor.
    I think what is happening here is that the framework wraps the text in the TextView according to the width specified (15px) and then the column width is extended because it can not accommodate the text (Supplier Catalog Name ) of the column header.
    We are using SAP NetWeaver Development Studio 7.0.12 as the IDE.
    I searched some forums and many people have suggested using scrollable columns but I don't understand how it will help in wrapping the text in a column header.
    Any help would be of great advantage.
    Thanks
    Amit

    Hi Deepti,
    Thanks a lot for the answer but the option that you have specified does not wrap the text. Instead it truncates the text being displayed and only the substring of the text which could be displayed in the given pixels is displayed.
    I need to show the whole text wrapped (Meaning if the width of the column is not sufficient then the text goes into the next line).
    Ayyapparaj,
    Thanks to you too for an helpful answer. It seems that the Netweaver has finally come up with a way to wrap the text in the column headers but as Manoj pointed out, I do not see the property headerTextWrapping  for a table column, Can you please specify which version of netweaver supports it?
    We are using SAP NetWeaver Development Studio 7.0.12 as the IDE.
    Thanks
    Amit Kapoor

  • How to display the header data on different position in alv report

    hi all,
    how to display the header data on different position in alv report.
    for example ,
    customer                                                   name
      xxxx                                                         xxxx
                     vendor        name     street 
                      xxxx         xxxx      xxxxx
    pls   help me .

    hi
    as per my understanding you need to trnasfer header internal table data  to pdf..
    please check the following links for internal table to pdf..
    Convertion of Internal table data to PDF
    This link is related to ur issue
    Re: how to insert the calling of the FM: OTF to PDF
    Thanks

  • How can I list the head texts or texts of position of the invoices created

    hello experts
    I have a consultation.
    how can I list the head texts or texts of position of the invoices created in module sap SD?
    Up to now I can see them visualizing the document SD for transaction VF03, but I need to see a listing of invoices and don't unite in one.
    he/she would thank their collaboration.
    greetings,
    Jorge Silva

    Dear Jorge,
    You can use T-Code VF05 or VF05N to generate list of Invoices with range of selection criterias...
    The concerned tables for the same are VBRK & VBRP.
    Let us know should you require any further help..
    Hope this helps...
    Give points if useful..
    Thanks,
    Jignesh Mehta

  • How to wrap the text in JTextPane

    hi all,
    I have a problem with JTextPane. I have a JPanel which have 4 JButtons, one Details button and one JTextPane. I have set JTextPane to JScrollPane. Thing is when i press the Details button the JTextPane must be visible. Window size is changing. can any one say how to wrap the text in the JTextPane.

    By default text in a JTextPane will wrap, so I don't understand the question.
    Read the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/text.html]Using Text Components for a working example.

  • Hi! How can I change the header text direction to vertical?

    I have many columns with big names, but I need small space for body cells, and I want to check all the table at a view ...  So I want to change the direction of the header texts to "left vertical" or "right vertical".

    There are a couple discussion threads on this already.  Fundamentally it is not a feature that Numbers supports.  There are several work arounds but non of theeem are great:
    Please see this thread:
    https://discussions.apple.com/message/15240103#15240103

Maybe you are looking for

  • SAP NetWeaver 7.02 ABAP Trial Version - Any plan?

    As [SAP Enhancement Package 2 for SAP NetWeaver 7.0|SAP Enhancement Package 2 for SAP NetWeaver 7.0] is available, I wonder if there will be a 7.02 version of NSP? Is there any plan? Thanks, Peter

  • If my Mini is running 64 bit can I run more than 4Gb RAM?

    I hear ALL over the place that the mini can not use more than 4Gb RAM. Is this a hardware limitaion of the motherboard/Processor? OR Is this due to the fact that mini's run at 32 bit? You can now easily run modern mini's at 64 bit: http://blog.leanop

  • Can you take a Video still to "create" a jpg ?

    I need some photos of some people for a calendar, but I only have VIDEO of them. If there some way to isolate an individual digital frame and essentially create a photograph that can be e-mailed? There is nothing about doing this in the tutorials.

  • Curbing the shown level of a menu tree in an ADF page

    Hi, I have a hierarchy of pages defined in my faces-config.xml as managed beans using the MenuModelAdapter, MenuTreeModelAdapter and MenuItem classes from the SR Demo/Tutorial. On each page is an af:page component which has the menu model as its valu

  • How to crop video AND fill frame?

    I have some old movies that I had converted to miniDV. Unfortunately the person who did it didn't zoom in enough on the projected image so the movie image doesn't quite fill the frame of the video. I'm editing these, and when I'm in FCE I've used the