Creating a read only page

Say I have a page with 80 items on it. Is there any way to make the page/regions read-only instead of doing it by individual items. I've search the forum and it looks like it is by item only. Has anyone come up with a workaround or now of a solution that they are willing to share.
I'm using version 2.0.0.00.49 with IE 6.0
Thanks,
Derek

Derek - Check out this wizard: Create Page > Form > Summary Page. It isn't exactly what you asked for but you might be able to use it.
Scott

Similar Messages

  • How to create a read only access for database

    I am developer but willing to lear some of the dba tasks. I would like to know the steps that i need to take to creat a read only access database that is going to be used for the report development.
    I really appreciate if you tell me all the steps I need to create that. I have a full right to do this in the develpment database. thanks

    thank you for your reply but it does not tell me how i can set up a read only access acccount for the user. Do i need to create a role and assign the role to the users?

  • Error ora-12028 while creating a read-only snapshot

    Hi !
    I'm in trouble creating a read-only snapshot of a simple table.
    The Master table belongs to an ORACLE 7.3.4 database instance, while the snapshot site belongs to an ORACLE 8.1 database. The read-only snapshot should have a refresh type FAST, but while I'm running the CREATE SNAPSHOT statement in the snapshot site I receive the following message:
    "ORA-12028 snapshot type is not supported by master site string
    Cause: Pre-Oracle master sites are not able to support primary key or
    subquery snapshots that are able to perform a fast refresh.
    Action: Create a ROWID snapshot or use a master table from an Oracle8 site. "
    This message doesn't help me enough. Is there anyone who can give me an advice ?
    Thanks you all.
    Laura

    Well laura earlier version doesn't support snap shot based on primary key
    u should disable primary key constraint from master site
    and create snap shot on the basis of row id.
    for further detail mail me at [email protected]

  • MOVED: Folders Created As 'Read Only' By Default

    This topic has been moved to Off-Topic Technical.
    Folders Created As 'Read Only' By Default

    This topic has been moved to Off-Topic Technical.
    Folders Created As 'Read Only' By Default

  • Can an unique index be created on read only cache group

    Hi
    Can an unique index be created on read only cache group
    Regards
    Siva Kumar

    No, I do not think so. Creating a unique index could cause autorefresh operations to fail if the data being refreshed contains duplicate values that would not be allowed by the index. You can create regular indexes on a table in a readonly cache group.
    Chris

  • Steps to create a read only schema

    Plataform 11.5.10.2
    Hi Guys,
    Can someone provide me with the steps to create a read only schema in Apps please.
    Thanks in advance

    Check the following thread:
    READ-ONLY APPS Schema in EBS
    READ-ONLY APPS Schema in EBS.

  • Creating a read-only user account

    I am trying to create a read-only user account. Reason being,
    when our users may be able to use MS Access to pull information
    and modify changes (if possible). I was told there is a way to
    do this. Help?

    I'm connecting using ODBC with a user account that I created.
    This dummy account will be available to approx 15 users so they
    can generate reports using Crystal. But, if there is someone
    that wants to generate queries using MS Access, they can still
    modify the data. So, how do I create only select statements to
    disallow users from using MS Access to link to the oracle
    database and change data?

  • Read Only page

    Hi,
    Is there a way to make all the fields in a page read only - say based on a variable input from a task flow? I don't want to check for this variable in all the fields. Is there a way to achieve at top level?
    I am using Jdev 12.1.2
    Thanks
    Uma

    You could probably try to write a recursive function which sets the readonly property programmatically and call that from wherever you want.
    I have not tried, but you could probably try it. Sample code :
        private void setInputItemsReadOnly(AdfFacesContext adfFacesContext, 
                                         UIComponent component){ 
           List<UIComponent> items = component.getChildren(); 
           for ( UIComponent item : items ) { 
               setInputItemsReadOnly(adfFacesContext,item); 
               if ( item instanceof RichInputText  ) { 
                   RichInputText input = (RichInputText)item; 
                   if ( !input.isDisabled() ) { 
                       input.setReadOnly(true) ; 
                       adfFacesContext.addPartialTarget(input); 
               } else if ( item instanceof RichInputDate ) { 
                   RichInputDate input = (RichInputDate)item; 
                   if ( !input.isDisabled() ) { 
                       input.setReadOnly(true) ; 
                       adfFacesContext.addPartialTarget(input); 
    Not tested.
    Created the above code by copying the resetValueInputItems() method from the below link :
    Java / Oracle SOA blog: Some handy code for backing beans ( ADF & JSF )
    Cheers
    AJ

  • Want to create a Read Only user for a given app owner user

    Hi Folks,
    We have an application owner schema, lets call it OWNER, which has different objects living under it.
    Now, for certain reasons, the app group wants a read only user which should be able to view objects living only in OWNER. It would only be able to read things, and have no create or alter types of priv to be able to change anything.
    The first idea was to create a new user (e.g. RO) and give this explicit grants (select only) for all objects in OWNER. Though this works, is a maintenance havoc, since everytime there is a new object in OWNER, you have to remember to give explicit grants to all RO (or RW ) kind of users.
    What i am looking forward to is, some sort of privilege or role concept that apply on the user level, and not on object level. something that allows me to say, all objects of this schema (e.g. OWNER) are visible to user RO. Other restrictions on RO would control read or write behaviour.
    Does this thing exist ? please point me to the documentation/example..
    regards
    raghav..

    CREATE OR REPLACE TRIGGER myTest.trg_mytest
    AFTER DDL
    ON myTest.SCHEMA
    DECLARE
         lv_obj_type VARCHAR2(20) := TRIM(UPPER(ora_dict_obj_type));
         lv_evt_type VARCHAR(20)      := TRIM(UPPER(ora_sysevent));
         lv_obj_name     VARCHAR2(30) := trim(UPPER(ora_dict_obj_name));
         lv_role_name     VARCHAR2(30) := 'myTest_RO';
         lv_stmt          VARCHAR2(4000) := NULL;
         ln_job_nr     NUMBER;
    BEGIN
         IF lv_evt_type != 'GRANT' --lv_obj_type <> 'OBJECT PRIVILEGE' --
         THEN
              DBMS_JOB.SUBMIT(ln_job_nr,'begin execute immediate ''grant ' || ' select on ' ||
                                       lv_obj_name || ' to ' || lv_role_name || '''; END;');
         END IF;
       INSERT INTO TB_EVT_LOG(d_date, description)
       VALUES(SYSDATE,  lv_obj_name || '~~~~ created ' || lv_obj_type || '~~~~' || lv_evt_type );
       EXCEPTION
         WHEN OTHERS THEN
           RAISE;
    END trg_mytest;
    /This works. But, my problem is that it is not able to filter out the Grant statement itself, Its logging an entry for the grant (as a ddl operation as well).
    what am I doing wrong here ?
    regards
    raghav..

  • SQL Server 2012 - Wat Is The Best Solution For Creating a Read Only Replicated/AlwaysOn Database

    Hi there I was wondering if someone may have a best recommendation for the following requirement I have with regards setting up a third database server for reporting?
    Current Setup
    SQL Server 2012 Enterprise setup at two sites (Site A & Site B).
    Configured to use AlwaysOn Availability groups for HA and DR.
    Installed on Windows 2012 Servers.
    This is all working and failover works fine and no issues. So…
    Requirement
    A third server needs to be added for the purpose of reporting, to be located on another site (Site C) possibly in another domain. This server needs to have a replicated read only copy of the live database from site A or Site B, whichever is in use. The Site
    C reporting database should be as up-to-date to the Site A or Site B database as possible – preferably within a few seconds anyway….
    Solution - What I believe are available to me
    I believe I can use AlwaysOn and create a ReadOnly replica for the Site C. If so do I assume Site C needs to have the Enterprise version of SQL server i.e. to match Site A & Site B?
    Using log shipping which if I am correct means the Site C does not need to be an Enterprise version.
    Any help on the best solution for this would be greatly appreciated.
    Thanks, Steve

    for always on - all nodes should be part of one windows cluster..if there site C is on different domain - I do not think it works.
    Logshipping works --as long as the sql on site C is is same or higher version(sql 2012 or above).  you can only do read only.
    IMHo, if you can make site C in the same domain then, Always is better solution else log shipping
    also, if your database has enterprise level features such as - partitonin, data compression -- you cannot restore the database on lower editions- so you need to have enterprise edition.
    Hope it Helps!!

  • Creating a 'read-only' group for Worklist app

    Hi,
    Is there a simply way of creating a group with 'read-only' access to the Worklist ? e.g. through a combination of BPM roles ?
    I want to be able to create a class of user who can view the details of Worklist items but have absolutely no other rights (skip, retry, assign etc).
    Regards
    Bob

    One simple way to achive this task is by using FYI pattern.
    Remove the actions from taskconfigvariablename.xml (for ex accept and reject).
    in case you are already using any pattern in your project, FYI pattern should extend that already created pattern.
    Regards
    Sudhir

  • Read only page level attribute

    Are there any plans to add a 'Read only' conditional attribute at the page level. It would save a lot of time if a page level read only attribute was available which was overrriden at the item level.
    The page level attribute would allow a page with lots of items to be rendered read only at the click of one option rather than having to go through each item on the page. (It would also be nice to be able to programatically set this via a function call)

    i know you can do this at the item level. Lets say you have 50 items on a page and you want to set the same condition for making each item read only. It would be a little tedious to have to go into each item to do this. Whereas a page level attribute would cascade down, being overrriden by the item level setting if a few of the items had different conditions or were not to be made read only.
    just think it would be a nice to have feature

  • How to create mandatory (read-only) profile for Terminal Services user (HP Thin Client) on Server2003... aaarrgghhh!

    I've been tearing my hair out for a couple of days now...
    I'm trying to create a mandatory profile for users logging in from hp thin clients on a 2003 server at a school.
    I've set up a prototype user, then copied the proto user's NTUSER.DAT to NTUSER.MAN and renamed
    NTUSER.DAT to NTUSER.DAT_unused.
    At that point, logging in as the prototype user looks ok.  It was my understanding that renaming NTUSER.DAT to NTUSER.MAN would make it a mandatory profile, and the user (in this case the proto user) would be unable to change it.  However, in this
    case the user can still modify the desktop and those modifications are preserved across logins.  The NTUSER.MAN file is being updated, judging by the timestamp changes.
    What am I missing?  
    I've tried putting the NTUSER.MAN in the user's dir on the server
     (C:\Documents and Settings\ProtoUser),
    in the DefaultUser, and in AllUsers.
    Right now I'm getting a default, unmodifiable profile which I have no idea where it comes from.
    In case it matters, the original user and directory tree from which the NTUSER.MAN I'm trying to use has been deleted, but I wouldn't think that should matter.
    For example, I have the option to not show the security tab set in the group policy, but it is showing up.
    The Start menu is showing as the classic start menu, and I had it set for the "new" (2 column) one.
    I've got hide network places on the desktop set, but it's showing up.
    Is there a way to tell where a profile is coming from?
    I'm pretty confused at this point; any clarifications / tips would be much appreciated.
    Related questions:
      If both an NTUSER.DAT and an NTUSER.MAN exist, which is used?
      If no profile is found for a user in the normal place, what happens?

    Hi,
    Thank you for posting in Windows Server Forum.
    A mandatory user profile is a special type of pre-configured roaming user profile that administrators can use to specify settings for users. With mandatory user profiles, a user can modify his or her desktop, but the changes are not saved when the user
    logs off. The next time the user logs on, the mandatory user profile created by the administrator is downloaded. There are two types of mandatory profiles: normal mandatory profiles and super-mandatory profiles.
    User profiles become mandatory profiles when the administrator renames the NTuser.dat file (the registry hive) on the server to NTuser.man. The .man extension causes the user profile to be a read-only profile.
    User profiles become super-mandatory when the folder name of the profile path ends in .man; for example, \\server\share\mandatoryprofile.man\.
    More information:
    Mandatory User Profiles
    http://msdn.microsoft.com/en-us/library/windows/desktop/bb776895(v=vs.85).aspx
    Using User Profiles in Windows Server 2003
    http://technet.microsoft.com/en-us/library/cc776120(v=ws.10).aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • Creating a read-only JDBC interface?

    I'm facing a challenge providing ODBC for an in-memory Java application. There are commercial frameworks such as Simba and DataDirect but both involve extensive licensing and are too elaborate (given only read-only capability with basic single table querying required).
    Another option I'm investigating is to use an ODBC-JDBC bridge driver (such as provided by EasySoft) in combination with a bespoke JDBC connector. The question is, how complex is it to implement a SELECT-only JDBC driver to interface directly with a Java app? (And as extension, are there any libraries that can assisting in creating a JDBC driver?)
    Any ideas much appreciated,
    Lance

    LanceJ wrote:
    I'm facing a challenge providing ODBC for an in-memory Java application. There are commercial frameworks such as Simba and DataDirect but both involve extensive licensing and are too elaborate (given only read-only capability with basic single table querying required).
    As stated that is not possible.
    Read the following and then restate the question
    [http://forums.sun.com/thread.jspa?threadID=211735&start=2&forumID=48]
    Another option I'm investigating is to use an ODBC-JDBC bridge driver (such as provided by EasySoft) in combination with a bespoke JDBC connector. The question is, how complex is it to implement a SELECT-only JDBC driver to interface directly with a Java app? (And as extension, are there any libraries that can assisting in creating a JDBC driver?)That doesn't make sense.
    The bridge and any "ODBC" interface is going to interact with the ODBC shell and a ODBC driver (nothing to do with java.) You can't create a ODBC driver without creating a ODBC driver. Which would seem obvious.
    If you want to create a JDBC driver - which is not the same as an ODBC driver then you must implement the interfaces. Simple as that. That however requires that you must have some way to actually access the database.

  • Trying to create a read-only user

    Our HR dept would like to have READ only access to a few tables and have asked that I create a user to allow them to pull stuff into MS Access.  Since SAPR3 owns all the tables I thought I just had to, after I created the user, as SAPR3 grant select to those few tables.  Didn't work. What did I miss?
    SQL> connect system/*******
    Connected.
    SQL> CREATE USER "HRRPT"
      2    IDENTIFIED BY "*******"
      3    PROFILE "DEFAULT"
      4    TEMPORARY TABLESPACE "PSAPTEMP"
      5    DEFAULT TABLESPACE "PSAPUSER1D";
    User created.
    SQL> grant create session to hrrpt;
    Grant succeeded.
    SQL> connect sapr3/*******
    Connected.
    SQL> grant select on pevsh to hrrpt;
    Grant succeeded.
    SQL> connect hrrpt/*******
    Connected.
    SQL> desc pevsh;
    ERROR:
    ORA-04043: object pevsh does not exist
    SQL> desc 'sapr3'.'pevsh';
    SP2-0565: Illegal identifier
    What am I missing?
    Thanks!

    It works here as follows:
    > connect system/*****
    Connected.
    SQL> CREATE USER hr
      2  IDENTIFIED BY hr
      3  PROFILE "DEFAULT"
      4  TEMPORARY TABLESPACE "PSAPTEMP"
      5  DEFAULT TABLESPACE "PSAPBEN620";
    User created.
    SQL> grant create session to hr;
    Grant succeeded.
    SQL> connect sapr3/******
    Connected.
    SQL> GRANT SELECT
      2      ON  "SAPR3"."T000" TO "HR";
    Grant succeeded.
    SQL> connect hr/hr
    Connected.
    SQL> select count (*) from "SAPR3"."T000";
      COUNT(*)
            24
    SQL> desc "SAPR3"."T000";
    Name                                      Null?    Type
    MANDT                                     NOT NULL VARCHAR2(9)
    MTEXT                                     NOT NULL VARCHAR2(75)
    ORT01                                     NOT NULL VARCHAR2(75)
    MWAER                                     NOT NULL VARCHAR2(15)
    ADRNR                                     NOT NULL VARCHAR2(30)
    CCCATEGORY                                NOT NULL VARCHAR2(3)
    CCCORACTIV                                NOT NULL VARCHAR2(3)
    CCNOCLIIND                                NOT NULL VARCHAR2(3)
    CCCOPYLOCK                                NOT NULL VARCHAR2(3)
    CCNOCASCAD                                NOT NULL VARCHAR2(3)
    CCSOFTLOCK                                NOT NULL VARCHAR2(3)
    CCORIGCONT                                NOT NULL VARCHAR2(3)
    CCIMAILDIS                                NOT NULL VARCHAR2(3)
    CCTEMPLOCK                                NOT NULL VARCHAR2(3)
    CHANGEUSER                                NOT NULL VARCHAR2(36)
    CHANGEDATE                                NOT NULL VARCHAR2(24)
    LOGSYS                                    NOT NULL VARCHAR2(30)
    You need to grant explicitly including schema name.
    Markus

Maybe you are looking for

  • Accessing shared database throws exception from one of 2 web roles

    Setup: Shared database Main site and "admin site" each using separate web roles accessing shared database. I had things working and running correctly until about 2 days ago.  Then, only the "admin site" stopped working.  I am using the same code to a

  • Where to download database 9.2?

    need 9.2 database, but can't find the download link, thanks.

  • Listener.ora password problems

    After a recent IT audit we've been told to set up a listener password for our Oracle 9R2 database on VMS. I tried but got a few error messages when entering the save_config command e.g TNS-12570 TNS-12560 TNS-00530 It turns out that we use something

  • Installed an additional SSD, computer crashes constantly

    As per lots of tutorials on the internet, I decided to replace my optical drive with my HDD, and add an SSD to my 2010 MacBook Pro. I made the SSD my main boot, and loaded it with mostly applications. I left my HDD basically untouched. My SSD is runn

  • CS4, no way to get rid of tabs?

    I thought the tabs were a nice idea until I got into my normal workflow, where I depend on dragging one image or layer into the other quite often. With each pic taking the whole tabbed page, that doesn't work. So I reset the prefs to not open new ima