How to make a non editable report column in a master form / details

Hi all

I created a form master / detail. The detail columns are created in the form of report columns instead of creating as components. I need to make a non-editable column. Please let me know how to achieve this.

Thanks in advance.

simple just go and change the attribute of report and make the field display type as > "Standard report column.

Tags: Database

Similar Questions

  • How to make a non editable report

    I have a table that contains the records that are effective as of the. If registration is effective I don't want any editable except for the termination date field. I thought I could do this by disabling elements, but you can change the date of entry into force and which will allow all the elements again. Does anyone have any ideas on how I can do this? I would like to use apex and is not a trigger. My goal is to develop applications extract data from different databases by using web services. I still have a long way to go. I'm not too familiar with APEX. I'm still trying to learn as I go.

    Thank you

    use $x_Hide ('PX_EFFECTIVE_DATE_IMG'); This will hide the datePicker, next to the element in the page header

  • How to make a non-editable column

    Hye,

    I want to create a table with 2 columns:

    the first column should not be editable, where the 2nd is,

    I found how I can dim the entire table, but not so as to reduce intensity of a column.

    How can I do so?

    Thanks in advance,

    AJ.

    SetTableColumnAttribute (panel_handle, control_id, column_index, ATTR_CELL_DIMMED, 1);

  • How to create a non-editable text box

    Hello

    I have a need to create a non-editable text box (staticTextBox is not an option). I use TextEditbox but cannot find a property that can be set to make it readonly so that users can edit the text.

    How can I do this?

    See https://indd.adobe.com/view/a0207571-ff5b-4bbf-a540-07079bd21d75, p. 12.

    Peter

  • How to make two of my red columns please

    I would like to know how to make my column savings on my red page please so it stands out.

    www.bristolequestrianservices.co.uk/TestPage.html

    Thanks for expectations.

    karenserjy1 wrote:

    Red text


    {TD:nth-Child(3)}

    color: Red;

    }


  • How to make "all programs" in 4 columns instead of 3

    I use XP SP3 and available to the normal 3 columns for 'all programs' is overloaded. So how do we "all programs" in 4 columns instead of 3? I'm sure that there is only a tweak in the registry for this, but can't find it.

    I'm not sure what you mean by "overloaded".  The "All programs" list includes additional columns as additional entries are created.

    As far as I KNOW, you have two options: you can have a column that scrolls (which I find hard to believe that anyone actually wants), or you can group entries of all programs into subcategories so that there are fewer entries in the main list of all programs.

    To scroll through all programs:

    • Right-click on the Start button, and then select Properties
    • In the "Start Menu" tab, click on the button "Customize".
    • If you use the XP menu, click the Advanced tab (no advanced for the "classic Start menu" tab)
    • Select "Scroll programs" in the Start Menu items list

    All programs group in subcategories

    The list of all programs is just a collection of "shortcuts" - that is, links to these programs themselves real.  These shortcuts are stored in one of two special folders:

    C:\Documents and Settings\All Users\Menu run\programs
    C:\Documents and Settings\\Start Menu\Programs

    Using Windows Explorer, you can create new subfolders in one of these two files and move there (not copy) the applicable subfolder shortcuts.  Note: you can easily open two special folders by right-clicking on the Start button and selecting "Open ' or explores]" and "open [or explore] all users."

  • How could put editable report column as read only based on the other domain

    Hello world

    I'm new to APEX. I have a modifiable tabular report (SQL query). When I choose the column (which is a selection list) of a certain value, I want column B to be read-only (depending on the result of an another SQL described below). It doesn't seem to be a READ ONLY section in the type of tabular report where I could put my SQL condition.

    In other words, "column B" must be read only based on SQL returning following true or Exists:
    Thus, to determine if column B is ready only, I need the following logic:

    SELECT 'x '.
    of tab1
    where key = (value of column A)
    and the flag = "Y".

    Any help would be greatly appreciated!
    Thank you
    François

    You can only do so if your tabular presentation is a manually created. In this example, it shows how to set this property:

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

    You can use a case statement to set this property for specific lines.

    SELECT empno,
           CASE
              WHEN ename LIKE 'A%'
                 THEN apex_item.text
                                  (34,
                                   job,
                                   80,
                                   100,
                                   'style="width:170px" readonly="readonly"',
                                   'f34_' || '#ROWNUM#'
                                  )
              ELSE apex_item.text (34,
                                   job,
                                   80,
                                   100,
                                   'style="width:170px"',
                                   'f34_' || '#ROWNUM#'
                                  )
           END job
      FROM emp
    

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

  • How to extract values of classic report column in the text element

    Hi all

    I've created a classic report (select id, name,' < input type = "button" value = "add" id = "add" name = "add" > "as" add details "details ;) with a single column as column values want link.i in the text element when I click on the link of that particular record of the report)

    (1) in the link this link column property I've specified the URL as [javascript:insert_in_table(#ID#,#NAME#)]

    (2) text two article P_ID, P_NAME

    (3) in the header of the page, I've specified as javascript

    < script type = "text/javascript" >

    function insert_in_table (id, name) {}

    var regId = ' #detail #'.substr (1);

    var req = new htmldb_Get (not null, $v ('pFlowId'), 'APPLICATION_PROCESS = add', $v('pFlowStepId'));

    Req.Add ('P_ID', ID);

    Req.Add ('P_NAME', Name);

    forced. GetAsync (function () {}

    If {(p.readyState is 4)

    $a_report (regId);

    }

    });

    }

    < /script >

    (4) created a (add) process whose point: on demand, run this process when requested by ajax

    pl/sql: insert into name_detail (id, name) values (: P_ID,: P_NAME)

    now the problem is I m not getting the values of column in the report in the text element, it only shows white.

    Kind regards

    Ketan

    Hello Ketan,

    Assuming that you want to insert the values into the table, this is why you want to set values for the element,

    If this is the case, then no need to define values for the element to insert.

    Follow the steps below, it is one of the embodiment of your condition.

    Step 1: Put the code below in your classic report query

    assuming that the id is of type number and the name is of type varchar, that's why I am attaching the name to apostrophe, see line 3

    select id
         , name
         , ''  as "Add to detail"
    from detail
    

    Edit 'Add details' column-> column attributes-> view-> column of Standard report

    Step 2: Create a process in the processing of the Page

    Name: INSERT_DATA

    Address the point: on demand, run this process when requested by ajax

    Process: putting the code below

    Declare
      P_ID number ;
      P_NAME varchar2(50);
      Begin
          P_ID   := apex_application.g_x01;
          P_NAME := apex_application.g_x02;
          insert into name_detail(id,name) values (P_ID,P_NAME);
    End;
    

    Step 3: Create a java script function to call your insert ajax process.

    Change the Page-> the function and the global variable declaration-> put the code below

    function insert_in_table(id,name) {
      apex.server.process ( "INSERT_DATA", {
          x01: id,x02: name
      }, { success: function( pData ) { }
      });
    }
    

    Hope this helps you,

    Kind regards

    Jitendra

  • How to make the model editable editable region

    Hello I have a spry menu bar that is outside the editable regions in a template.  How do I access it to make it editable, or I have to start from scratch?

    All the content on a page template is editable.  Only editable content is editable on model child pages.  If you open a page of model and cannot change some content, is that you open a model nested child, or your template markup is watered.  Do you use nested templates?  You can see the code on the template page?

  • How to make the non selectable radio button field

    I want to UN selectable radio button field average user will be not be able to select. How can I achieve this. Please help me for this.

    You could remove them from the screen, or do unfocusable or make unmodifiable.  The choice will depend on what you're trying to reach.

  • How to make a reference to a column from the column in a table other source

    Hello

    I have a tabular presentation (created using Wizard), in which a selection list, and the values in this list depends on another column in the form of tables.

    I tried 'Selection list (query based lov)' and mentioned the other column using #COL_NAME # and directly by COL_NAME, but nothing works.

    also tried using the dynamic query 'return "my query" ' but it does not work also.

    If someone has worked on a scenario like this, thanks for posting the solution.

    I get this error when I tried to the foregoing:
    report error:
    ORA-20001: Error fetching column value: ORA-06550: line 1, column 56:
    PL/SQL: ORA-01744: inappropriate INTO
    ORA-06550: line 1, column 13:
    PL/SQL: SQL Statement ignored
    Apex 4.1
    Oracle 11 g 2

    Kind regards
    Tauceef

    Published by: Tauceef on 5 December 2012 10:42

    See + {: identifier of the thread = 2250770} +.

  • How to make a link of report Analytics BI BI Publisher

    Hi the gems... Good afternoon...

    is it possible to connect screen BI Analytics BI Publisher reports...

    means that the customer wants to open the BI Analytics url and then they want to see the reports of the Anaytics BI as well as reports prepared by BI Publisher...

    I can do this... Please help...

    Thanks in advance...

    Hello

    Yes it is possible, using the dashboard
    make a page and add an object of bi publisher report dashboard...
    now, navigate through your report editor
    and save it...

    If you want to see more

    (1) better (you case)
    http://www.Oracle.com/WebFolder/technetwork/tutorials/OBE/FMW/bi//BIP/advancedbip/advancedbip.htm

    BIPUB databases
    http://www.Oracle.com/WebFolder/technetwork/tutorials/OBE/FMW/bi/BIP/bip11g/gettingstarted/gettingstarted.htm

    Integration of OBIEE and BI Publisher

    Hope that's clear.

    Thank you

    Deva

    Published by: Devarasu on September 27, 2011 16:14

  • How to make the pdf editable by the customer

    Is there a way to make a pdf file editable by the customer, regarding the modification and the addition of dates

    or change of venues etc...?

    never mind... better not do...

  • How to make a panelformLayout with two columns, where I need a column wider than the other?

    The second column must be more or less double first thant.

    It's the definition of the form:

    < af:panelFormLayout id = "pfl1" lines = '6' labelWidth = "120".

    Binding = "#{backingBeanScope.detalleBB.pfl1}" >

    two columns of fields is displayed.

    The second column has several panelgrouplayout - horizontal with three different areas requiring a more horizontal space than the first column which are fields of inoputtext.

    Currently the panelform gives the same horizontal space resulting in the packing in the second two-column and this conditioning is what I want to avoid.

    Thank you in advance.

    You plan to create another PanelFormLayout with a different width and put the two forms of panel inside a horizontal panel group presentation so that they compare side by side?

  • Beginner: how to make the non-ennuyeux popup windows

    Please see this page:

    http://www.bybloodalone.com/dates.html

    in the column notes, I want to create links that, when clicked on, made a small "pop up" window which would be held just text and being a relatively uniform size with no address bar. I can do html individual pages for each entry notes that open in a new window, but I have no control over the size of the window or the presence of the address bar. and if there is a way of not having to a page for each set of notes, this would be ideal.

    can someone point me in the right direction?

    you know, a good example of what I want to do is just in front of me: when I'm done typing this announcement, I clicked on the 'Preview' button and a small window with my ad as it appeared. I'm looking to do something like that, but with a predetermined content, not provided visitor.

    That's all! Thanks for the help.

