In powl- how to adjust column size

Hi All,
In my Powl - I have a column of char320.
In display this field get scrolled - like abcdefgh, ijklmn till 320 char
i want to adjust the column size -  only 8 to 10 char to display & dots after that - like abcdefgh....
So that if required user can scroll & see it - but in defalut only 10 char column
I try it with -
      lw_fieldcat-width         = 8.
*    lw_fieldcat-wrapping      = abap_true.
But its not working
Any suggestions ???

Hi Priya,
Have you tried for optimizing the column width using Change Layout option?
BR,
RAM

Similar Messages

  • How to adjust the size of a region?

    Hello, would anyone know how to adjust the size of a region size?
    Thanks for your replies!

    Checkout an interesting article called " Oracle9iAS Portal Best Practices: Regions" to understand resizing region.
    http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/OTN_CONTENT/MAINPAGE/PUBLISH_CONTMGMT/TECHNOTE_REGIONS_0.HTML

  • How to adjust the size of the slide in keynote to 7.5 feet high x 3.1 feet wide?

    How to adjust the size of the slide in keynote to 7.5 feet high x 3.1 feet wide?

    Keynote is not designed to produce printed media, it is set up is for video. There are dozens of applications that are designed for printed output on the Mac, Pages, Word, In design, Quark, Open Office, Libra.
    Pages is the accompanying application in the iWork suite that is specifically designed to print to paper, you should look at that first as it May be on your Mac already.

  • How to adjust column length in function REUSE_ALV_GRID_DISPLAY

    Hi,
    I am using this function REUSE_ALV_GRID_DISPLAY to display .Please tell how to adjust the column length in  this function, so that it is set to default field name size.
    thanks

    Hi anu,
    The column width can be adjusted by using the following method:
    -> define layout of the type.
                data: it_layout type slis_layout_alv.
    -> call the reuse alv... by using the is_layout field name with the above defined variable.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
        I_CALLBACK_PROGRAM                =  <program that calls reuse>
        I_CALLBACK_PF_STATUS_SET          = < form to set pf-status>
        I_CALLBACK_USER_COMMAND           = <form to catch user command>
        I_STRUCTURE_NAME                  = < structure to be passed>
        I_GRID_TITLE            = < any title to appear on top of the grid display>
        IS_LAYOUT                         = it_layout
        IT_FIELDCAT                       = IT_FIELDCAT[]
        IT_EVENTS                         =
        IT_EVENT_EXIT                     = I_EVENT_EXIT  < to capture exit event>
      I_SCREEN_START_COLUMN             = 0 <screen settings>
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
       TABLES
        T_OUTTAB                          = IT_INACT_OBJ
       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.                 
    -> write a form to set the layout of the grid...
    *&      Form  build_layout
          text
    form build_layout.
      gd_layout-no_input          = 'X'.
      gd_layout-colwidth_optimize = 'X'.
      gd_layout-totals_text       = 'Totals'(201).
    Set layout field for row attributes(i.e. color)
      gd_layout-info_fieldname =      'LINE_COLOR'.
    gd_layout-totals_only        = 'X'.
    gd_layout-f2code            = 'DISP'.  "Sets fcode for double click or "click(press f2)
    gd_layout-group_change_edit = 'X'.
    gd_layout-header_text       = 'helllllo'.
    endform.                    " build_layout
    endform.   
    This will optimize the output of the grid display.
    Hope this helps!!!
    Revert if any queries!!!
    regards,
    Naveenan.

  • Create pdf from html, how to adjust page size

    I have a large html file that I need to convert to a pdf. I am able to open the html in acrobat and save as pdf, but I cannot find where to adjust the page size. When I save the html in acrobat, the saved file is still a single page, but when I open the page in reader, then there are page breaks.
    How do I adjust the page size and create a single page document?
    There is also a header and footer line that I don't want. How do I get rid of those?
    LHH

    When you open the window for create PDF from web, select the settings. You can adjust the size and header/footer there.

  • How to set column size in sqlplus.exe ?

    SQL> select * from dba_cons_columns where user='USER1' and table_name='PARENT1';
    OWNER                          CONSTRAINT_NAME
    TABLE_NAME
    COLUMN_NAME
      POSITION
    USER1                          PARENT1_PK
    PARENT1
    COL2
             2
    OWNER                          CONSTRAINT_NAME
    TABLE_NAME
    COLUMN_NAME
      POSITION
    USER1                          PARENT1_PK
    PARENT1
    COL1
             1doesn't it seems bit ugly to see these data.Why length of columns is so long ?please tell how to set the length of columns and other parameters so that data that is displayed should come out in screen in a well managed and beautiful way.
    Like this:
    OWNER     CONSTRAINT_NAME     TABLE_NAME       COLUMN_NAME   POSITION
    USER1        PARENT1_PK              PARENT1             COL2                  2
    USER1        PARENT1_PK              PARENT1             COL1                  1I have written this by hand. How to get display in sqlplus.exe ?

    This command sets column size for all forthcoming commands. Suppose there is select command for different columns, and i want to set different size for different columns. e.g.,select name,address,zone from table1;
    How can i set column size for name to (say) 20 char, address to 30 char and zone to 3 char ?
    You need to do it in some sort of sql script which would set the column formatting before the query would start and then would clear the formatting after the query gets finished. See an example below,
    SQL> column ename format a20 heading emp_name
    SQL> select ename from emp
      2  ;
    emp_name
    SMITH
    ALLEN
    WARD
    JONES
    MARTIN
    BLAKE
    CLARK
    SCOTT
    KING
    TURNER
    ADAMS
    emp_name
    JAMES
    FORD
    MILLER
    14 rows selected.
    SQL> column ename clear
    SQL> select ename from emp;
    ENAME
    SMITH
    ALLEN
    WARD
    JONES
    MARTIN
    BLAKE
    CLARK
    SCOTT
    KING
    TURNER
    ADAMS
    ENAME
    JAMES
    FORD
    MILLER
    14 rows selected.
    SQL>So likehtis you have to format all the columns on individual lines and then clear the fomattings of each once th query isdone.
    HTH
    Aman....

  • How to adjust Column width using SHD0 for FB60

    Hi,
    How can adjust ( i have to reduce the length) Assignment filed in the FB60 transaction using SHD0.
    Please help in this regard.
    Regards,
    Kishore

    HI,
    I think you can adjust the column width and save it as Screen Variant in the SHD0.
    When you create a screen variant for the MIRO, adjust your column width and position than save it the variant. Once you save and activate the variant, it will appear in the Layout dropdown box on MIRO.
    OR
    Please check in spro with ur functional consultant to explore if the field can be made not mandatory..
    menu path:
    AR and AP -> Customer Accounts -> Line Items -> Display line items -> display line items without ALV

  • How to adjust the size of textEditboxes?

    Hi,
    Im able to draw a textEditboxes in dialog using javascript...
    But im not able to adjust the height of textEditboxes...
    i searched for adjusting but i cant get any code..
    is there any possiblities to adjust the size using JS or there any equivalent option...
    If so please help me....
    by
    Subha

    You can do so in ScriptUI, but not in InDesign Dialogs.
    Dave

  • How to adjust the size of the document body in Pages

    Hello all,
    I would like to find out how to change the size of the document body within Pages.
    I encountered this problem when selecting Business Resume from the templates section and after removing the left text box I could not move the main text body to the left, although document margins where set to 0.
    As you can see in the photo the section that says Profile can not be moved to left more than it already is.
    I would appreciate your help
    Thank you

    Several of the Pages 5.5.2 templates are buggy, you have found one of them.
    Create a template from scratch using the Blank tempalte.
    Peter

  • How to adjust ALV size in ITS application? Please Help!

    Hi Experts,
          I have a ABAP program that shows a ALV report using function module - REUSE_ALV_GRID_DISPLAY.
    This ABAP program I have web enabled using ITS (SICF transaction).
    When I see the ALV on the browser, It has only 10 rows but still vertical and horizontal scrollbars are dislayed for the ALV itself. Moreover the horizontal scrollbar is shown near the browser status bar. So Unnecessarily blank space is shown in the ALV after 10 rows.
    I have even tried ~ALVGRIDPAGESIZE = 10. But it has no affect. I am using SAP 6.20.
    So how to control the scrolling and ALV dispaly size?
    Please help!
    Thanks
    Gopal

    hi
    good
    go through these links, i hope these ll help you to solve your problem,
    http://www7.sap.com/sweden/pdf/coursecatalog.pdf#search=%22ADJUST%20THE%20ALV%20SIZE%20IN%20INTERNET%20TRANSACTION%20SERVER%20APPLICATION%20%2C%20SAP%22
    thanks
    mrutyun^

  • How to adjust column width Sheet to Go?

    Does anybody know how you can increase the column width in Sheet to Go?
    Eugene
    My PlayBook App: Checklists

    With the new Playbook 2.0 update and the docs to go app, I found that when in Excel, tap on the column header, (where it has the column identified as A, B, C, etc.), the whole column will be highlighted in blue and you will notice that on one side of the column header is a double line. Simply place finger on the header and slide to desired width. Tap outside of the column to return to the document.

  • How to adjust Brush size?

    I can't find a Brush size that is smaller than any of the provided brush sizes.
    Using the Pencil tool isn't possible as I need the Brush's pressure options (I work with a tablet).
    What can I do?
    Thanks.

    scale your stage to suit your needs.  when you want a small brush, scale up the stage.  when that's not needed, return the stage to 100%.
    i would think you would only use a small brush for minute detail work.  scale up the stage when working on those details.
    normally, your stage will be at 100%.  use the magnifying lens to drag a magnifying rectangle around regions where details are needed.
    your work-flow should not be impedded by the need to do detail work.

  • How to adjust the size of image to suit the size of panel?

    i have got a panel which contains a image.but i don't want to use scroll panel if the image's size is bigger than the panel.
    what can i do to change the size of image to suit the size of the panel every time i want to display it?
    thanks

    Reply 3 of this thread should be able to help you:
    http://forum.java.sun.com/thread.jsp?forum=31&thread=286424

  • How to adjust width of columns?

    I used to be able to find that sweet spot between columns (e.g., song, artiust, album) where my cursor arrow became a width-indication-symbol and I could adjust the width of the columns. Since the new version of Spotify arrived, I can't. How to adjust column width?

    I'm not sure what the management are thinking at Spotify? First we loose that handy feature where you can click the artwork to jump straight back to the tune being played (yes I know it works in some situations like if you're in another play list but it's confusing me still) Then Ctrl F searching within a playlist goes, which is unforgivable IMHO. Now we can't resize column sizes and finally the apps have disappeared! I've been a champion of Spotify since 2009 and still consider it to be the future of music but all I can see is retrograde steps being taken and the product is becoming more frustrating to use. So this is an appeal to the managers at Spotify to read these threads and take notice! There are other streaming systems we can switch to! Btw I also used to work as a Software User Interface designer so if you need some help give me a shout :)

  • When I scan and save a document as a pdf. It is saved as a huge document. How do I adjust the size of a saved pdf?

    I recently purchased a new computer. Now when I scan a document and save it as a pdf document; the size of the file is nearly 10 times the usual size. The size of 2 pages is so large that I can not send as an attachment. How do adjust the size of the pdf document?

    Sending e-documents as email attachments is anyway never a good idea; use a file sharing service (Acrobat.com, Dropbox, Google Drive, Microsoft OneDrive, ..) to upload the doc, then send the shared download link via email.
    As for the scanned PDF size, see the earlier posts.

Maybe you are looking for