Hide columns in the front-end, i.e. the Oracle answers

Hello

I wonder if it is possible to hide the columns considered non-essential as the answers ID so that the front end users only see the column that should
be exposed for reporting.

Thank you

Remove unnecessary columns from the presentation layer in the repository.

Tags: Business Intelligence

Similar Questions

  • The Oracle answers and duplicate lines

    Hello


    I have a SQL view called "DUP" which shows all lines that are the same
    for the 4 main fields INCNUM, TAKE, SAMP, CORR.
    Now there are a few lines that are duplicates, whereas these 4 key column, BUT
    There are also lines that are duplicates of 100%.

    The Oracle answers seems to hide lines that are 100% (all columns, not only 4) duplicates. (there no SEPARATE in SQL).
    How can I avoid this behavior?

    Also how to create whole new second report showing 100% duplicates lines i.e.
    who are the same for each unique column?

    Thank you
    metalray

    You just have to do the reverse then. Uncheck the separate support feature in the RPD and you will separate in your SQL

    Thank you
    Prash

  • Dynamically show/hide columns in the reports of the IR

    Env

    RDBMS: Oracle XE 11.2

    Request Express 4.2.4.00.08


    Hi all

    I am bulding an open source oracle apex app to track aircraft using ADS - B technology.

    I have somes types of units.  for example (kilometers, miles, knots, feet and metres).

    So, in the report of the IR, I want pick capable of showing a unit in time.

    For example

    Radio Group.

    Ground speed: (*) km/h () Mhp (Knt)

    Vertical speed: (*) ft/s (m/s)

    Can anyone help to build a code or point a direction to get above result?

    I tried already a thread, but did not work.

    Apex: Display/hide report column with Radio button. 2 cents to Oracle by Christoph

    Display / hide column IR dynamically


    I have a limited knowledge of Oracle APEX.


    Levi Pereira says:

    I am bulding an open source oracle apex app to track aircraft using ADS - B technology.

    I have somes types of units.  for example (kilometers, miles, knots, feet and metres).

    So, in the report of the IR, I want pick capable of showing a unit in time.

    For example

    Group of radio buttons.

    Ground speed: (*) km/h () Mhp (Knt)

    Vertical speed: (*) ft/s (m/s)

    There are different ways to do this. Probably the easiest would be:

    1. Create lists of values (LOVs) for units.
    2. Add the elements of the Group of radio -based unity LOVs report interactive region (IR), by specifying one of the units as a default value.
    3. Present the radio group via the Items property of the Page to send IR region.
    4. Create multi-column report for each metric combination / unit.
    5. Control the display of the report columns (applies to IR, but also classic report columns) conditionally using value of element in the Expression 1 = Expression 2 conditions Expression 1 is the group element of relevant radio and Expression 2 unit LOV value corresponding to that used in the column of the report.
    6. Add a dynamic action on the evolution of the components of the radio to refresh the IR region.

    A less obvious approach would also use LOVs, group radio elements and dynamic action of change/update as above, but only have one column for each measure in the report. The column value is calculated using an expression based on the value of the radio group, for example:

    .
    .
    .
    /* Assuming base speed unit is km/h */
      ground_speed
    * case :p1_ground_speed_unit
        when 'mph' then 0.621371
        when 'kn' then 0.539957
        else 1
      end ground_speed
    .
    .
    .
    

    The unit could be indicated in the column heading in the report referring to the element of the device by using a substitution of static text string:Ground Speed (&P1_GROUND_SPEED_UNIT.)

  • Hide column of the HFM 11.1.2.3 web form

    Hello

    I'm quite new to HFM and I have what could be a very stupid problem.

    Our requirement is to show on an online form < Parent Curr Total > by entity, a column of eliminations and assets < entity Curr Total >

    Entity 1 Entity 2 Entity n. Eliminations Holding

    As the eliminations are at the basic level and boils down not to the parent company, tried to add each column of elimination of entities to the web form and calculate a column as being the sum of all of the eliminations.

    So much and so much good, but when it comes to hidding columns in entity removal, I simply have not found how. I tried to change the width of the columns of 1px, 1 pt, 0% etc and the column remains with the same width, but IV ' e did the same on the 11.1.1.3 version and it works, kind of weird. I also tried to hide the added display: no and he's hiding the values, the column always shows.

    Summer research everywhere and have not been able to find advice on how to hide the columns, so I would be very happy if somenone could help me.

    Thank you very much for your time,

    See you soon

    Santiago

    Hello. Build the questionnaire to show the children of the parent entity to in the first column, the parent entity to in the third column and the second column as col3 calc less col1.

    Eric

    Eric Erikson, CPA

    Consultant independent HFM

    828-485-8454.

    [email protected]

    www.LinkedIn.com/in/ericerikson

    ericerikson.blogspot.com

  • display / hide column of the table running

    Are there known issues with display / hide a column of the table at run time?

    I have a table that contains a column with a check box and another with a radio button.  If the user is allowed to select more than one row in the table (as indicated by a form variable), then I want to hide the column of radio and checkbox column.  If not, I want to show / hide the contrary.

    I show / hide the column header too.  When I preview the form, however, the data in the table appears "scoot" left and placed in the column that is hidden, so to speak.

    Here is a view of the design of the table:

    tableDesignView.jpg

    And a view of the execution of the table.  You can see the radio is hidden, but the "account number" column wants to crush in the (hidden) radio column,

    tableRunTimeView.jpg

    Here is the script, I'm very confident in this small snippet of code because the lines of account were filling wonderfully until I added the column of radio buttons and the script to show/hide.

    Put the account data in the table

    function

    setAccountData (objAccountRow, objAccountItem) //Pass in the line and data to complete line

    {

    stuff the line

    objAccountRow.accountNumber.rawValue

    = objAccountItem.accountNumber;

    objAccountRow.accountName.rawValue

    = objAccountItem.accountName;

    objAccountRow.accountBalance.rawValue

    = objAccountItem.accountBalance;

    display the check box or radio button, depending on the number of accounts they are allowed to select (as specified by the form variable)

    var searchNumAccounts = objFragment.resolveNode("searchNumAccounts").value; Variable //Form

        if (searchNumAccounts==1)

    { //show the column of radio buttons and hide the checkbox column }

    hideObject (objResultsSubform.accounts.HeaderRow.txtSelect);   <-it's exaggerated here, to hide the table for each row header column,...

    hideObject (objAccountRow.accountSelected);

    showObject (objResultsSubform.accounts.HeaderRow.txtRadioSelect);

    showObject (objAccountRow.radioSubform.radioGroup.selected);

    }

    on the other

    { //show the checkbox column and hide the column of radio }

    hideObject (objResultsSubform.accounts.HeaderRow.txtRadioSelect);

    hideObject (objAccountRow.radioSubform.radioGroup.selected);

    showObject (objResultsSubform.accounts.HeaderRow.txtSelect);

    showObject (objAccountRow.accountSelected);

    }

    }

    OK I got it. The table object implements a container to contain the fields. You hid the ok fields, but you then never reset the row in the table to have only two columns. I copied the parameter of the XML source so that I would have the exact width and then deleted the one I wanted to hide. Now everything works fine.

    See the example updated the.

    Paul

  • Transpose the text column of the Oracle using ODI table

    Here's what I'm trying to do:
    Source table that contains the columns:
    Time, Blob, Item-ID

    The expected target has the columns:
    Time, data, Item1, Item2. ItemN

    1. where Item1, Item2 are as shown: say for example the source table has 10 rows of different IDS, there are 10 columns in the table target from Item1 to article 10. (Assuming that no. different IDs are fixed)
    How to do this? I learn ODI for a few weeks now. Understand the basics and terminology, I don't know how to do this.

    2 data (the target table) is a return value from a stored procedure that would transform the Blob (of the Source table)
    The stored procedure is ready, but how do you use the procedure to get the target to the source.

    Any help/direction would be greatly helpful.
    -Vincent

    Published by: user12397263 on December 29, 2009 23:53

    1. a question: How do you who would determine row goes to which column? You can say that the 1st line value becomes item1, but without a rank ORDER 1 will always random. If you have a way to ensure the order of the rows (say, a column that can store the rownum) then what you need is in the interface, you specify for n - th element mapping must be MAX (Case when n = rownum then point else ' ' end). Who should take care of it.

    2. There is a way to do this in ODI. Because you are a beginner, I would recommend that you create a temporary table and you use a PL/SQL block to generate data of BLOB and serve another table of the source that can update the column of data in the temporary table target table.

  • what filter first column by the oracle optimizer

    If anyone can help to understand what filter first column by the optimizer oracle by example below and why?

    Select * from emp where ENAME = 'FORD '.
    AND SAL = 3000;

    Hello

    Look at the MAP of the EXPLAIN command.

    All things being equal, if there is more distinct values of ename, Sal, then it's probably looking for "FORD" first.

    For example, the table has 100,000 rows and there are distinct 10 000 distinct enames and 100 sals, ename and sal are indexed, but there is no combined index.
    If you are looking for by sal firstly, this means that you wait about 1,000 lines of the search index, and then you have to test each of these 1,000 rows for the right ename.
    If you are looking for by ename, first of all, it means that you wait about 10 lines of the search index, and you will only test each of these 10 rows for the sal on the right.
    The order in which the terms were written will count.

    Published by: Frank Kulash, April 2, 2012 07:54

  • How to remove columns from the table on the master 1-0?

    I have an array of 96 columns with strings. I also have the array of int 96-elemets (mask) with 1 and 0.

    What I want to do is to is to remove (or hide - but I read that it is not possible) all the columns with index corresponding to 0 in the mask table.

    example:

    columns in the table

    1 2 3 4 5

    mask

    0 1 0 0 1

    I want to remove the columns 1, 3 and 4 and leave only 2 and 5 in my table.

    How can I do?

    If I create loop for with i as the index of the column, when I do DeleteTableColumns() columns number decreases, and I get an error of range out of

    Or do I have an option to hide the unnecessary columns (not set their width to 1, it's very ugly-looking)?

    Please help me (())

    Hello rovnyart!

    1. removal of columns in the table:

    I suspect that the reason why you get the out-of-range error is due to fact that in your loop, you delete the columns in the table, you'll eventually end up by referring to a column that no longer exists, because the other columns before it have been deleted. While you remove each column of your table in the loop for example, the column index number will move, because you deleted the other columns in front of her.

    To resolve this, even if you delete a column in your loop, make sure that you take also into account that the index of the column is moved because of the removed columns.

    2 hide columns in table:

    You can use the ATTR_COLUMN_VISIBLE attribute to hide columns in the table:

    http://forums.NI.com/T5/LabWindows-CVI-idea-exchange/add-attr-column-visible-attribute-for-table-Col...

    http://zone.NI.com/reference/en-XX/help/370051Y-01/CVI/uiref/cviattrcolumnvisible_column/

    3 alternatives:

    Note that another alternative would also use a tree instead, control as the tree control also supports the hidable columns:

    http://forums.NI.com/T5/LabWindows-CVI/table-hide-column/TD-p/569773

    Best regards!

    -Johannes

  • Hiding the data in the column on the report, but allowing the export of these data in the column

    I have a classic report I want to hide columns on the screen when the user runs the report. However, when they choose export data, I would like to include these columns in the exported file. In terms of attributes, the deselection of the Show checkbox removes this column of list on the report. However, she removes it also to export. Going into the print attributes tab and checking included in export and check the width of column > 0 does not solve this problem.

    Is it possible to hide the columns in the report area, but retain the column data for the export file?

    Thank you
    Joshua

    Published by: joshua.d on November 5, 2008 13:44

    Joshua:

    I was able to use the OTN of Denes Kubicek http://htmldb.oracle.com/pls/otn/f?p=31517:108:5784337801775286:RP site code:
    to enable an on-screen report columns that must appear in the export. (The export is carried out in a XLS file. The Dene code can be easily modified to write CSV instead).

    Please follow the link above and get the necessary pkg pl/sql and instructions. Follow the "How To" or Readme doc and configure your application to the Apex and the report as a result page.

    Go to the section "Attributes of column" for each column in your report and explicitly don't set the field 'Inlcude in export' to 'Yes' or «»

    I hope it works for you.

    CITY

  • How to hide the windows, and the Oracle Logo?

    I would like to hide Windows and the Oracle Logo in the window of the Oracle

    https://sites.Google.com/site/myoracleproblems/home/screen

    or move the higher demand. Does anyone know what to do, if anything?

    Thank you
    m.

    Hello

    I think that sooner or later you will need, you can not build up is an application of forms, reports and don't need menu.

    The only way you can play to hide this menu and it properly tested and works :)

    Kind regards

    Abdetu...

  • Create column for a YEAR on the front-end or Data Modeler?

    You want to create a column of CDA in the Data Modeler or the front-end server. In the Data Modeler, the CDA is summarized by date opposed to the month which is a very large number. On the front, it gives an error of invalid syntax when you use date (expr, time_period).

    The question seems to be a corrupt hierarchy of the time Dimension. It's working now.

  • How the XML element used in RTF PUBLIC/PRIVATE? I know how to hide columns in RTF, but do not know how to generate xml below way. Help, please.

    Hello

    I'm following link below to show/hide my columns dynamically. See "formatting of column.

    http://docs.Oracle.com/CD/E12844_01/doc/BIP.1013/e12187.PDF

    According to the doc element can be made in private/public.

    <items type="PUBLIC">
     <item>
      <name>Plasma TV</name>
      <quantity>10</quantity>
      <price>4000</price>
     </item>
     <item>
    

    And even can be used to hide the column with the help of State

    <?if@column:/items/@type="PUBLIC"?>
    

    MY QUESTION IS HOW TO DO THIS IN MY XML BELOW?

    Here's the part of my XML code that I use in the definition of the data to RTF.

    <group name="GH3" source="QH3">
    <element name="COLUMN_HEAD3" value="COLUMN_NAME" /> 
    </group>
    <group name="GH4" source="QH4">
    <element name="COLUMN_HEAD4" value="COLUMN_NAME" /> 
    </group>
    

    I'm out like that.

    <LIST_GH3>
    <GH3>
    <COLUMN_HEAD3>REBILL_TO_OTHER_BUSINESS_UNIT</COLUMN_HEAD3>
    </GH3>
    </LIST_GH3>
    <LIST_GH4>
    <GH4>
    <COLUMN_HEAD4>XYZ</COLUMN_HEAD4>
    </GH4>
    </LIST_GH4>
    

    In order to use the logic according to the oracle document I want output like this.

    <LIST_GH3 type="PUBLIC">
    <GH3>
    <COLUMN_HEAD3>REBILL_TO_OTHER_BUSINESS_UNIT</COLUMN_HEAD3>
    </GH3>
    </LIST_GH3>
    <LIST_GH4 type="PRIVATE">
    <GH4>
    <COLUMN_HEAD4>BLANK</COLUMN_HEAD4>
    </GH4>
    </LIST_GH4>
    

    Should what changes I make in my XML to get the result of the execution as above? Help, please. Where should I make changes in the XML above? Name of the Group? Name of the element?

    I intend to use it under condition in RTF model to hide the column, but do not know how to set the column as PRIVATE/PUBLIC type in the XML output that is used to populate the data in the RTF while running.

    <?if@column:/BTSPIEXP/LIST_GH3/@type=”PUBLIC”?>COLUMN_HEAD3<?end if?>
    

    Kind regards

    Patricia K.

    Hello

    Problem has been resolved. I used the value of the item to determine whether to show it.

    Kind regards

    Patricia K.

  • Hide a column, if the total of column is 0 (zero)

    Hello

    I'm trying to hide the entire column if the column total is 0.

    Model example:

    NUM

    IF Amt1 end if

    Amt2

    IF Amt3 end if

    F NUM

    IF $0.00 end if

    $0.00

    IF $0.00 end if E

    Totals

    IF $0.00 end if

    $0.00

    IF $0.00 end if

    Sample data:

    NUM

    Amt1

    Amt2

    Amt3

    10 P

    108.25

    28,00

    0.00

    0020445.000.00003100.12472.000.00004145.00872.000.000054:30 pm25.320.00

    I use the below expressions that does not work.

    <? If@column:sum (amt1)! = 0 ? > <? amt1? > <? end if? >

    <? If@column:sum (amt3)! = 0 ? > <? amt3? > <? end if? >

    I want to hide the entire cloumn Amt3 and leave the '0' at such amt1 what. Any help would be appreciated.

    You can try as

    before the table do the sum (amt3) column using the variable and store that value in a variable, then use this variable as u stored the value of the sum (amt3) column.

    F cal variable to get the sum of column E of amt3

    NUM

    Amt1 end IF

    Amt2

    Amt3 end IF

    F NUM

    If $0.00 end if

    $0.00

    If $0.00 end if E

    Totals

    If $0.00 end if

    $0.00

    If $0.00 end if

    Then use

    If it doesn't work for you send me xml and the model to my email, I can try on my side and send model u updated.

    my email: [email protected]

  • How to resolve the queries of front-end Apps R12 on hold

    How to check is applications are underway pending in Oracle Apps R12 of front end and how to solve this problem.

    Richa says:
    How to check is applications are underway pending in Oracle Apps R12 of front end and how to solve this problem.

    Since the front-end, go to applications > view and search applications pending (Phase: pending).

    Since the backend query the FND_CONCURRENT_REQUESTS table - simultaneous treatment - what are the meanings of the Codes in the STATUS_CODE and the PHASE_CODE FND_CONCURRENT_REQUESTS Table columns? [152209.1 ID]

    To resolve them, see the CM journal for possible errors file (make sure all CMs are identified).

    Thank you
    Hussein

  • Editing the links of profile content (front-end)

    I read the guides (the User Guide for the content server and content management (profile links chapter)). He said that if I were to create profile/rules in the back-end for a particular type of content to be "archived", UCM will automatically create a "drop-down menu" for research and Check-in in the bar of the main menu in the front end of the Complutense University of MADRID. And these drop downs will be displayed for ALL users, even if they do not have access to check-in or search for these particular documents. But a way for users to hide these downs of check/search drop are for them to go to my profile > Portal Design > by clicking on edit content profile links > and UN-checking the links (or profile) that they will not be displayed.

    OK, I get that, but is there a way for me to control it in the backend? So, BY DEFAULT, users do not see this list to all the? or, BY DEFAULT I can uncheck/check profile links automatically based on the user's role? Thanks in advance!

    Published by: user13008292 on July 15, 2010 08:42

    Yes you can do this with a script idoc

    Here is an example to hide the link to users with role "yourRole.

    1. go in Configuration Manager applet in Admin Applets
    2. go into the Profiles tab and choose the profile you want to work, and then click edit
    3. check the box to enable "restrict the personalization links.
    4. place the following code on the script for check-in or research, according to which you want to change:

    <$if userhasrole("yourrole")$="">
         <$isLinkActive=0$>
    <$endif$>

    See you soon,.

    Sylvie Martel

Maybe you are looking for