Maybe you are looking for

  • App Store - spinning Cog

    When I open the App Store on my iMac (21.5 inch Late 2103 2.7 GHz Intel i5, 8 Gb, El Capitan 10.11.4) all that I get is the spinning gear and no progress. No connection with the App Store and no update - nothing. I tried to restart, but without succe

  • How can I get my Satellite Pro A100 product recovery media?

    When I bought my A100, I didn't any of the product recovery media. I assumed it would be pre - installed on a partition of my hard drive. Seems not to be the case. I want to resize my main partition to allow me to install linux on the space that woul

  • Keep having to disable and reactivate my IDT High Definition Audio CODEC, what's the problem?

    Hello! I have a Pavilion Touchsmart Sleekbook 14 "with Windows 8, I bought the news about 7 months ago. I have not yet updated to Windows 8. 1. Recently, I noticed that my audio suddenly stops working. This happens usually when my computer has been a

  • P1102 - why I have to press the power button before printing

    Hello I was wondering if anyone else knows how to avoid this problem. We have a P1102 connected via USB on Win 7 64 bit. Is there a setting somewhere that allows us to not have to press the power button on the printer before printing. It is now conne

  • Uninstall failed

    I'm having the same problem. Only Acrobat shows as installed.1. the 4 solutions on the page did not work2. change the language in the MAA did not work3 I can't uninstall anything but the MAO, because when I try to uninstall the system (Windows 10) I