Disable or hide a row

Hi all,
How can I disable a row in a table?
Is it possible to privent a user from seeing a table row ?

There is no mechanism for disabling rows.
The simplest way to prevent a user from seeing a row is to use a VIEW which filters the table depending on certain criteria. This is rather clunky, especially if you want to apply lots of different types of restrictions. Hence Oracle introduced Row Level Security which makes this sort of masking a lot more dynamic and flexible. Unfortunately it is only available to people who have bought an Enterprise Edition licence.
Cheers, APC

Similar Messages

  • How to disable or hide header row in appliction server

    hi,
    I need disable my header row in applicationserver(outbound)(i s nothing but first row),
    how to do , plz any one explain me with code.
    my requeriment is in my selection screen input as file name , field sprator and headerrow .
    in header row if user give option yes or no, if yes means we have to display header row in applicion server
    if they entred no menas we have to disble header row.
    ex: appliction server outpurt  like below;
          aaaaaa         bbbbbbbbbb  cccccccccc  ddddddd    -
    > this is header row , i need to hide
         11 111           2222222       3333              4444
          55555            777777           8888            9999
    i need display in appliction server from 2nd row on wards.
    plz any one know reply me as soon as possible

    Hi Sara
    I doubt if there is any way where you can hide or disable the header row for the existing file in the application server.
    What you may perhaps do is, process the desired output in the program, in such a way that as per the value in the checkbox( whether selected or not) you may delete the first row from the internal table which has the header data from the incoming file.
    Something like this:
    LOOP AT itab INTO wa_itab.
       IF ck_box  = 'X'.
          CLEAR wa_itab.
          MODIFY itab FROM wa_itab INDEX sy-tabix.
          EXIT.
       ENDIF.
    ENDLOOP.
    Let me know if you need any further help on this.
    Harsh
    PS:
    1) An empty first line will appear in this case.
    2) Check the code in a test program first.

  • Hide multiple rows in a dynamic table based on the row value.

    Hi,
    I need to hide multiple rows in a dynamic table based on the specific value of that row.
    I cant find the right expression to do that.
    please help

    Go to the Row Properties, and in the Visibility tab, you have "Show or hide based on an expression". You can use this to write an expression that resolves to true if the row should be hidden, false otherwise.
    Additionally, in the Matrix properties you should take a look at the filters section, perhaps you can achieve what you wish to achieve through there by removing the unnecessary rows instead of just hiding them.
    It's only so much I can help you with the limited information. If you require further help, please provide us with more information such as what data are you displaying, what's the criteria to hiding rows, etc...
    Regards
    Andrew Borg Cardona

  • How to Hide some Rows in a List view Web Part using JavaScript ?

    How to Hide some Rows in a List view Web Part using JavaScript ?

     Here is the code that worked for me:
    var Elements = document.querySelectorAll('div[id=WebPartWPQ3] table[class=ms-listviewtable]>tbody tr .ms-vb-lastCell.ms-cellstyle.ms-vb2')
    for(var i=0, n = Elements.length; i < n; i++)
     if(Elements[i].innerHTML=="India")
    Elements[i].parentNode.setAttribute("style","display:none")
    WebPartWPQ3 -> ID of webpart Div
    ms-listviewtable -> class name of table in Div
    ms-vb-lastCell.ms-cellstyle.ms-vb2 -> classname of td to get text

  • How to hide a row in BI Publisher using conditional formatting

    Hi,
    I am using BI Publisher 11.1.1.5.0.
    I need to hide entire row based on the condition (if sal > 0 then hide entire row), please can you help on how  can I achieve this?
    thanks

    Hi,
    I've found the solution in
    Report Designer's Guide for Oracle Business Intelligence Publisher Release 11g (11.1.1) Part No. E13881-02 - Section Conditional Formatting.
    thanks

  • SSRS- Hide Empty Rows

    Hi,
    I am having a difficult time deleting empty rows in a table. I used HideDuplicates under properties to hide any of the duplicated data but now it is leaving me an empty row in the table. I tried to use the following codes but none of them seemed to work:
    =Iif(Previous(Fields!Apps.Value) = Fields!Apps.Value, True, False)
    =IIF(fields!Apps.value IS NOTHING, True, False)
    =isnothing(fields!Apps.value)
    =if(Fields!Apps.Value = "",
    true, false). 
    =IIF(IsNothing(Fields!Apps.Value),True,False)
    =iif(Fields!Apps.IsMissing,True,False) 
    Might anyone know another code I might use to delete the empty rows?
    Thank you in advance!

    What you are looking for is probably the Visibility option not the HideDuplicates. You can right click on the row and choose
    Row Visibility. Select "Show or hide based on an expression" and put in the expression that resolves to true to hide the row, and false to show it.
    The HideDuplicates field that you are using is there to hide duplicating text and not entire rows. For example if you have:
    Value1
    5
    Value1
    15
    Value1
    20
    Value2
    10
    You would then get:
    Value1
    5
    15
    20
    Value2
    10
    I hope that helped.
    Regards,
    Andrew.

  • How do I Hide a Row in a Table in a Pages document?

    How do I hide a row or column? There is a command to "unhide" but not to hide. Because I cannot hide anything, the unhide command is greyed out - what did Apple do with the Hide Rows command for Tables in Pages? Hide it? lol!
    It does not show up in a search of Help - in fact, there isn't even a mention of "unhide" despite there being a command for it!
    Why do I want to hide a row? Because if I have an 8 row table in a Pages Template and I only need six of them, deleting the other two breaks all the formulae and inserts #Ref! errors across each formula, rather than automatically altering cell references as other spreadsheets do. In Numbers hiding the cells makes them disappear and does not break the formulae, but this behaviour seems to be missing from Pages.
    Or is it me that has missed somethng?

    I thought that the descriptions given in the Help are clear.
    The ADDRESS function constructs a cell address string from separate row, column, and table identifiers.
    ADDRESS(row, column, [type], [style], [table])
    row: The row number of the address.
    column: The column number of the address.
    I dropped the comments about type, style and table as I don't use them here.
    =IF(ISBLANK(INDIRECT(ADDRESS(ROW(),1))),"",INDIRECT(ADDRESS(ROW(),2))*INDIRECT(A DDRESS(ROW(),3)))
    INDIRECT(ADDRESS(ROW(),1))
    returns the contents of the cell whose row is the same than the one containing the formula \[the row number is given by ROW()] and whose column is the 1st one)
    INDIRECT(ADDRESS(ROW(),2))
    returns the contents of the cell whose row is the same than the one containing the formula \[the row number is given by ROW()] and whose column is the 2nd one)
    INDIRECT(ADDRESS(ROW(),3))
    returns the contents of the cell whose row is the same than the one containing the formula \[the row number is given by ROW()] and whose column is the 3rd one)
    In short, when the formula is applied in row 9 it behaves like:
    =IF(ISBLANK(A9),"",B9*C9)
    The long syntax is required to be able to enter it only once in the header cell as described in the Help and in the PDF User Guide in a chapter entitled "Applying a Formula Once to Cells in a Column or Row".
    As we want to use such a formula, it would be odd to destroy its ability using a different formula in a standard bottom row.
    More, in a footer row, we may use shorter formulas than in other rows.
    In a standard row 10 we would have to write =SUM(D2:D9)
    in a footer row we enter only =SUM(D) which add the contents of every standard cells of the column D.
    This feature is also described in the named resources.
    Yvan KOENIG (from FRANCE vendredi 3 octobre 2008 18:21:13)

  • Hide a row in the table.

    Hi,
      In my application, there is a table and an input form. I have bound the table and input fields in the form to the same context node. Now when I am validating the form, the input fields values are getting showed in the table.
      I have to show the table row, only when all the validations are correct and the user got saved in the back end.
    Is this correct design?
    Since only one such column is getting showed in the row, can I go with an option to hide the row and still show the values in the input form.
    Edited by: Tony on Feb 20, 2009 5:06 PM

    Hi Tony,
    I guess the way you are following will always give you wrong result. Reason being the same attribute and node binded to both input field and Table. This will behave as the way have told.. That means as soon as some value will be entered in th inpu field the table will get populated with the same attribute value.
    I guess the reason is quite simple to understand. If the same attribute is binded to both UI elements (InputFiled and Table), then as soon as any of these value will be updated, same value will be shown in the other UI element.
    To fix this issue you can follow this approach:
    1) Create separate node or a attribute for the inputfield. And bind this attribute to the Inputfiled UI element.
    2) Keep the binding of the table as it is.
    3) As soon as user enter some value in the inout field and hit enter, fire a function or validation check which you were talking about. There is event for onEnter in inputfield. You can use the same.
    4) If the validation succeds then save the value in the backend and create a new element of the table and copy the value of the attribute of input field to the Table attribute whichis binded to Table.
    Following this way will definitely solve you issue. If you require any further help please let me know. However you can easily get the code for creation of the new element of the node which is binded to table. Even then if you require any help, please feel free to revert back.
    Hope this helps you!!
    Thanks and Regards
    Pravesh

  • Hide Blank Rows in a Pivot Table in Outline Form in Excel 2010

    In Excel 2010 Pivot Tables, using the Outline Format and Repeat Item Labels, is it possible to hide the rows with no data?  Please see atch.
    Doug in York PA
    Douglas R. Eckert

    Hi,
    If you want to hide these subtotal rows, you have to use the Tabular forum, the Tabular layout is very similar to Outline except that you will not 
    have subtotals at the top of every group.
    1.Right-click an item in the pivot table field, and click Field Settings
    2.In the Field Settings dialog box, click the Layout & Print tab.
    3.Check the 'Show item labels form in tabular form’ 
    check box.
    4.Click OK
    Then your pivot table layout should look like the image below:
    Let us know if that’s what you wanted.
    Regards,
    Melon Chen
    TechNet Community Support

  • Hide duplicate row and analytic functions

    Hi all,
    I have to count how many customers have two particular product on the same area.
    Table cols are:
    AREA
    PRODUCT_CODE (PK)
    CUSTOMER_ID (PK)
    QTA
    The query is:
    select distinct area, count(customer_id) over(PARTITION BY area)
    from all_products
    where product_code in ('BC01007', 'BC01004')
    group by area, customer_id
    having ( sum(decode(FPP.PRODOTTO_CODE,'BC01007',qta,0)) ) > 0)
    and ( sum(decode(FPP.PRODOTTO_CODE,'BC01004',qta,0)) ) > 0);
    In SQL*PLUS works fine, but in Oracle Discoverer I can't get distinct results also if I chek "Hide duplicate rows" in Table Layout .
    Anybody have another way to get distinct results for analytic function results?
    Thanks in advance,
    Giuseppe

    The query in Disco is exactly that I've post before.
    Results are there:
    AREA.........................................C1
    01704 - AREA VR NORD..............3
    01704 - AREA VR NORD..............3
    01704 - AREA VR NORD..............3
    01705 - AREA VR SUD.................1
    02702 - AREA EMILIA NORD........1
    If I check "hide duplicate row" in layout option results didn't change.
    If I add distinct clause manually in SQL*PLUS the query become:
    SELECT distinct o141151.AREA as E141152,COUNT(o141151.CUSTOMER_ID) OVER(PARTITION BY o141151.AREA ) as C_1
    FROM BPN.ALL_PRODUCTS o141151
    WHERE (o141151.PRODUCT_CODE IN ('BC01006','BC01007','BC01004'))
    GROUP BY o141151.AREA,o141151.CUSTOMER_ID
    HAVING (( SUM(DECODE(o141151.PRODUCT_CODE,'BC01006',1,0)) ) > 0 AND ( SUM(DECODE(o141151.PRODUCT_CODE,'BC01004',1,0)) ) > 0)
    and the results are not duplicate.
    AREA.........................................C1
    01704 - AREA VR NORD..............3
    01705 - AREA VR SUD.................1
    02702 - AREA EMILIA NORD........1
    There is any other way to force distinct clause in Discoverer?
    Thank you
    Giuseppe

  • Hide the row structure in Bex query

    Hi Experts,
    i have a query regarding display of report in Bex Analyzer.  I have two structures in report one in Row & other in Column. In row  have only one field against which there are two columns having figures
    my query is as follows:
    Is this possible that if I hide the filed in Row ie, if i hide the only field from row then the column fields will always displayed or they also get hide.
    is there any possible way to do so, ie if i want to display the column fields / structure only, even after hiding the row field
    thanks in advance
    neha

    Hi,
    In your scenario, hiding the row will cause the columns to also disappear in the output. Can you explain why you want to hide the row?
    Regards,
    Suhas

  • Hide a row in CROSS TAB

    HI experts,
    I have a cross tab.
    The rows are automatic from a field, for example month:
    1
    2
    3
    4
    5
    6 ....
    I new to hide , for example the row of AUGUST.
    How can I hide the row in the cross table. I want to hide, I dont want to supress the result.
    Thank you very much
    Edited by: Markus C. on Jul 23, 2010 10:18 AM

    Hi,
    Create a formula that would represent what you want displayed in the rows and base the Row on the formula instead of a specific field.
    Heather

  • Hide duplicate rows in Cross Tab report

    where can i find the option to hide duplicate rows in cross tab report..?

    Is it a limitation with crosstab report..?
    Ok, here's the issue i have a crosstab report and its based on a VIEW.
    the data duplicates based on created_by and last_updated_by columns as I'm not using these columns in the report.
    any ideas or workarounds to avoid duplicates....?
    Thanks!

  • Hide Add Row button

    Hi All,
    I want to hide "Add Row" button which is of type "OAAddTableRowBean" without using PPR. If setRendered is used, I see there is no data coming up on the page although the buton is hidden.
    Apprecaite pointers to this.
    Thanks

    Hi
    Can you tell what is happening when you are rendering it false means whole table gets invisible or anything else..Do one thing instead of taking addTableRow default use a submit Button in Footer region where you have created this addTableRow and handle that item in your controller..
    Thanks
    AJ

  • How can I hide certain rows

    I have a spreadsheet that i'm using to track my weight loss.  In column A I have dates and in Column B I have weight.  I would like to hide all rows except for Monday's.  How would I do that?

    Hi Chariot,
    There is a feature called Filtering that will hide rows according to criteria you setup. Are you displaying the day of the week in your data? If so, this is what you would filter on. If not, you just need to add a column to display the day of the week, or the day number, and filter on that.
    Could you post a screen shot of your table?
    Here's a small example:
    The formula in column B is: =DAYNAME(A)
    Quite simple. There is a button to activate the Reorganize Panel on the Toolbar. Just click on your table and then click the tool icon.
    Jerry

Maybe you are looking for

  • How do i update the software on my ipod touch from version 3.1.3??

    w do i update my ipod touch??? would like newer software!

  • How to get the column names of the table into the Dashboard prompt

    how to get the column names of the table into the Dashboard prompt Thanks & Regards Kishore P

  • Flash Player 8 in Windows NT

    Hello! I'm developing a Flash 8 Application for a school.The students will access a executable Flash and it will load SWF's. But the SWF is Flash 8 and the computers of the school are Windows NT. Is there anyway I can load Flash 8 SWFs on the compute

  • Strategic Maintenance in Plant Maintenance

    Hi All, I want to change Single cycle pln to Strategy maintenance plan. Could you please tell what all are the benefits of Strategic maintenance(Time Based). Will it save some time for Planners? Thanks in advance. Regards, Sanjay Tiwari

  • Jump query exit (rsr00004)

    Hi,                                                    When we try to execute a query jump (drill-down;report-to-report) between two queries, the code in this include(ZXRSRU05) is not executed.