Needs of report to show all columns

Hello, I have two interactive reports on two different pages, and I'm unable to show all columns. It will automatically appear all the columns. I know that I can show them all with Actions / Select the columns / > >, but I can't expect all of my users to do each time that they reopen the browser. They want that search the IRs without pressing Actions each time.

In my 1st report, I just a column of money, but it will not appear automatically. How can I get the GAL_PUMPED to automatically display column without using the Actions menu each time?

SELECT UFT.SITE_NUM, UFT.TANK, UFT.FUEL_TYPE, sum(UFT.GALLONS) GAL_PUMPED
FROM  futrak.FUEL_TRANSACTIONS  UFT
WHERE to_char(UFT.TRAN_DATE,'MON-YYYY') < to_char(SYSDATE,'MON-YYYY')
GROUP BY UFT.SITE_NUM, UFT.TANK, UFT.FUEL_TYPE
 

In my 2nd report, only columns of fth automatically, will not display the columns of ftd. How all the columns in the two tables to automatically display without the Actions menu each time? Also, the unit is supposed to be the last column, but this problem makes the 3rd column after using select columns. I'm stuck with APEX 4.0 and may not use plugins, but I want to hack everything that will help solve this problem. I'd appreciate any help or advice, thank you.

SELECT fth.SITE_NUM, fth.TANK, sum(ftd.GALLONS), ftd.FLEET_ID, ftd.EXPENSE_TO_PROJECT, ftd.EXPENSE_TO_TASK, fth.UNIT_NUM
FROM FUEL_USAGE_HEADER fth,
  FUEL_USAGE_DETAIL ftd
WHERE 
  fth.FUEL_USAGE_ID = ftd.FUEL_USAGE_ID
AND fth.PROCESSED_DATE is null 
AND to_char(fth.TRANSACTION_DATE,'MON-YYYY') < to_char(SYSDATE,'MON-YYYY')
GROUP BY fth.SITE_NUM, fth.TANK ,ftd.FLEET_ID, ftd.EXPENSE_TO_PROJECT, ftd.EXPENSE_TO_TASK, fth.UNIT_NUM
order by 1
 

Display all Columns.png

Login to your application as a developer when running. Modify the report in the way that your users need. Save the report, select "default report parameters.

Tags: Database

