How to decrease the column size in a tabular report

Hi ,
How can i reduce the column size in a tabular report in oracle apex.
my report is having 90 coulmns and i want that should come in once sceen so i want to decrease the size of columns as well as the font size of values + column_name..
any suggestion ?
Thanks
Nitin

Hello,
Oracle APEX OTN Forum is here : Oracle Application Express (APEX)
Regards

Similar Messages

  • How to increase the column size of Alv tbale

    Hi All,
    I created an Alv table to display the content of my database table. In one of the column the entire data from my database are not displayed the last few characters are missing. The data type for that column in the database is char. Can any one help me how to increase the column size in my Alv table or any suggestions to resolve this issue.

    Hi Vadiv,
    Try with this..
    DATA: LR_IF_CONTROLLER TYPE REF TO IWCI_SALV_WD_TABLE,
    LR_CMP_USAGE TYPE REF TO IF_WD_COMPONENT_USAGE,
    LR_CMDL TYPE REF TO CL_SALV_WD_CONFIG_TABLE,
    LR_TABLE_SETTING TYPE REF TO IF_SALV_WD_TABLE_SETTINGS.
    LR_CMP_USAGE = WD_THIS->WD_CPUSE_ALV( ).
    IF LR_CMP_USAGE->HAS_ACTIVE_COMPONENT( ) IS INITIAL.
    LR_CMP_USAGE->CREATE_COMPONENT( ).
    ENDIF.
    " get reference to the ALV model
    LR_IF_CONTROLLER = WD_THIS->WD_CPIFC_ALV( ).
    LR_CMDL = LR_IF_CONTROLLER->GET_MODEL( ).
    LR_TABLE_SETTING ?= LR_CMDL.
    " Set column width
    DATA LR_COL TYPE REF TO CL_SALV_WD_COLUMN.
    LR_COL = LR_CMDL->IF_SALV_WD_COLUMN_SETTINGS~GET_COLUMN( 'PERNR' ).
    LR_COL->SET_WIDTH( '70' ) .
    LR_COL = LR_CMDL->IF_SALV_WD_COLUMN_SETTINGS~GET_COLUMN( 'ENAME' ).
    LR_COL->SET_WIDTH( '100' ) .
    LR_TABLE_SETTING->SET_FIXED_TABLE_LAYOUT( ABAP_TRUE ).
    You can refer to webdynpro component SALV_WD_TEST_TABLE_PROPS. Go to the view TABLE and look inside the method SET_COLUMN_SETTINGS. I hope this will help you.
    Cheers,
    Kris.

  • Decreasing the font size in a Classical report

    Hi all,
    i have to decrease the font size in the output of a classical report while printing. I have tried the following snippet:
    NEW-PAGE PRINT ON LINE-SIZE zeichen_pro_zeile
                        LINE-COUNT zeilen_pro_seite
                        NEW LIST IDENTIFICATION rl04i-prnew
                        KEEP IN SPOOL rl04i-prrel
                        IMMEDIATELY rl04i-primm
                        LIST NAME rl04i-plist
                        DESTINATION drucker
                        NO DIALOG.
    *PRINT-CONTROL  LPI 6.
       PRINT-CONTROL  LPI 10.
    but this is not working fine.
    Can anybody suggest something about it?
    Regards,
    Divya

    Hi,
    It is not possible to decrease the font-size in a classical report.
    We don't have any option to format the output in the reports..
    As per my knowledge, it is not possible to decrease or increase the font size in a classical report..
    one thing u can do is to do some setings at the printer side...
    Cheers,
    Simha.

  • How to decrease the column length in working time (CATS) table

    Hi all,
    Can you please tell me how we can decrease the column length in CATS table in the portal. Is it something we can do in webdynpro or in the back end.
    Thanks in advance.
    RK Reddy

    I was looking for something similar and ran across OSS Note 989453. I would recommend checking out this note to see if it helps. Apparently, there is a JAVA program error that makes the columns wider than they need to be.
    We have not yet tried this so if you happen to use it, let me know how it works for you.
    Mark Musser
    County of Sacramento

  • How to increase the column size of interactive report

    Hi , I am using apex 4.2 and theme 25 ..
    i did not find any option to increase the column size of interactive report. where as in classic report i can do so ,,
    Please guide me to achieve that.
    Thank You,
    Nihar Narla

    Nihar Narla wrote:
    Hi , I am using apex 4.2 and theme 25 ..
    i did not find any option to increase the column size of interactive report. where as in classic report i can do soThis can be done using CSS. Create a rule like this in the page Inline CSS property:
    .apexir_WORKSHEET_DATA td[headers="COLUMN_ALIAS"] {
      width: 10em;
    }where COLUMN_ALIAS is the alias of the column in the report query and the width measure is whatever you require.

  • How to decrease the font size of standard text

    Hi Friends,
    I have been using a standard text(created in SO10) in my smartform. The window size is less than the space reqd for the standard text. So I thought of decreasing the font size. Could any one help me to find the solution to decrease the font size. Please let me know if there is any other solution for this..
    I would reward highly for the appropriate solutions....
    Thanks and regards,
    Ramineni.

    hi,
    i had the same problem,i tried to reduce font size from so10 but it was too small,so resized the window itself.

  • How to adjust the column size

    Hi All,
    I have a table UI element and due to length of header my column is expanded in width.  Kindly assist how I can adjust the column length so the look and feel is good.  I am using NWDS 7.0 sp 05.
    Thank you
    Regards,
    Jaspreet Kaur Grewal

    Hi Jaspreet ,
    Try to use less letter in header for table.
    Refer to http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/601ca4c3-6e64-2a10-3380-949f9cdddd46?quicklink=index&overridelayout=true
    Hope it migh helps
    Regards
    Arun

  • How to set the column size in OATable

    Hi All,
    I'm using Oracle EBS 11.5.10
    I have a OATable with two columns (messagestyledText), say Col01 and Col02.
    Is there a way that I can set the width of Col01 and Col02 ? As in 30% of OATable for Col01 and 70% for col02?
    Thanks for any suggestion/help,
    Elmer

    Hi All,
    Got the answer. How I wish this can be define declaratively.
    Code below for the soln.
    OATableBean table01 = (OATableBean)webBean.findChildRecursive("table01RN");
    table01.queryData(pageContext, true);
    table01.prepareForRendering(pageContext);
    DataObjectList aColFormat01 = table01.getColumnFormats() ;
    oracle.cabo.ui.data.DictionaryData ColFormat01 =(oracle.cabo.ui.data.DictionaryData)aColFormat01.getItem(pageContext.findChildIndex(table01, "ColLabel"));
    //Column Width
    ColFormat01.put(WIDTH_KEY, "30%");
    //Column Format - Right-aligned varchar
    ColFormat01.put(COLUMN_DATA_FORMAT_KEY,NUMBER_FORMAT);cheers,
    Elmer
    Edited by: Elmer on Mar 8, 2010 2:46 AM

  • Can any body tell me  how to decrease the frame size of the calendar(in calendar.js)

     

    Hi Kamala,
    suppose..two fields are there in screen Material and Material desctiption.
    After entering Material if u press enter material description aslo dispaly in the corresponding field.
    for this.
    PBO.
    >>>>>>>>>
    PAI.
    MODULE  get_materail_description.
    Mobule Get_materail_descripton.
    If sy-ucom is SPACE.
    Select Maktx into (screen field) from MAKT.
    ENDIF.
    END MODULE.
    Regards,
    Sunil.

  • How to extract the column width in ALv report if its executed in background

    I am executing an ALV report in background , in front end i am getting data properly, in back end for some columns some of the digits are missing.For example if PO no is of 10 digits it will display only 8 becos column size is like that , how to extract coulmns in back ground.
    I have executed in background and checked the spool and  for some of the columns width is not sufficient to display comeplete data so please suggest how to extract the columns sizes if executed inj background for an ALV

    Hi Deepthi,
    you can try with the above mentioned suggestions ,if its worked its fine ,
    If not use Docking container instead of custom container, For ALV in back ground jobs, its suggest to use docking container instead of custom container , below you can find the declaration for docking container and code to use docking and custom container in your program for fore and back ground.
    or you can use docking container alone for both operations.
    Data : G_DOCK1 TYPE REF TO CL_GUI_DOCKING_CONTAINER,
    IF CCON IS INITIAL. (ccon is container name )
    *Check whether the program is run in batch or foreground
        IF CL_GUI_ALV_GRID=>OFFLINE( ) IS INITIAL.
    *Run in foreground
          CREATE OBJECT CCON
            EXPORTING
              CONTAINER_NAME = 'CON1'.
        CREATE OBJECT GRID1
            EXPORTING
              I_PARENT = parent_1.
    ELSE.
    *Run in background
          CREATE OBJECT GRID1
            EXPORTING
              I_PARENT = G_DOCK1.
        ENDIF.
      ENDIF.
    B&R,
    Saravana.S

  • How to increase the FONT Size in a report while printing in SAP

    Hi ,
    Can anybody let me how how to increase the Font size  while printing a report in SAP .
    Thanks
    Dhaval..

    hi Raje,
    WELCOME TO SDN
    use <b>PRINT-CONTROL</b> option
    PRINT-CONTROL FUNCTION 'SF000'.
    WRITE: / 'This is CPI 20'.
    SKIP.
    PRINT-CONTROL FUNCTION 'SF020'.
    WRITE: / 'This is CPI 6'.
    How to change font sizi in a classical report?
    REgards,
    Santosh
    Message was edited by: Santosh Kumar P

  • How to decrease the width of left column in the "2 column layout"?

    Hi all,
    I create two webdynpro based iViews in the EP, then I create a page use the "2 column layout(Narrow:Wide)".I put one iview in the left column and another iview in the right column. When I preview my page, I found the left column still too wide. So how to decrease the width of my page's left column?
    Thanks and Best regards
    Deyang

    Hi Deyang,
    You have to create your own layout:
    - Navigate to System Administration->Support
    - Choose Portal Runtime -> Browse Deployment
    - Navigate under pcd or under temp, and download the layouts par (com.sap.portal.layouts.default.par.bak if I recall correctly)
    - Import that par as a project to Developer Studio
    - Make your changes (create a new jsp acording to the existing examples, and update the portalapp.xml accordingly)
    - Export to par (in a different name!) and deploy
    - In the portal content: new from par -> Layout (don't forget to mark it as a template).
    - Your new layout template will now be available when you create new pages.
    good luck!

  • How do I create a digital frame w/o decreasing the photo size?

    I want to frame my photos & upload them to my website. When I use the frame tool, it decreases the photo size & has a large background, which I don't want.

    Perhaps the better title for this would've been "How do I create a digital frame w/o INCREASING CANVAS SIZE?"
    I have this same problem on Elements 10 and I can't find an answer. It's not because hawaiiski is using Themes. When you apply a frame to the photo through Content > Frames, it decreases the image size on screen and increases canvas size around the framed photo. It's the checkered transparent canvas. But I just want the photo and the frame as a flattened rectangular image, as a jpg, to post in an online album. Just a simple 10 point black frame. I've searched a lot but can't find an easy and/or accurate way to do this. Is there a way to auto-crop the canvas size to the edges of the framed photo? I do the Marquee > Image > Crop that snaps to the edges, but it always leaves a little canvas on one or more sides and I have to crop again. Some people say to apply frames by increasing canvas size, but the design options are limited to solid colors, and it takes longer to do.
    Why does Elements have to add the canvas around a framed photo and why isn't there an easier way to crop to the edges? I do dozens of photos at a time and can't be cropping every photos twice just for frames.

  • How to use the Columns Hidden | space in the bottom of af:panelCollection?

    Hi,experts,
    In jdev 11.1.2.3,
    I can see a row of Columns Hidden | Columns Frozen in the bottom of component af:panelCollection - pc1 which have an af:table - t1 component inside in designer view,
    and can see there is a blank row space only with "|" inside when the page is running.
    Now I want to use this blank row space such as to display row numbers for the table, so I set the property for the panelColletion as following source code:
    ==========================
    <af:panelCollection id="pc1" inlineStyle="width:1250px; height:500px;">
    <f:facet name="menus"/>
    <f:facet name="toolbar"/>
    <f:facet name="statusbar">
    <af:group id="g4"/>
    </f:facet>
    <af:table value="#{bindings.TView1.collectionModel}" var="row"
    rows="#{bindings.TView1.rangeSize}"
    emptyText="#{bindings.TView1.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.TView1.rangeSize}" rowBandingInterval="1"
    filterModel="#{bindings.ImplicitViewCriteriaQuery.queryDescriptor}"
    queryListener="#{bindings.ImplicitViewCriteriaQuery.processQuery}" filterVisible="false"
    varStatus="vs"
    selectedRowKeys="#{bindings.TView1.collectionModel.selectedRow}"
    selectionListener="#{bindings.TView1.collectionModel.makeCurrent}"
    rowSelection="single" id="t1" inlineStyle="font-size:xx-large; font-weight:bolder;">
    <af:column sortProperty="#{bindings.TView1.hints.GoodsStatus3.name}" filterable="true"
    sortable="true"
    headerText="#{bindings.TView1.hints.GoodsStatus3.label}"
    id="c42">
    <af:outputText value="#{row.GoodsStatus3}" id="ot33"/>
    </af:column>
    <f:facet name="footer">
    <af:group id="g3">
    *<af:outputText value="RowsNumber:" id="ot44"/>*
    *<af:outputText value="#{bindings.TView1Iterator.estimatedRowCount}"*
    id="ot43" partialTriggers="::pc1:t1"/>
    </af:group>
    </f:facet><f:facet name="detailStamp"/>
    </af:table>
    </af:panelCollection>
    =====================
    but when run the page there is no display for the row number, instead on the bottom of the table, there is only a blank row with "|" inside.
    How to use the Columns Hidden | Columns Frozen space in the bottom of component af:panelCollection ?
    Thanks!

    Hi, Arun
    It works.
    As in my use case, can draw an af:toolbar component into statusbar of Panel Collection facets in Structure view.
    There is still a small issue:
    cannot see the Columns Hidden|Columns Frozen component in the Structure view,
    and if drop more than one af:toolbar into statusbar, the sencond one will fall/wrap into second row, even though there is enough space on the first row (to occupy a second row in statusbar will be a waste of space), and cannot see how to adjust.
    Thank you very much!
    bao

  • How to change the font size of text and case in smartforms

    hi,
       could any one explain how to change the font size of text in smartforms. ex. previously i had taken P4 left aligned and C6 but now i want to decrease the font without making it bold. pl......... guide me
       secondly the value which are coming from tables are upper case but i need lower case. pl. guide
    thanking u

    check out the smart styles...create a font of ur size n use.
    Define the paragraphs & character formats using SMARTSTYLES & use them in your smartform.
    You have to give the smartstyle name in the Form attributes-->Output options for the formats to be used in your smartform.
    You can define font size in Smartform Style.
    Smartform Styles > Charcterformat> Font --> size.
    to load the font to SAP server chk this
    Re: Adding a new font for SAPscript/SMARTFORM output
    Regards
    Vasu

Maybe you are looking for

  • My ipad mini does not find my Nokia bh-111 Bluetooth headset, yet all other devices do and pair without issue

    I use my bh-111 with my windows phone, my laptop and my wife's android jellybean phone without issue but the ipad mini will not find it, any ideas?

  • Profit center substitution in Goods issue document

    Hello Gurus I am determining profit center through the profit center substitution in sales order through 0KEM transaction and activated it in 0KEL as activation 3. I have taken the fields as sales organization  and sales office with transaction code

  • Is it possible to  use an ISR developed in ITS?

    I have developed an ISR using the ITS, because we are having various difficulties with the Adobe forms. Testing the service from SE80 calls it up fine, and also from QISRSCENARIO. Now I am trying to integrate it into the portal to check it with actua

  • Possible to replace this green screen without masking?

    So here's what I'm working with: What I ultimately need to do is replace that green screen with some video footage. But there are a few problems that make this not all that straight forward... It starts off with nothing on top of it, but the photos a

  • Using scan from string

    Hi I am reading a string from an instrument in the format hr:min:sec, 0.000, 0.000, 0.000,0.000 I need to separate each part and add it to an excel file. I have triend scan from string and string subset. I am unable to use scan from string as the fir