Please help me clear my doubt in oracle forms

I have created a control block and items. I want to make those items as update false but insert should be allowed.
In the propery sheet update_allowed is valid only for base table items how to make the item non updateable for control items.

This is not the Forms forum, but anyway...
We can make non-base table columns non-updateable. I've just tried it with 9i Forms and I'm pretty sure this was true in Forms 4.5.
Why do you think we can't?
Cheers, APC

Similar Messages

  • Could anyone clear my Doubts in  Oracle Discrete Manufacturing

    Hi Gurus,
    Below are my doubts hope u understand..
    1) Difference between Phantom Item and Sub Assembly Item?
    2) For ATO Model Fulfillment
    steps are :-
    a) create SO for ATO Item
    b) Shedule and Book the SO
    c) Launch Auto create Configuration Items
    d) Launch Auto create Final Assembly
    why we are Submiting "Launch Auto create Configuration Items" request?
    As if we submit "Launch Auto create Final Assembly" request is enough we get the JOB# right.
    3) Could you tell me which scenarios we use VMI( Vendor Managed Inventory)..
    Please help me since i have struck with above questions in my mind
    Thanks,
    Vijay

    Hi project
    There appear to be two issues here:
    1) Using a GPS application on N95 with your consent to provide "buddy beacon" for friends or others, which your original posting seemed to imply.
    2) "Big Brother" tracking without your consent, by which emergency or internal security services can determine your position by reference to mobile cell tower location. An example would be dialing "911" in USA in which location of caller needs to be available.
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Please help me. Can't install Oracle 9i on linux

    Hi,
    I have download all three filez and gunzip and cpio all the filez and put them under my /home/daniel/Disk(1,2,3) And afterwards, I go into the /Disk1/install/linux and run the runInstaller.sh script....or runInstaller. nothing happen. Could anyone give me a hint on how to install Oracle?? thanx....

    Try running setup from a cmd prompt after you've temporarily cleared out any path or Java related environment settings (e.g. set Path = ""). This sometimes helps.

  • Please help convert MSSQL Stored Procedure to Oracle PL/SQL

    Hi there to all,
    this be my first post to these forums. I have already posted this question on a microsoft msdn forum, until someone advised that I ask my question here - dunno why I didnt think of that! ?:|
    Im working with an Oracle 10g Database from an ASP.NET 2.0 application, and want to know if it Oracle supports OPENXML (rhetorical question I fear!). The reason I ask is because I want to create an Oracle Stored Procedure that will accept an XML string as an input parameter, prepare it, select from it, and then insert it into an Oracle table.
    I have done this successfully in SQL server using the following as an example:
    CREATE PROCEDURE [dbo].[Employee_INSERT]
    bq. @INSERTRECORD XML
    AS
    BEGIN
    bq. DECLARE @XDOC INT; \\ EXEC sp_xml_preparedocument @XDOC OUTPUT, @INSERTRECORD; \\ INSERT INTO [dbo].[REC_Employees] (
    bq. bq. [EMPTITLE], \\ [EMPFNAME], \\ [EMPLNAME], \\ [EMPDEPTID], \\ [EMPBEGINDATE], \\ [EMPACTIVE], \\ [EMPDATEADDED]
    bq. )
    bq. SELECT
    bq. bq. [EMPTITLE] = Title, \\ [EMPFNAME] = Firstname, \\ [EMPLNAME] = LastName, \\ [EMPDEPTID] = DepartmentID, \\ [EMPBEGINDATE] = StartDate, \\ [EMPACTIVE] = IsActive, \\ [EMPDATEADDED] = GETUTCDATE()
    bq. FROM
    bq. bq. OPENXML(@XDOC, '/EMPREC/Table', 2) \\ WITH (
    bq. bq. Title VARCHAR(10), \\ FirstName VARCHAR(50), \\ LastName VARCHAR(50), \\ DepartmentID INT, \\ StartDate DATETIME, \\ IsActive BIT
    bq. bq. );
    bq. EXEC sp_xml_removedocument @XDOC;
    END
    I would sincerely appreciate any help in this regard!
    PS - Please excuse the formatting!
    Much Thanks!
    regards
    shalan

    Assuming your table is named DESTINATION
    Name                                      Null?    Type
    TITLE                                              VARCHAR2(10)
    FIRSTNAME                                          VARCHAR2(50)
    LASTNAME                                           VARCHAR2(50)
    DEPARTMENT                                         NUMBER
    STARTDATE                                          DATE
    ISACTIVE                                           NUMBERYou can use a procedure like:
    create or replace
    procedure test (p_xml in xmltype)
    is
    begin
      insert into destination
      select title
           , firstname
           , lastname
           , department
           , to_date (startdate, 'yyyy-dd-mm hh24:mi:ss') startdate
           , isactive
        from (xmltable ('/EMPREC/Table' passing p_xml
                       columns title varchar2(5) path 'Title'
                             , firstname varchar2(10) path 'FirstName'
                             , lastname varchar2(10) path 'LastName'
                             , department number path 'Department'
                             , startdate varchar2(20) path 'StartDate'
                             , isactive number path 'IsActive'
                      ) temp
    end test;to create records in the table
    Removed a unnecessary SELECT FROM DUAL...
    Edited by: Alex Nuijten on Jan 19, 2009 2:24 PM

  • Need Help on Clearing my doubts

    Hi all,
    I have a question on running Apache and Tomcat with the use of mod_jk connector. With all the guide I have gathered from the web. Below are my configuration:
    Red Hat 8.0
    Apache 2.0.46 Using Port 80
    Tomcat 4.1.24 Using Port 8080
    J2SDK 1.4.1
    I have no problem running these two applications. However, I cannot seems to access the default 'example' folder that comes with tomcat on port 80. Accessing it on port 8080 has no problem for me.
    Please note that all my configuration is done with the help of the following url:
    http://www.johnturner.com/howto/rh72-howto.html
    According to one of the mail which I have received, I saw him putting this in apache : httpd.conf:
    ============================================================================
    JkWorkersFile /home/gmh2441/uPortal/Tomcat_4-0-4/conf/workers.properties
    JkLogFile /home/gmh2441/uPortal/Tomcat_4-0-4/logs/mod_jk.log
    JkLogLevel debug
    JkOptions +ForwardDirectories
    Alias /examples /home/gmh2441/uPortal/Tomcat_4-0-4/webapps/examples
    <Directory "/home/gmh2441/uPortal/Tomcat_4-0-4/webapps/examples">
    Options Indexes FollowSymLinks
    </Directory>
    <Location "/examples/WEB-INF/">
    AllowOverride None
    deny from all
    </Location>
    ============================================================================
    I tried putting the same thing into my httpd.conf, and now accessing the example folder on port 80 works!.
    My question is :
    1) Based on the above config, it is asking apache to 're-direct' this folder to the tomcat container and thus run on it. In that case, is apache pushing all the jobs to tomcat instead?. What if some of the files in this folder contains some html and is tomcat or apache processing it??
    2) Secondly, if I were to have more folders which I need to publish on the web, does it mean that I have to add or of it on this config file in order for it to work?
    3) I would appreciate if there are some kind soul could give me some URL on how to utilize apache tomcat to process both static and jsp content.
    Thanks in advance,
    Joe

    make sure in your tomcat/conf/server.xml file that the Connector for 8009 is not commented out.

  • Please help me for conducting auditing in Oracle

    Hello folks:
    I am trying to display some information about users and privileges in Oracle. I have been given a DBA privilege. The following are the error messages I got. I checked the syntax many times based on an Oracle administration book. It appears that nothing is wrong. Is it possible that I am not authorized to check out information about users, privilege, and auditing? Please let me know your comments at your earliest convenience!
    Many thanks in advance!
    Error message:
    SQL> Select grantee, privilege, admin_option
    2
    SQL> from sys.dba_sys_privs
    unknown command beginning "from sys.d..." - rest of line ignored.
    SQL>
    SQL> where grantee=’<oracle_uid>’;
    unknown command beginning "where gran..." - rest of line ignored.
    SQL>
    SQL> audit session fox, cat;
    audit session fox, cat
    ERROR at line 1:
    ORA-00933: SQL command not properly ended
    SQL> audit session eagle;
    audit session eagle
    ERROR at line 1:
    ORA-00933: SQL command not properly ended
    SQL> Select username, logoff_time
    2
    SQL> From sys.dba_audit_session;
    unknown command beginning "From sys.d..." - rest of line ignored.

    Hi,
    Type entire Statement in one line or prompted line :
    e.g.
    SVRMGR> Select grantee, privilege, admin_option from dba_sys_privs
    2> where grantee='SCOTT';
    Enjoy...

  • Please help me, a problem when install oracle 10g on the solaris 10

    currently, I am installing the oracle 10g on the solaris 10, I am using DHCP and
    my computer has no hostname, the following is copied from the 10g document,
    When you run Oracle Universal Installer, an error may occur if name resolution is not set up. To avoid this error, before you begin installation, you must ensure that host names are resolved only through the /etc/hosts file.
    To ensure that host names are resolved only through the /etc/hosts file:
    1.
    Verify that the /etc/hosts file is used for name resolution. You can do this by checking the hosts file entry in the nsswitch.conf file as follows:
    # cat /etc/nsswitch.conf | grep hosts
    The output of this command should contain an entry for files.
    2.
    Verify that the host name has been set by using the hostname command as follows:
    # hostname
    The output of this command should be similar to the following:
    myhost.mycomputer.com
    currently, when I use hostname command, it is unknown, what should I do to add
    my hostname? thanks

    Since this is related to Solaris, you will most likely get a better/faster response on a Sun Solaris forum rather than here.
    Srini

  • Please help ... config doubt

    I am using PA 30 to enter additional data of the employee.
    While entering his salary data, I am unable to save it and am getting the following error ...
    No entry in table T510 for the key 400101 M4 on 01.06.2006
    Message no. RP100
    Diagnosis
    The system has attempted to read a value from table T510 on 01.06.2006 for the key 400101 M4, but could not find it.
    Procedure
    This may be due to an error in the system settings. Please check your entries, and call your system administrator if necessary.
    where M4 is the pay group.
    What is the config change that needs to be dome to solve this problem ?
    Please advise.
    Regards,
    Schneider

    Hi Schneider,
    1.  Check the dates in table T510 (use TCode sm30)  make sure the "From" date lies within the T510 date range.
    2. "No entry in Table T510 for the key..... "'  check the specified key actually exists in tableT510.
    3. Check if you have assigned EG and Employee Subgroup and your payscale are in correct country grouping.
    Regards
    Ghouse

  • GC question....please Help me clear this mist....

    i am a newbie.....Could anyone lead me to to the answers for the following
    1) What is the difference between full and partial GC. What scenarios does it occur.
    2) How do we force a full GC.
    I use cmo.runGC() command in one of my scripts ...does this do a full GC.
    3) What are a good set of GC parameters for the startup scripts
    4)I have seen that when memory reaches > 95% then some how the next GC brings the heap back to 15 - 20 %. Is there a way to force this behaviour to kick in early like at 85%.
    5)What does some one do when the heap goes from 15 % to >95% back and forth ( even when the Xms and Xmx are 2.5gbs)..it doesn't go OOM though.
    Google search leads me to lots of confusion ....if any one can please refer me to a nice document abt GC and WL interrelations and all...which would give me a better understandfing, would be greatly appreciated...!!!

    Please stop crossposting this question.
    http://forum.java.sun.com/thread.jspa?threadID=5253698&messageID=10050532#10050532

  • Please help Installed apex 4.1 on Oracle 11g Xe can't create web services

    I went to Shared Components > Web Service references to create a web services reference using wsdl.
    My webservices are local to my network.
    I do not use proxy. Not using UDDI.
    I enter my WSDL URL but error message is returned
    The WSDL document was unretrievable because either the URL you supplied was invalid, your environment requires a valid proxy server address for HTTP requests and you have not defined one for this application, or a wallet needs to be configured for this instance of Application Express for HTTPS requests
    All I see are
    Amazon Web Services 3.0
    Google API Beta
    Q1. How can I register my wsdl url?
    Q2. How were amazon and google registered?
    Edited by: Oracle Primavera on Oct 4, 2011 5:29 PM

    Ensure that you can ping the web services server.
    Then check whether there is a valid/appropriate acl for the apex_040100 user;
    select * from dba_network_acl_privileges where principal like 'APEX%';
    Refer to Enable Network Services in Oracle Database 11g in the install manual.
    ~t

  • Please help, probleme de connection to database oracle and  java

    Ihave a problem to make connection to database Oracle when I use a simple code of java
    ======================
    import java.sql.*;
    public class Exemple1 {
    public static void main (String args[]) {
    Statement stmt = null;
    Connection con=null;
    try {
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    con = DriverManager.getConnection ("jdbc:oracle:thin:@localhost:1521:GB","scott","tiger");
    catch (Exception e) { System.out.println(e);        }
    =================
    I have :
    * Linux (Fedora core3).
    * Oracle 10g
    My var. environ.:
    * ORACLE_HOME=/u01/app/oracle/product/10.1.0/Db_1
    * PATH=$ORACLE_HOME/bin
    * CLASSPATH=$ORACLE_HOME/jdbc/lib/ojdbc14.jar
    the error is:
    Exception in thread "main" java.lang.NoClassDefFoundError: while resolving class: oracle.sql.CharacterSet
    at java.lang.VMClassLoader.resolveClass(java.lang.Class) (/usr/lib/libgcj.so.5.0.0)
    at java.lang.Class.initializeClass() (/usr/lib/libgcj.so.5.0.0)
    at JvResolvePoolEntry(java.lang.Class, int) (/usr/lib/libgcj.so.5.0.0)
    at oracle.jdbc.driver.DBConversion.DBConversion(short, short, short) (Unknown Source)
    at oracle.jdbc.driver.T4CConnection.connect(java.lang.String, java.util.Properties) (Unknown Source)
    at oracle.jdbc.driver.T4CConnection.logon() (Unknown Source)
    I don't know what's heppen exactly?

    If
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    is replaced
    with
    Class.forName("oracle.jdbc.driver.OracleDriver");does the java.lang.NoClassDefFoundError: while resolving class: oracle.sql.CharacterSet get generated?

  • How to disable 'Clear Record' option in Oracle Forms deployed in Orcl Apps

    Dear Members,
    I have developed a custom form which is deployed in Oracle Applications.
    In this form I want to disable the 'Clear Record' option to prevent users from clearing the record.
    Can any one please tell me how can I do it?
    Thanks in advance.
    Best Regards,
    Arun Reddy D.

    Hi,
    In your Forms---> trigger--> KEY-CLRREC-----> NULL;
    You cant clear any record.

  • Please Help me! Adobe Acrobat PDF fillable form questions!Desperate!!

    Hello!
    Hopefully can quickly answer these questions because I need to get this out by tomorow night :/ I am new to creating Adobe Acrobat Fillable forms, my yearbook adviser wanted to make the yearbook/journalism application a pdf fillable form so I went with the flow. Now I am having issues. I created it with Adobe Acrobat Pro 8.0 if that helps
    1. How do I get individual checks? they all check on the same answers, I need individuality lol. I know radio buttons is jus one chance so thats why I decided against them
    2. How does one do a submit button exactly?
    3. Somehow, I got to the step to distribute the forms but it says error licensing issue? Any ideas?
    Iplease give all an any thoughts on my questions you have no idea how much I appreciate any help!    

    If using check boxes, you need to give each a different field name if you want them to behave independent of one another. You can create a group where at most on in the group can be selected, similar to a radio button group, by giving each the same field name but different export value.
    For #2, it depends on the details of what you want to do. A PDF form can be set up to submit to a web server or to initiate an email with the form data for the entire form attached to the email. If you want Reader users to be able to save the filled-in form and/or submit the entire filled-in PDF, the form has to be Reader-enabled in Acrobat.
    For #3, please provide the exact error message.

  • Please Help a Novice: Saving a Filled Out Form

    How do I create a form that my staff can fill out, save, and send a finished uneditable version to our client?
    I'm a novice.  I've created the form (it's an estimate form) and my staff can fill it out but they can't seem to save and send.  We are on MAX OS 10.6

    I don't know if it is possible to directly import an Excel spreadsheet having drop down lists.
    However, there is a way to create a DDL on iPad Numbers:
    - tap on Cell
    - tap the paintbrush symbol (top right side)
    - choose "Format"
    - select "Pop-up menu"
    What I'd try
    - try to find an app / tool that can convert DDLs from XL to iOS Numbers
    - or enter the DDL manually, if it is not too much work.

  • How to configure and call Jasperreport from Oracle Forms 10gr2

    Dear All
    Please help me in configuring Jasperreport with Oracle Forms 10gr2 or AS.
    And also tell me how to call a report from Oracle Forms.
    Thanks

    I have a pro*c precompiled program on unix server (unix environment) and I want to execute or running it from oracle forms, release 4.5 on MS Windows.
    how do i execute or running it from oracle forms, release 4.5 ? please tell me what the command (syntaxs) is and all about it ?you can mail me at [email protected]
    thank's

Maybe you are looking for