Cannot display all the columns

Hi
I am having this weird problem , i gave some selected columns in my select query and data displayed with the given conditions perfectly then i added some more columns , around 30 coloumns to my select query(initially i just tested by selecting 6-10 columns names) , and my report does not display data for all the columns , its just displaying the data for columns i previously selected , do i need to do something to get all the columns, is there a limit in Apex that report should display only fixed number of columns ?or do i need to refresh any where in order to adapt the changes i have made in my select query ?
i have logout and logged in , but it did'nt work..
Could any body please let me know what could be the reason for this?
Thank you

Just found out that the other columns were selected as Not Display in report in actions ->select columns...

Similar Messages

  • How can I display all the columns on the screen without scrolling from side to side?

    My clinic software has many columns. How can I display all the columns without having to scroll from left to right all the time?

    If the software you are using doesn't offer the ability to increase or decrease document size, as many do, then the only way is to increase your screen resolution. If that's not possible, maybe you can decrease your font size?  If you can't do any of these, I think you're out of luck!

  • Cannot display all the tables of the schema!!!

    Hi:
    I use the oracle sql developer on the windows xp, I found that the tables tab cannot display all the tables of the schema owner, I use the sql "select count(*) from user_tables" I found the result is more than the tab can be display, and I also press the "show more" already.... does anyone can help me ???

    Similarly, I have 852 tables owned by the connected user (selected count from user_tables and checked the user tables report which has this many records returned), but when I double-click on the "Show More" and select Show All, I only get approximately 375 tables listed.
    It doesn't help that the sorting is different - ie ASF_ comes before ASFB in the connection pane but the other way around in the report.
    However, it looks as though the problem is that tables that are not analysed (based on the report data in DATE_LAST_ANALYZED) are not being displayed under the Table node.

  • Infoview not displaying all the columns

    Hi All,
    I have abt 25 columns in my crystal report. Report looks fine in CR designer but when i view the same report in infoview , it doesnt display all the columns. Although i can scroll upto the right but  about 10 columns are missing.
    Kindly suggest.
    Thanks

    Hi,
    Can you please brief me what the approach you took to solve this issue, because even me facing the same problem and I have 35 columns in my report, I build the report on 11x17 page size.
    In that most of them are string type holding the 10 different levels of manager names, employee names and their contact information and few columns are numeric fields
    Since I adjusted all the fields to fit into the page, for all the lengthy name columns like "VenkateshwarRao" its showing "Venkat" and rest of the letters are truncated.
    So basically the user needs the report to download in Excel format, so currently I m able to export and manually adjusting them by selecting all fields in excel.
    But I am not able to show up all fields in info-view, only the first 15 columns are displayed and most of the textual columns are truncated.
    Thanks in advacne,
    Venkat

  • Report Column Attributes Does Not Display All the Column Names

    Good Morning,
    I have an interactive query Select * from table_name. I have to select * since my query returns well over 32k. I have 162 columns in the query. On the screen, all the columns are displayed; however, on the report tab, only about half of the columns are displayed. The rest are cut off. I need to be able to go into these field's attributes. Is this an APEX bug, or am I just missing something.
    Regards,
    Kelly

    Hello Tony,
    I can't break them out because APEX is limited to one interactive report per page. There is need to be able to do computations on the data, which interactive reports allows. The data is all statistical.
    Regards,
    Kelly

  • FF cannot display all the web pages (it laggs a lot on FB, youtube, gmail). I tried to reset many times (new pc bought with W8, I synchonizeded FF). Help please

    Hello everybody,
    FF works properly till it crashs, then I have to reset everything and it crashs again. My webpages cannot be displayed properly (fb, youtube, gmail) while it works on chrome and IE.
    Please, help me !
    Thank you.

    You can check for problems with current Flash plugin versions and try these:
    *disable a possible RealPlayer Browser Record Plugin extension for Firefox and update the RealPlayer if installed
    *disable protected mode in the Flash plugin (Flash 11.3+ on Windows Vista and later)
    *disable hardware acceleration in the Flash plugin
    *http://kb.mozillazine.org/Flash#Troubleshooting

  • How to display all the columns in the printpreview

    hi experts,
    I have developed an alv report using grid display.
    there are nearly 10 fields in the output with varrious of length.
    They get displayed correctly in grid format.
    But, when on the output screen, I click on List menu and goto "Print Preview",
    the output gets displayed in a list format where these only 9 fields get displayed one filed in a truncated format.
    I have tried all options such as optimize colwidth and giving outputlen for the fieldcatalog.
    But, still the problem persists, only for printing and print preview.
    Please suggest a solution.
    Mohana

    Hi,
    You can develop your own print preview by creatind the pf-status and call it.
    I am sending you the sample code.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
       I_CALLBACK_PROGRAM                = sy-repid
       I_CALLBACK_PF_STATUS_SET          = 'SET_PF_STATUS'
       I_CALLBACK_USER_COMMAND           = 'PRINTPREVIEW'
       IS_LAYOUT                         = ln_layoutinfo
       IT_FIELDCAT                       = i_fieldcat1
      TABLES
        t_outtab                          = I_VBAK.
    FORM set_pf_status USING rt_extab TYPE slis_t_extab.
      SET PF-STATUS 'ZPRINT'.
    ENDFORM.
    FORM printpreiew using r_ucom type sy-ucomm r_selfield type slis_selfield.
    case R_ucom.
        WHEN 'PRINT'.
        LEAVE TO LIST-PROCESSING.
        format intensified color = i.
        WRITE: /50(64) 'SALES INFORMATION'.
        WRITE: / 'CUSTOMER RANGE FROM', CUST-LOW, 'TO    ', 40(74) CUST-HIGH.
        ULINE (114).
        write: / sy-vline, 'customer', 11 sy-vline, 'doc no', 21 sy-vline, 'date', 35 sy-vline, 'time' , 45 sy-vline, 'created by', 60 sy-vline,
                 'item', 70 sy-vline, 'mat num', 80 sy-vline, 'MAT GROUP', 90 sy-vline, 'amount', 114 sy-vline.
        ULINE (114).
        i = 3.
        LOOP AT I_VBAK INTO W_VBAK.
          sum = sum + w_vbak-netwr.
          on change of w_vbak-kunnr.
            if sy-tabix <> 1.
              FORMAT INTENSIFIED COLOR  = 3.
              uline (114).
              write: / SY-VLINE, 90 'subtotal', sub_total, 114 SY-VLINE.
              uline (114).
              sub_total = 0.
            endif.
          endon.
          sub_total = sub_total + w_vbak-netwr.
          IF FLAG = 'X'.
          FORMAT INTENSIFIED COLOR  = 0.
          FLAG = ' '.
          ELSEIF FLAG  = ' '.
          FORMAT INTENSIFIED COLOR  = 2.
          FLAG  = 'X'.
          ENDIF.
          WRITE: / sy-vline, W_VBAK-kunnr, 11 SY-VLINE, W_VBAK-vbeln, 21 SY-VLINE, W_VBAK-erdat, 35 SY-VLINE, W_VBAK-erzet, 45 SY-VLINE,
                   W_VBAK-ernam, 60 SY-VLINE, W_VBAK-POSNR, 70 SY-VLINE, W_VBAK-MATNR, 80 SY-VLINE, W_VBAK-MATKL, 90 SY-VLINE, W_VBAK-netwr, 114 sy-vline.
          at last.
            FORMAT INTENSIFIED COLOR  = 3.
            uline (114).
            write: / SY-VLINE, 90 'subtotal', sub_total, 114 SY-VLINE.
            uline (114).
            write: / SY-VLINE, 93 'total', sum, 114 SY-VLINE.
          endat.
        ENDLOOP.
        ULINE (114).
    endcase.
    I think it is useful for you.
    Reward points if useful.
    Thanks &  regards
    Deepika.

  • How to get all the columns displayed in pdf.

    If the ALV Display contains 25 columns.When i tried to give the print in PDF format.
    in the PDF it is displaying only 10 columns.Can you let me know how to display all the columns (i.e 25) in the pdf.

    Hi,
    Check the OSS Note 186603 which deals with how to handle Spool lists with width > 255 characters.
    Regards,
    Satish

  • How to see all the columns in the spool output of an ABAP program

    I have an ABAP program which displays all the columns when I run it manually. (by scrolling to the right using right arrows). When I run that report in the scheduler and when I see the output in the spool in transaction SP01, it does allow me to go to the right to see all columns.
    thanks
    Ram

    Check OSS Note 409339 - Spool requests with ABAP lists with more than 255 columns.
    Summary
    Symptom
    As of Release 4.6x, the ABAP list processor can create spool requests for ABAP lists with a width of more
    than 255 columns. However, when you print using the SAP spool, only the start of the list lines is printed,
    the rest of the line is truncated at the end of the page.
    Other terms
    ABAP, lists, print parameter, LINE-SIZE
    Reason and Prerequisites
    Creating "wide" lists on the screen (in other words, lists in the SAPGUI with more than 255 columns) was
    already introduced by the ABAP list processor for Release 4.0B. However, before Release 4.6 these lists
    cannot be printed out in the width used on screen.
    In older releases (for example, 4.0B, 4.5B), you were not able to generate spool requests for lists with a
    width of more than 255 columns:
    The system issues error message PT 026: "No. of columns > 255, no standard print-out possible".
    Therefore, we did not have the problem described here of non-existing device-type support in 4.0/4.5 for
    printing out "wide" lists.
    Up to and including 4.6C there are no SAP device types that support print formats for lists with a width of
    more than 255 characters). Since Release 3.0A, all SAP device types support a maximum list width of 255
    characters with device format X_65_255.
    Solution
    When you create the spool request and a print dialog box appears, enter a column width of maximum 255
    in the "Number of columns" field.
    As of Release 4.6D, you have the option of using device type SWIN with the new format X_65_1024/4 when
    printing with Windows (see Note 213382).

  • When I upload a cvs file not all the column display in the Data / Table Mapping screen

    1. I have created application using Apex Data Loading wizard. There when I am trying to load data from .csv file, but not all the columns display in the "Data / Table Mapping" screen. But if I go through AQL --> Utility --> Data Workshop, there all column display in "Data / Table Mapping" page. I want to get same thing in application I created. How will get all columns display in the screen?
    2. Is there any way to select target table dynamically during runtime. So that in appication we can select different target tables with different source file to load data.

    Your user info says iPad. This is the OS X Numbers forum. Assuming you are using OS X… Be sure the file is named with a .csv suffix.
    (I don't have an iPad, so I don't know the iOS answer.)

  • PSA Edit Dialog - Not showing all the columns

    Hi All,
    I need to edit the transaction data for 2LIS_13_VDITM in PSA. when I go to display the PSA data it shows few selected fields in the initial display not all coming in the data source.
    In Order to get that field in Data Display,  I change the display variant and bring the field in the data display .
    Now, When I try to edit that record the the Edit Dialog Pop Up  does not show me all the columns which are there in the Data Display. I checked in the display Selection Tab, the field list over there also does not contain this field.
    However, I am able to edit data for all other Data Sources.
    Has someone ever faced this kind of strange thing.  We were on support pack 18 and migrated to BW 3.1 support pack 20. I was able to edit data in PSA for this data source earlier. Can it be a support Pack Problem ?
    Requesting for your valuable suggestions on this!!!
    Regards
    Deepak

    Hi All,
    The below problem occured due to Support Pack upgrade.
    If you are upgrading Basis Support pack from 47 to 48, you might face this kind of problem.
    OSS Note Number : 821558 proved to be quite handy.
    Regards
    Deepak

  • Apps report cannot display 12 month column

    I have done report using Matrix with Groups. When i ran it in oracle reports it displays 12 month period. After i put in apps and run it the report will show up to 7th column(7th month). I am using Landscape 13 and 9 in reports. In the concurrent program i chose Landwide.
    Pls help to suggest what i did wrong. How can i display all the 12 columns.
    Edited by: user10743484 on Aug 31, 2009 9:57 PM

    Thanks for the replies. I reviewed them shortly after they were submitted but I'm also working on other projects at the same time (hence the delayed reply).
    Building a time table and doing a cross join to my original resultset gave me the desired resultset of the months assigned between dates. What I can't figure out now is how to filter months I don't want. 
    Doing a cross  join between my original resultset that had two dates:
    08/27/2010
    10/24/2011
    and a calendar table that has 24 rows (each month for a two year period)
    my new resultset looks like this:
    I need to filter the rows in yellow as the months assigned for stage 3 that started on 8/27/2010 should stop when the patient was assigned to stage 4 on 10/24/2011.
    You'll notice that Jan - Sept 2011 isn't listed for Stage 4 assigned on 10/24/2011 as I included a filter in the WHERE clause that states
    the Months Assigned value must be greater than or equal to the date assigned value.
    Any advice would be appreciated.

  • Query to display all the documents

    Hi
    How to display all the document numbers (quotations, orders, invoices etc), posting dates in three columns i.e. Cust Code, Doc No , Posting Date?
    Since all the tables storing this information having the same column names do you think it is possbile? then how to write a query?
    thanks
    SV Reddy

    SV,
    what Raja said is correct. The steps are to write the query the fields you want to display in the query, so it will be as follows:
    select docnum, cardcode, doctotal, objtype from ORDR
    then use UNION ALL, the union all is used to join the other tables e.g. purchase, good receipt or good issue to the above sales order query but must have same fields.
    It will be as this follows:
    select docnum, cardcode, doctotal, objtype from ORDR
    union all
    select docnum, cardcode, doctotal, objtype from OPOR
    union all
    select docnum, cardcode, doctotal, objtype from OIGN
    union all
    select docnum, cardcode, doctotal, objtype from OIGE
    since the result objtype here is a value, I use "case when" to display objtype in the words and user can understand the document name.
    It could be mixed in all the 4th queries and will not give error result.
    Rgds,

  • How to show regions markers in Google maps based on longitude and latitude. on-click of region marker i want to display all the country locations based on the region from share point list?

    Hello every one,
    In My requirement i am having  some regions with longitude and latitude in one SharePoint list. in another SharePoint list i am having the country values with longitude and latitude and region as look up field.  I want to display all the region
    markers in Google maps. on click of any region marker i want to zoom in the map to region level and i need to display all the country markers in Google maps under the region. can any body help me on this requirement.
    Thanks in advance,
    Venu.

    Not sure about Google Maps but this is fairly easy to do with Bing Maps. I've used Bing Maps with SharePoint lists fairly regularly. Here are some blog posts:
    http://blogs.bing.com/maps/2013/03/26/connecting-a-sharepoint-list-to-bing-maps/
    http://blogs.bing.com/maps/2013/03/07/geocoding-a-sharepoint-list-item/
    Once you have your sharepoint list connected to Bing Maps you can easily filter the list data based on the selected country if you have a country column in your list. If you want to take things a bit further an create a much cooler user experience you can
    also use the Bing Maps GeoData API to get the country boundaries and show them on the map as polygons. These could be color coded based on some metric, or set up as the clickable area on the map rather than a pushpin. Here is a blog post on how to use the
    GeoData API with the JavaScript Bing Maps control:
    http://blogs.bing.com/maps/2013/06/25/retrieving-boundaries-from-the-bing-spatial-data-services-preview/
    http://rbrundritt.wordpress.com

  • How do I display all the elements of an array?

    Hello,
    I am trying to learn about manipulating arrays.  The example finder includes this one," build array_forum.vi", which shows the two modes, concatenate and append, which I can understand, HOWEVER, I cannot figure out how they built this vi.  For example, I can find the Build Array function, but, I cannot understand how they created the "array of numeric data 1"  "array of numeric data 2"...etc, and I cannot find the functions on the palettes that result in the display "build array concatenate inputs".  Where are these blue functions????
    Where are these functions found on the palette, and how does one construct them like this? 
    The other vi shown here, "for loop array_forum.vi" is my attempt to duplicate it, but, it does not show all the elements of the array; instead it displays only ONE element, the last element of the array.  How do I display all the elements of the array I am trying to create using the FOR LOOP?
    Thanks,
    dave
    Solved!
    Go to Solution.
    Attachments:
    for loop array_forum.vi ‏7 KB
    Build Array_forum.vi ‏12 KB

    I think I posted this in the wrong place.  I reposted this to the Labview forum.
    Dave

Maybe you are looking for

  • WO Connected to WBS Element

    Good Day Friends, My business unit has requested to have the WBS elements printed on the shop papers for coresponding WO; however, I am finding it difficult to find the link between the ILOA table and the WO itself. Does a direct link exist, between

  • Regarding BEX

    hello Experts, Here Is my Scenario :   I  have a query designed in bex which shows the order item wise delivery and invoice. now since the item is delivered in two diliveries , it shows it quantity twise and in result row also it conted twise in tota

  • Why do I have a white circle with a line through it over Pages on my dock?

    This happened after I reinstalled Snow Leopard on my MacBook. How do I get rid of it?

  • Iphoto and elements 12

    I chose the option in iphoto preferences to have edit in elements 12. Elements 12 opens right up from iphoto but says it can't recognize the file. I am using JPEG files. I have a hard cropping in elements 12 and it is so easy in iphoto. So I was goin

  • How to apply LLQ QoS to traffic generate by router?

    There is a voice gateway at the remote site, the voice card connect to the local pstn, for qos, the router must prioritize the voice traffic which is generated locally. So is there any idea?