Similar Questions

  • Interactive report - strange not all columns are showing?

    Hello

    Something weird is happening with my interactive report, not all columns are displayed, and I have no idea why this is happening?

    In my column attributes, they are set to display as text, but only some of the columns are presented

    Another weird issue is the search bar is also not appear, and it is set to show?

    Any ideas on how to solve this problem, in particular the first issue with columns

    Thank you very much

    If you changed your IR source and added columns, then you must add columns in the menu actions IR indeed. Of course, the columns have to 'See' active in their attributes.
    If you don't see the search bar, check the IR options. Ditto for the menu actions. If both are true, make sure there is no dynamic action masking the region holding the IR tools.

  • Show all columns while bringing together in a single column.

    Hi all

    I have a table called demo.

    TaskName start_date end_date duration_in_mins

    06/04/2015 Task1 02:10:24 06/04/2015 02:13:24 3

    06/04/2015 Task1 02:09:24 06/04/2015 02:13:24 4

    06/04/2015 Task1 02:11:24 06/04/2015 02:13:24 2

    06/04/2015 Task2 02:05:24 06/04/2015 02:13:24 8

    06/04/2015 Task2 02:06:24 06/04/2015 02:13:24 7

    I need to display all the columns in the demo. But I need to display only records that have maximum (duration_in_mins) TaskName group.

    TaskName start_date end_date duration_in_mins

    06/04/2015 Task1 02:09:24 06/04/2015 02:13:24 4

    06/04/2015 Task2 02:05:24 06/04/2015 02:13:24 8


    Please give me a solution.


    Thank you

    Arun.

    Try below,

    Select a.taskname, a.start_date, a.end_date, a.duration_in_mins

    demo one

    inner join (select taskname, max (duration_in_mins) as max_dur of the demo group by TaskName) b

    on a.taskname = b.taskname and a.duration_in_mins = B.max_dur

  • XML report - conditionally showing a column between other columns

    I have a XML report with columns

    A, B, C, D


    Now, I need to add a new column E between B and C when some condition is met.


    A, B, E, C, D


    for column E, I kept <? If: column = 'X '? > columnname <? endif? >.

    When the condition is satisfied, it displays the columns and values also, but when not a column empty appears worthless, I don't want this empty column when the condition is not satisfied.


    We must just see them A, B, D instead of A, B, C, C, D

    Ask you to help me with my requirement.

    It will be like

    Header:

                         OM expiry Date        

    Data record:

          

  • show all columns with union all

    Hi all
    select m_id, total, cat_id
    from scott.maintenance
    where prod_id = 1
    union all
    select m_id, total, prod_id
    from scott.maintenance
    where prod_id = 4
    How can I view all (and not common) columns of the two tables when I use union all like
    m_Id, total, cat_id, prod_id

    Thank you
    Johnny

    Hi, Johnny,.

    user9542267 wrote:
    Hi all

    select m_id, total, cat_id
    from scott.maintenance
    where prod_id = 1
    union all
    select m_id, total, prod_id
    from scott.maintenance
    where prod_id = 4
    

    How can I view all (and not common) columns of the two tables when I use union all like
    m_Id, total, cat_id, prod_id

    Thank you
    Johnny

    There is no need to make a trade UNION for this:

    SELECT  *
    FROM    scott.maintenance
    WHERE   prod_id IN (1, 4)
    ;
    

    If you really need to do a UNION and basic tables were the same or had the same number and types of columns, then you can use SELECT * in the two branches of the UNION:

    SELECT  *
    FROM    scott.maintenance
        --
    UNION ALL
        --
    SELECT  *
    FROM    foo.maintenance
    ;
    

    If the columns have different names in the two tables, the names of the first branch of the UNION will be used in the output.

    In all cases, you can add literal NULL values to the SELECT one or more branches of the UNION clause:

    SELECT  ename     AS name
    ,       hiredate
    ,       deptno
    FROM    scott.emp
        --
    UNION ALL
        --
    SELECT  dname     AS name        -- alias not necessary, but helpful
    ,       NULL      AS hiredate    -- alias not necessary, but helpful
    ,       deptno
    FROM    scott.dept
    ;
    

    Depending on your tables and your requirements of yor, you might be able to use SELECT * in a branch of the UNION.

    Published by: Frank Kulash, February 15, 2011 12:29

  • Interactive report - no research on all columns

    Hello

    I have following question:

    I have an interactive report based on a query that contains a column that displays data and an image:

    Example:
    SELECT Col_a,
    col_b,
    col_c,
    "< img src =" #WORKSPACE_IMAGES #small_image.png ">" col_img "
    FROM my_table;

    In my col_img column properties I put the 'view Type' to "Column of report Standard", it will display the image.

    But when I search in my interactive report for example the small Word, it will display all of the columns there are on each line the small word (from my small_image.png).
    I already tried to set in the properties of the column col_img ' allow users to:' everything off. It works I can't search only on the col_img column. So, it's ok.

    But when I choose in the field of research for 'Search on all columns' it also research the col_img column, what I want.

    Is there a solution for this problem?


    THX,
    Davy

    Hello

    I have not fully tested this, but you could test.

    Go edit the column and set the condition type "ask!" = Expression 1"and for the Expression 1, enter APXWGT

    Kind regards
    Jari

  • Region report show all lines?

    Hello

    I have a report of region in which I want to show all lines. Affecting the system of paging paging No. don't
    seem to do the trick. I put the number of lines and the number of lines Maximum two null. Nothing seems to work.
    Y at - there a trick to getting all the rows to display?

    Thanks in advance!

    You must define Number of Rows, and maximum number of lines = 9999999. If you set null APEX uses the default value, probably 10 paging and 500 maximum number of lines.

  • Need to report on all database objects changed

    Is there a way to create a report that displays all the database objects that have changed in a given period of time?  We have FT SQL running, so I can see that they have been collected, I just can't understand how a report out of it.  When I create a report, I can't find anything on the follow-up to add changes.

    Details of change tracking can be exported, but right now a good 'report' is not available.  Because this data is stored in the repository of IP, not the Foglight repository, it is not available for custom reports, like the rest of the data capture Foglight.

    To export the information to track changes, follow the screenshot below.

    PI data more accessible via custom dashboards and reports is on the roadmap for the future incorporated into the product.  If I can get info on the possible period of time, I will update the post.

  • Since worm 36 and perhaps earlier, I have bookmarks under the stars, but not when I ask to show all bookmarks

    by clicking on the bookmarks on the home page gives me my favorites
    I have bookmarks under recently and unsorted bookmarks. I can move from these categories to the master list without problem.
    When I click on show all bookmarks that I get none. He goes to this screen but shows no Favorites.
    I would use these bookmarks on another computer, but also change in show all.

    second problem, my norton toolbar does not load and has not since worm 36

    When you click View all bookmarks to launch the dialog box library, normally, you see three categories listed on the right side. If you double-click in any of the categories, you will find actual bookmark listed there or empty each category?

    To transfer bookmarks in Firefox on another computer, there are two different file formats. I suggest to create two in case one does not work:

    Symantec is usually very quick with updates to date, but it might be a little early for 40 of Firefox (beta version). There is a release supporting 39 Firefox: https://community.norton.com/en/blogs.../firefox-39-support-norton-toolbar. Users report that you sometimes have to run LiveUpdate several times to get the last toolbar into Firefox.

    If you had accidentally on the way to the beta and prefer to have the support of Norton toolbar in good time, you can install the retail version (39 Firefox) and it should work seamlessly with your existing settings.

    It wouldn't hurt to do a backup first. You can find suggestions in this article: back up and restore the information contained in the profiles of Firefox.

    Then do the restore:

    Clean reinstall it

    We use this name, but it isn't about deleting your settings, this is to ensure that the program, files are clean (not incompatible, corrupt or exotic code files). As described below, this process does not disrupt your existing settings. Don't uninstall NOT Firefox, that does not need.

    (1) download a fresh Installer for Firefox 39.0 of https://www.mozilla.org/firefox/all/ in an ideal location. (Scroll down your preferred language).

    (2) close Firefox (if applicable).

    (3) to rename the program folder, either:

    (Windows 64-bit folder names)

    C:\Program Files (x86)\Mozilla Firefox
    

    TO

    C:\Program Files (x86)\OldFirefox
    

    (Windows 32-bit folder names)

    C:\Program Files\Mozilla Firefox
    

    TO

    C:\Program Files\OldFirefox
    

    (4) run the installer you downloaded in the #1. It should automatically connect to your existing settings.

    You can get to the Options page?

    Note: Some plugins can only exist in this OldFirefox file. If it is missing something essential, present in these files:

    • \OldFirefox\Plugins
    • \OldFirefox\browser\plugins
  • Compare the report not showing the changes

    I modified an app engine select commenting on a line. I then did a report compares against a database that do not have the code

    CODE.jpg

    The comparison report shows no difference between the two DB

    What Miss me?

    RPT.jpg

    If you change only the SQL, then you need compare SQL objects. The report you are looking at is only for the engine program of Application objects. This will only show the changes made to the program properties (things like the records of State or temporary tables, attached to the program).

    Another report will show the changes for Application Sections of the engine, which would include things like the addition of new sections, adding or removing a step of a section or changing the properties of a step or a section.

    Also, to see changes made to the Application Engine PeopleCode, you'd have to glance at the Application Engine PeopleCode compare report (note that peoplecode types are detailed in separate reports, but all the SQL types appear in the same report).

    Kind regards

    Bob

  • By using the analytical function to sort without showing this column in the result.

    Hello

    We use the Oracle 11.2

    How to use Oracle Analytics to sort the output of a query without showing this column in the result?

    Here's my query:

    Select distinct nvl(SRC_CHR_NM,'0') | » #'|| NVL(EXPL_SRC,'0') | » #'|| NVL(DIM_NM,'0') | » #'|| NVL(DIM_CHR_NM,'0') | » #'|| NVL(DIM_CHR_ABR,'0') | » #'||

    Decode (InStr (NVL(SRC_COL_NM,'0'), 'trim ('),'1 ', Replace (NVL(SRC_COL_NM,'0'),'trim (',' trim(PRM_DTL.'), '0',' PRM_DTL.)))) » || NVL(SRC_COL_NM,'0')) AS ALLOFIT,

    DIM_NM

    from EXPL_CONFIG where SBJ_AREA_CD = 'PRMDTL. '

    I want to use analytical to sort by DIM_NM but I do not want to show. I want to just just the ALLOFIT column to show in the output.

    Something like "row_number() over (order by DIM_NM desc).

    Thank you!

    Hello

    If you SELECT SEPARATE, then you can only ORDER OF things in the SELECT clause. (Do you really need to do SELECT DISTINCT?  Often, it's just an inefficient way to remove the lines that do not need to be there at all).

    Move making the SELECT DISTINCT in a subquery and make the ORDER BY (and nothing else) in the main query.

    I hope that answers your question.

    If this isn't the case, please post a small example data (CREATE TABLE and only relevant columns, INSERT statements) and also publish outcomes from these data.

    Explain, using specific examples, how you get these results from these data.

    Always say what version of Oracle you are using (for example, 11.2.0.2.0).

    See the FAQ forum: https://forums.oracle.com/message/9362002#9362002

  • How to search all columns of all tables in a database

    I need to search all columns of all tables in a database, I already write the code below, but I got the below error message when running this script


    DECLARE
    The CNT number;
    v_data VARCHAR2 (20);
    BEGIN
    v_data: = "5C4CA98EAC4C";
    FOR t1 IN (SELECT table_name, column_name FROM all_tab_cols where owner = 'admin' and DATA_TYPE = 'VARCHAR2') LOOP
    RUN IMMEDIATELY "SELECT COUNT (*) FROM" | T1.table_name | 'WHERE ' | T1.column_name | ' =: 1' IN cnt USING v_data;
    IF cnt > 0 THEN
    dbms_output.put_line (t1.table_name |) » '|| T1.column_name | | » '|| CNT);
    END IF;
    END LOOP;
    END;
    /



    Error report:
    ORA-00933: SQL not correctly completed command.
    ORA-06512: at line 7
    00933 00000 - "not correctly completed SQL command.
    * Cause:
    * Action:


    Any help please

    If you are running this as a different user than the ADMIN you will also need to add the schema name.

    EXECUTE IMMEDIATE 'SELECT COUNT(*) FROM ' ||t1.owner||'.'||t1.table_name|| ' WHERE ' ||t1.column_name || ' = :1' INTO cnt USING v_data;
    

    The error could be any strange names of tables or columns. For example, if they contain spaces in the name.
    If you have names, then all identifieres must be placed in "."

    + untested example +.
    {code}
    RUN IMMEDIATELY "SELECT COUNT (*) FROM" ' | "" T1. Owner: ' ». » ' || T1.table_name | " » OÙ « ' || T1.column_name | "" =: 1' IN cnt USING v_data;
    {code}

  • Text entry box does not show all the text

    I'm creating a simple exercise where I want the user to copy text from the course, paste into word and report back what the number of words.  I thought that perhaps the text entry box would be the best way to go, since if you click the text (the default), you can copy it.  However after I place the paragraph of the text in the box and resize in the editor, until all of the text shows, it does not show all the text during playback is previewd or published.  It only shows the last words of the last row in the upper part of the box.

    Is there something that I am missing?  Or, is there a more easy/better way to do what I need?

    Thank you

    Hi all

    If it Captivate 4, there may be no need of a widget to do this. I'm guessing that you haven't tried allowing the scroll bar for the text of the entry (TEB) box?

    When I just plop a TEB on a blade, I get this in edit mode:

    During playback, it looks like this:

    But if I change the TEB properties and select the Show scrollbar option:

    I get this in the output:

    See you soon... Rick

    Useful and practical links

    Captivate wish form/Bug report form

    Certified Adobe Captivate training

    SorcerStone blog

    Captivate eBooks

  • How to create an accordion for a report that shows one of

    Hi all

    How can we create an accordion in a report that shows the details of the line in a form below, and then when we push the button of Update of the form, it must update the columns close the accordion and update this one line in the report.

    I have seen two examples

    http://HTMLDB.Oracle.com/pls/OTN/f?p=11933:131:1811032969809934:no:RP:

    http://HTMLDB.Oracle.com/pls/OTN/f?p=11933:77:1811032969809934:no:RP:

    Secondly a loading actually a new page but I do not know how to update the form, and then close the accordion region and then refresh the single line. Here pointers will be of great help.

    Thank you and best regards,
    Vikas

    Vikas,

    I slightly modified on of my examples alumni and you will find everything here:

    http://Apex.Oracle.com/pls/OTN/f?p=31517:241

    Denes Kubicek
    ------------------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Opal-consulting.de/training
    http://Apex.Oracle.com/pls/OTN/f?p=31517:1
    ------------------------------------------------------------------------------

  • Show hide columns generates error on the page if not found data

    Hello

    Has anyone ever encountered a situation where a page error when using the feature show hide column and no data is returned.

    My region to report is based on SQL and when calling at the start page or when restrictions are no match all all the data that appears is the message "No data found" by default. The method used, I pulled Carl Backstrom (RIP) application.

    < script type = "text/javascript" >
    function html_HideBasedOnCheckBox (pThis, pThat) {}
    if(pThis.Checked == true) {}
    html_ShowCellColumn (pThat);
    } else {}
    html_HideCellColumn (pThat);
    }
    }

    function getCellIndex (pRow, pCell) {}
    If (document.all) {}
    for (var i = 0; i < pRow.cells.length; i ++) {}
    If (pRow.cells [i] == pCell) {l_Count = i}
    }
    } else {}
    l_Count = pCell.cellIndex;
    }
    Return l_Count;
    }

    function html_HideCellColumn (pId) {}
    var l_Cell = $x (pId);
    var l_Table = html_CascadeUpTill (l_Cell, 'TABLE');
    var l_Rows = l_Table.rows;
    l_CellI = getCellIndex (l_Cell.parentNode, l_Cell);

    for (var i = 0; i < l_Rows.length - 1; i ++) {}
    html_HideElement (l_Rows.cells [l_CellI]);
    }
    return;
    }

    function html_ShowCellColumn (pId) {}
    var l_Cell = $x (pId);
    var l_Table = html_CascadeUpTill (l_Cell, 'TABLE');
    var l_Rows = l_Table.rows;
    l_CellI = getCellIndex (l_Cell.parentNode, l_Cell);

    for (var i = 0; i < l_Rows.length - 1; i ++) {}
    html_ShowElement (l_Rows [i]. Cells [l_CellI]);
    }
    return;
    }

    < /script >

    The attributes of HTML form elements is: onclick = "html_HideBasedOnCheckBox (this, this.value)" "

    The LoV for this box is static for a column.

    This set works very well if the data is returned. It must have something to do with the topics defined in the SQL code and therefore are not displayed when no data is returned. The code is then try to hide or something that does not exist.

    The part where he falls is during the setting of the variables:

    function html_HideCellColumn (pId) {}
    var l_Cell = $x (pId);
    var l_Table = html_CascadeUpTill (l_Cell, 'TABLE');
    var l_Rows = l_Table.rows;
    l_CellI = getCellIndex (l_Cell.parentNode, l_Cell);

    ... and more specifically the last variable setting: l_CellI = getCellIndex (l_Cell.parentNode, l_Cell);

    Does anyone know how I can get around this by using the method of SQL report i.e. Select col1 col2 "Column 1", "column 2" From myTable etc. or if it is possible to make up for it at the beginning that is

    If NO_DATA
    then
    dont_hide/display_any_columns that_dont_exist
    on the other
    var l_Cell = $x (pId);
    var l_Table = html_CascadeUpTill (l_Cell, 'TABLE');
    var l_Rows = l_Table.rows;
    l_CellI = getCellIndex (l_Cell.parentNode, l_Cell);

    for (var i = 0; i < l_Rows.length - 1; i ++) {}
    html_ShowElement (l_Rows [i]. Cells [l_CellI]);
    }
    return; ........

    ???

    See you soon,.

    Mike

    Hi Mike,.

    In fact, you can check the existence of the cell:

    var l_Cell = $x(pId);
    if (l_Cell)
    {
     rest of the code to hide the column
    }
    

    As long as l_Cell makes reference to a valid page element, then the if test passes and the rest of your code can work.

    Andy

Maybe you are looking for

  • Wait again, or go for now?

    I plan to buy a new laptop and I intend to buy the Macbook Pro 15 inch, which cost about $2400 retina display. Should I buy current 15 inch retina or should I wait for the new Macbook Pro will be released in September?

  • Automatic updates from Microsoft on my XP

    I want to make sure that the microsoft automatic updates is enabled.  I found directions on how to do it but that you do not want to go through all that if they are already on.  Thanks for any direction you may have for me.

  • TZ 215 closed

    I wonder if I need to stop tz 215 power source, I can just unplug it or I need to shut it down within the web interface? Thank you

  • Update blackBerry 10 made my phone useless

    Last night, I bought a new Fido Q5.  I was on the phone for 20 minutes and everything was fine.  He asked to do the software upgrade which seemed like a good idea.  He said that the phone should be turned off to start using the new system.  I turned

  • APK to bar blackBerry Smartphones

    Hello. I have a 9320 curve. I have converted an android APK at the bar, I just want to know if I can load studio 5 on my phone and use it without cause as far as I know, playbook, playbook only for BB 10.