ORA.01041:internal error-- IN R12

Hi All,
While testing oracle seeded reports we are getting this error. As per the error i have checked in the PL/SQL code, i found that no views are existed in the R12 which are existed in 11i.
EX..
AR_CUSTOMERS_V -- existing view in Oracle 11i
AR_CUSTOMERS -- existing view in Oracle R12
Could any one suggest me how i can achieve this issue.
Thanks,
RED.

There is no such a document which shows tables mapping between 11i and R12. However, to determine the difference between 11i and R12, you can refer to eTRM and the Content Document manuals, both should be helpful.
Applications Electronic Technical Reference Manuals (eTRM)
http://etrm.oracle.com
Note: 404152.1 - E-Business Suite Release 12: Release Content Documents
https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=404152.1

Similar Messages

  • ERROR: ORA-01041: internal error. hostdef extension does not exist

    Hi, I got the following error message when I tried to insert a row in table TBL_ORDER.
    ERROR:
    ORA-01041: internal error. hostdef extension does not exist
    INSERT into TBL_ORDER
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    We have Oracle version 8.1.5.o.2 and Linux version 6.1.
    Following are the tables, triggers, loadjava definition and source programs:
    TBL_ORDER
    1 ORDER_MEMBER_FIRM_ID VARCHAR2(4)
    2 ORDER_CLIENT_ID VARCHAR2(4)
    3 ORDER_BRANCH VARCHAR2(3)
    4 ORDER_SEQUENCE VARCHAR2(4)
    5 ORDER_EXCHANGE_ID VARCHAR2(3)
    6 ORDER_EXCHANGE_SEQUENCE VARCHAR2(7)
    7 ORDER_CREATE_DATE DATE
    8 ORDER_TYPE VARCHAR2(2)
    9 ORDER_STATUS VARCHAR2(1)
    10 ORDER_SYMBOL VARCHAR2(5)
    11 ORDER_SUFFIX VARCHAR2(14)
    12 ORDER_SIDE VARCHAR2(5)
    13 ORDER_PRICE VARCHAR2(20)
    14 ORDER_STOP_PRICE VARCHAR2(20)
    15 ORDER_PRICE_QUAL VARCHAR2(10)
    16 ORDER_QUANTITY VARCHAR2(6)
    17 ORDER_TIF VARCHAR2(4)
    18 ORDER_AON VARCHAR2(4)
    19 ORDER_DNR VARCHAR2(4)
    20 ORDER_CASH_NEXT_DAY VARCHAR2(4)
    21 ORDER_SELLER VARCHAR2(4)
    22 ORDER_ACCOUNT_TYPE VARCHAR2(4)
    23 ORDER_OS_TS VARCHAR2(4)
    24 ORDER_BOOTH_ID VARCHAR2(4)
    TBL_CMSOUT
    1 CMSOUT_MEMBER_FIRM_ID VARCHAR2(4)
    2 CMSOUT_CLIENT_ID VARCHAR2(4)
    3 CMSOUT_DATA VARCHAR2(120)
    trg_order.sql
    create or replace procedure OrderToCmsoutProc(cms_member_firm_id VARCHAR2,
    cms_client_id VARCHAR2,
    cms_branch VARCHAR2,
    cms_sequence VARCHAR2,
    cms_side VARCHAR2,
    cms_quantity VARCHAR2,
    cms_symbol VARCHAR2,
    cms_price VARCHAR2,
    cms_tif VARCHAR2,
    cms_type VARCHAR2)
    AUTHID CURRENT_USER
    as language java
    name 'OrderToCmsout.test(java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String)';
    show errors;
    create or replace trigger trg_order
    after insert on TBL_ORDER
    for each row
    CALL OrderToCmsoutProc (:new.order_member_firm_id,
    :new.order_client_id,
    :new.order_branch,
    :new.order_sequence,
    :new.order_side,
    :new.order_quantity,
    :new.order_symbol,
    :new.order_price,
    :new.order_tif,
    :new.order_type)
    commit;
    show errors;
    exit;
    trg_cmsout.sql
    create or replace procedure PackCmsoutSidProc(pck_member_firm_id VARCHAR2,
    pck_client_id VARCHAR2,
    pck_data VARCHAR2)
    AUTHID CURRENT_USER
    as language java
    name 'PackCmsoutSid.test(java.lang.String,
    java.lang.String,
    java.lang.String)';
    show errors;
    create or replace trigger trg_cmsout
    after insert on TBL_CMSOUT
    for each row
    CALL PackCmsoutSidProc (:new.cmsout_member_firm_id,
    :new.cmsout_client_id,
    :new.cmsout_data)
    commit;
    show errors;
    exit;
    loadORDERjava
    loadjava -r -f -o -user userid/pswd OrderToCmsout.java
    loadCMSOUTjava
    loadjava -r -f -o -user userid/pswd PackCmsoutSid.java
    OrderToCmsout.java
    import java.sql.*;
    import java.lang.*;
    import java.io.*;
    import oracle.jdbc.driver.*;
    public class OrderToCmsout {
    public static void main(String args[]) {
    try {
    test (args[0],args[1],args[2],args[3],args[4],
    args[5],args[6],args[7],args[8],args[9]);
    catch (Exception e) {
    System.err.println(e);
    } //catch
    } // end main
    public static void test ( String parm_member_firm_id,
    String parm_client_id,
    String parm_branch,
    String parm_sequence,
    String parm_side,
    String parm_quantity,
    String parm_symbol,
    String parm_price,
    String parm_tif,
    String parm_type)
    throws SQLException
    Connection conn = new OracleDriver().defaultConnection();
    PreparedStatement stmt2;
    try {
    stmt2= conn.prepareStatement
    ("INSERT INTO TBL_CMSOUT VALUES (?, ?, ?)");
    String datastring = parm_member_firm_id + "\\~" +
    parm_branch + " " +
    parm_sequence + "\\~" + "\\~" +
    parm_side + "\\~" +
    parm_quantity + " " +
    parm_symbol + " " +
    parm_price + "\\~" +
    parm_tif + " " +
    parm_type + "\\~";
    stmt2.setString(1, parm_member_firm_id);
    stmt2.setString(2, parm_client_id);
    stmt2.setString(3, datastring);
    stmt2.executeUpdate();
    stmt2.close();
    return;
    } //try
    catch (Exception e) {
    System.err.println(e);
    } //catch
    PackCmsoutSid.java
    import java.sql.*;
    import java.lang.*;
    import java.io.*;
    import oracle.jdbc.driver.*;
    public class PackCmsoutSid {
    public static void main(String args[]) {
    try { test(args[0],args[1],args[2]);
    catch (Exception e) {
    System.err.println(e);
    } //catch
    } // end main
    public static void test( String parm_member_firm_id,
    String parm_client_id,
    String parm_data)
    throws SQLException
    try {
    Connection conn = new OracleDriver().defaultConnection();
    PreparedStatement stmt1 = conn.prepareStatement
    ("SELECT sid_session_id " +
    "FROM tbl_sid " +
    "WHERE sid_member_firm_id = ? and " +
    "sid_client_id = ?");
    stmt1.setString(1, parm_member_firm_id);
    stmt1.setString(2, parm_client_id);
    ResultSet rs1 = stmt1.executeQuery();
    while (rs1.next ()) {
    String session_id_found = rs1.getString
    ("sid_session_id");
    CallableStatement pack_pipe = conn.prepareCall
    ("{call DBMS_PIPE.PACK_MESSAGE(?)}");
    pack_pipe.setString(1, parm_data);
    pack_pipe.execute();
    CallableStatement send_pipe = conn.prepareCall
    ("{? = call DBMS_PIPE.SEND_MESSAGE(?)}");
    send_pipe.registerOutParameter
    (1, java.sql.Types.INTEGER);
    send_pipe.setString (2, session_id_found);
    send_pipe.execute();
    } //while
    stmt1.close();
    conn.close();
    } //try
    catch (Exception e) {
    System.err.println(e);
    } //catch
    } //test
    } //PackCmsoutSid
    Thanks in advance for your help
    Vinicio

    you should post this question on the Application Server forum.
    --Olaf                                                                                                                                                                                       

  • ORA-01041: internal error. hostdef extension doesn't exist

    hi all,
    i am presently working on logical standby database
    but i am facing a problem from primary database
    " select * from V$ARCHIVE_DEST"
    LOG_ARCHIVE_DEST_1 valid
    LOG_ARCHIVE_DEST_2 ERROR ORA-01041: internal error. hostdef extension doesn't exist
    at present database not synchronizing
    please help
    in alert.log file at primary
    ARC9: Attempting destination LOG_ARCHIVE_DEST_2 network reconnect (1041)
    ARC9: Destination LOG_ARCHIVE_DEST_2 network reconnect abandoned
    PING[ARC9]: Error 1041 when pinging standby 'standby server'.
    Standby database is in running mode & well connected with network
    Vaibhav
    Edited by: Vaibhav Dixit on Oct 20, 2011 4:43 PM
    Edited by: Vaibhav Dixit on Oct 20, 2011 4:43 PM

    okkk
    thanks for reply
    i m also getting some problem in standby database in just 2-3 days
    error is ->
    ORA-03135: connection lost contact
    LOG_ARCHIVE_DEST_2 ERROR ORA-01041: internal error. hostdef extension doesn't exist
    then
    i have passed some command on primary db & now it's working but i don't know it's good for db or not
    ALTER SYSTEM SET log_archive_dest_state_2=’DEFER’ SCOPE=BOTH;
    ALTER SYSTEM SET log_archive_dest_state_2=’ENABLE’ SCOPE=BOTH;
    please give a idea to resolve this problem
    regards
    Vaibhav

  • ORA-01041: internal error. hostdef doesn't exist

    Linux Advanced Server + Oracle 9.2.0.1.0
    Trying to sqlplus
    conn / as sysdba
    Error
    ORA-01041: internal error. hostdef doesn't exist
    What does it mean ? what I should do to be able to connect to the database.
    TNSNAMES.ora seems fine
    Linstener is up and running
    Any ideas? Thanks

    you might be installing the Softawre across the network and
    after some time your connection get disconnected.
    or you checkout the resouresc if you are doing in the server
    putting cd on the server.

  • ORA-01041: internal error. hostdef

    Hi
    I install oracle 9i
    I selected the options to install
    the Enterprise version with a General Purpose started database.
    The installation went through smoothly until it reached the final step of using
    the Oracle Database Configuration Assistant. The following are the 4 steps for
    this phase :
    1. Copying database files
    2. Initializing database
    3. Creating and Staring Oracle instance
    4. Completing Database Creation
    The installation completed the first 2 steps successfully. During the 3rd step, it
    gives the error message :
    ORA-01041: internal error. hostdef extension doesn't exist
    Any ideas on what could be causing this ?
    what should i do to resolve this error?
    Thanks

    From Oracle documentation
    "ORA-01041 internal error. hostdef extension doesn't exist
    Cause: Pointer to HSTDEF extension in HSTDEF is null.
    Action: Contact Oracle Support Services."

  • ORA-01041: internal error. hostdef extension doesn't

    Hi,
    I am getting the followin error message when i am trying to run a sql script.
    select
    ERROR at line 1:
    ORA-01041: internal error. hostdef extension doesn't exist
    Pls let me know the remedy
    Thanks

    Hi !
    I try to create database by Database Configuration Assistant in "windows 2000 advance server, ORACLE9i". Process in 12% that error appear.
    when i Ignore this error the ORA-240324: Service handle not initialized appearance
    Please Help me to fix that error !

  • ORA-01041: internal error. hostdef extension doesn't exist  in forms 10g

    While Compiling the forms 10g I'm getting this error, pls help me on this problem.

    Check this link... ORA-01041: internal error. Hostdef extension doesn't exist
    hope this helps

  • FND-UT-CMT: ORA-01041: internal error. hostdef extension doesn't exist

    I am applying patch PO RUP 22, after merging patch->10207297,11669329,7632187,9878808. However for 1 file -INVITPSB.pls, i am getting status running, but in the adorker log file shows ->
    AD Worker error:
    The following ORACLE error:
    ORA-03114: not connected to ORACLE
    occurred while executing the SQL statement:
    UPDATE fnd_install_processes
    SET skip_flag = ''
    WHERE worker_id = 1
    Error comitting pending transactions and closing Pro*C connection.
    The error is:
    FND-UT-CMT: ORA-01041: internal error. hostdef extension doesn't exist
    AD Worker is exiting with failure.
    Any ideas of what can be done?

    HI,
    Please check if solution in below metalink note helps:-
    Patch 4143498 Fails With ORA-01041,ORA-03114 Errors On Iscrf70b.Pls ORA-01041 [ID 340238.1]
    Thanks,
    JD

  • ORA-01041: Internal Error. HOSTDEF extension does not exist

    Hi all,
    In the database I provided with the commando
    ALTER DATABASE BACKUP CONTROLFILE TO TRACE; a trace file with the Script for the production my controlfile. Now I would like to test this Script. I have install a new test DB. Then I shutdown the database and renamed the control files - to see particularly over, which error message become there indicated. Afterwards I wanted to start the Script from the trace file to create a control file. But after I STARTUP MOUNT; in SQL*Plus entered, I become these error messages:
    LRM-00109: could not open parameter file 'C:\Oracle\Ora920\DATABASE\INIT%ORACLE_SID%.ORA'
    ORA-01078: failure in processing system parameters
    How have I understood, Oracle tries to find the init file local on my machine. Those lies however on the server. Then I entered:
    startup pfile=\\server1\oracleserver\admin\orcltest\pfile\initorcltest.ora
    Can I enter a file, which does not lie locally on my computer with the instruction STARTUP pfile =...? After I made that, I become only this error message:
    ORA-01041 internal error. hostdef extension doesn't exist
    And the database is closed. I can't connect with it.
    Regards
    Leonid Pavlov

    As far as I know, if you want to start/stop Oracle through sqlplus you need to be using a copy of sqlplus on the server. If your server is an *NIX box, then you can telnet to the server and run sqlplus.  If your server is windows then you will need something like VNC, PC-Anywhere or sneakernet to physically attach to the server.
    HTH
    John

  • ORA-00600: internal error code, arguments: [729], [1428], [space leak], [],

    Hi All
    iam getting very frequent error in alert log:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-04031: unable to allocate 4132 bytes of shared memory ("shared pool","select name,online$,contents...","sga heap(1,0)","library cache")
    ORA-04031: unable to allocate 4132 bytes of shared memory ("shared pool","unknown object","sga heap(1,0)","library cache")
    ORA-04031: unable to allocate 4132 bytes of shared memory ("shared pool","unknown object","sga heap(1,0)","library cache")
    Wed May 9 14:29:37 2012
    Errors in file /prddb10g/oraprd/db/tech_st/10.2.0/admin/PROD_dbprd/udump/prod_ora_25994.trc:
    ORA-00600: internal error code, arguments: [729], [476], [space leak], [], [], [], [], []
    Wed May 9 14:30:29 2012
    Errors in file /prddb10g/oraprd/db/tech_st/10.2.0/admin/PROD_dbprd/udump/prod_ora_29752.trc:
    ORA-00600: internal error code, arguments: [729], [1428], [space leak], [], [], [], [], []
    The database version is 10.2.0.4and application version R12.0.6
    Regards
    Shaik

    ORA-00600: internal error code, You are getting oracle internal error(ORA 600) which mean you could need to work wiht oracle support team. Please see below note, if its not help than i suggest log a sr:
    Troubleshoot an ORA-600 or ORA-7445 Error Using the Error Lookup Tool [ID 153788.1]
    PS: For your issue I belve you need to increase SGA. Please also see http://forums.oracle.com/forums/thread.jspa?messageID=3924102#3924102
    Regard
    Helios

  • ORA-00600: internal error code, arguments: [qertbFetchByRowID], [], [], [],

    HI
    This is the error i m encountering..It doesnt let the R12 apps start :
    Errors in file /d01/oracle/PROD1/db/tech_st/10.2.0/admin/PROD1_prod1/udump/*prod1_ora_2276.trc*:
    ORA-00600: internal error code, arguments: [qertbFetchByRowID], [], [], [], [], [], [], []
    Database opens and shutdown normally but alert log has this error
    I searched for this but couldnt actually analyse the symptoms or the causes
    I went through this prod1_ora_2276.trc but not so good at interpreting these files
    But is surely is a database error or can it be apps error too
    waiting for your opinion
    Muhammed

    ORA-600 is Oracle internal error. You need to work with Oracle support to solve the problem
    Or you can use Metalink ORA-600 or ORA-7445 Error Using the Error Lookup Tool to find out if this is known bug.

  • ORA-00600: internal error code, arguments:[k2gUGPC: ptcnt = tcnt] in 11gR2

    Dear Friends,
    we are using 11.2.0.2 RAC database (e-biz database) on solaris sparc (64 bit) and we are getting errors on alert log:
    ORA-00600: internal error code, arguments: [k2gUGPC: ptcnt >= tcnt],
    Please let me know the fix.
    Recent Change:
    Upgrade 10.2.0.2 RAC to 11.2.0.2 RAC during the migration of 11.5.10.2 to R12.1.3
    Errors:
    Sun May 20 06:05:16 2012
    Non critical error ORA-48913 caught while writing to trace file "/oradpw/db/diag/rdbms/pdpw/PDPW1/incident/incdir_112309/PDPW1_ora_22527_i112309.trc"
    Error message: ORA-48913: Writing into trace file failed, file size limit [10485760] reached
    Writing to the above trace file is disabled for now on...
    Use ADRCI or Support Workbench to package the incident.
    See Note 411.1 at My Oracle Support for error and packaging details.
    Error 600 trapped in 2PC on transaction 128.33.6061. Cleaning up.
    Error stack returned to user:
    ORA-00600: internal error code, arguments: [k2gUGPC: ptcnt >= tcnt], [], [], [], [], [], [], [], [], [], [], []
    Errors in file /oradpw/db/diag/rdbms/pdpw/PDPW1/trace/PDPW1_ora_22527.trc (incident=112310):
    ORA-00603: ORACLE server session terminated by fatal error
    ORA-00600: internal error code, arguments: [k2gUGPC: ptcnt >= tcnt], [], [], [], [], [], [], [], [], [], [], []
    Incident details in: /oradpw/db/diag/rdbms/pdpw/PDPW1/incident/incdir_112310/PDPW1_ora_22527_i112310.trc
    Sun May 20 06:05:22 2012
    Dumping diagnostic data in directory=[cdmp_20120520060522], requested by (instance=1, osid=22527), summary=[incident=112309].
    Sun May 20 06:05:22 2012
    Sweep [inc][112310]: completed
    Sweep [inc][112309]: completed
    Sweep [inc2][112309]: completed
    opiodr aborting process unknown ospid (22527) as a result of ORA-603
    Dumping diagnostic data in directory=[cdmp_20120520060525], requested by (instance=1, osid=22527), summary=[incident=112310].
    Sun May 20 06:06:22 2012
    Sweep [inc2][112310]: completed
    Trace file /oradpw/db/diag/rdbms/pdpw/PDPW1/trace/PDPW1_ora_22527.trc
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, Real Application Clusters, OLAP, Data Mining
    and Real Application Testing options
    ORACLE_HOME = /oradpw/db/tech_st/11.2.0
    System name: SunOS
    Node name: jxebpdb1
    Release: 5.10
    Version: Generic_142909-17
    Machine: sun4u
    Instance name: PDPW1
    Redo thread mounted by this instance: 1
    Oracle process number: 36
    Unix process pid: 22527, image: oracle@jxebpdb1
    *** 2012-05-20 06:04:17.040
    *** SESSION ID:(263.3301) 2012-05-20 06:04:17.040
    *** CLIENT ID:(SCHEDULE_MANAGER) 2012-05-20 06:04:17.040
    *** SERVICE NAME:(PDPW) 2012-05-20 06:04:17.040
    *** MODULE NAME:(XXIMSPULLVAARINV) 2012-05-20 06:04:17.040
    *** ACTION NAME:(Concurrent Request) 2012-05-20 06:04:17.040
    Incident 112309 created, dump file: /oradpw/db/diag/rdbms/pdpw/PDPW1/incident/incdir_112309/PDPW1_ora_22527_i112309.trc
    ORA-00600: internal error code, arguments: [k2gUGPC: ptcnt >= tcnt], [], [], [], [], [], [], [], [], [], [], []
    *** 2012-05-20 06:05:22.159
    Incident 112310 created, dump file: /oradpw/db/diag/rdbms/pdpw/PDPW1/incident/incdir_112310/PDPW1_ora_22527_i112310.trc
    ORA-00603: ORACLE server session terminated by fatal error
    ORA-00600: internal error code, arguments: [k2gUGPC: ptcnt >= tcnt], [], [], [], [], [], [], [], [], [], [], []
    kgefec: fatal error 0
    Regards,
    DB

    -Try to search on ORA-600/ORA-7445 Error Look-up Tool [ID 153788.1]
    -Raise SR to oracle support if no detail found on above tool.

  • ORA-00600: internal error code, arguments: [ktsircinfo_num1]

    While taking export of a table received EXP error and while dropping/selecting the same gor ora-600 errors.
    . . exporting table TEST4
    EXP-00003: no storage definition found for segment(29, 371385)
    SQL >Drop table test4 cascade;
    ORA-00600: internal error code, arguments: [ktsircinfo_num1], [29], [29], [371385], [], [], [], []
    sql> Desc test4;
    ORA-00600: internal error code, arguments: [ktsircinfo_num1], [29], [29], [371385], [], [], [], []
    I dont want to log TAR with oracle right now... I tried dropping and recreating Undo tablespace but still did not help much . Database version is 9204

    hi
    read metalink ID - 153788.1
    CHeers

  • ORA-00600: internal error when delete master rows in a materialized view

    I have a materialized view in 11g2 on Redhat 5, defined asCREATE MATERIALIZED VIEW mv_idty
    PARALLEL BUILD IMMEDIATE REFRESH FAST ON COMMIT ENABLE QUERY REWRITE AS
    select IDTY_NAME_FIRST,IDTY_NAME_MIDDLE,IDTY_NAME_LAST,IDTY_NAME_SUFFIX,IDTY_SSN,
      IDTY_DR_LIC_NUM,IDTY_DR_LIC_STA,x.person_id,i.rowid i_rowid,x.rowid x_rowid
      from idty i,person_x_idty x where x.idty_id=i.idty_id; I deleted a few rows from the master tables and get error13:58:48 SQL> delete idty where  idty_id like 'test_row%' ;
    7 rows deleted.
    13:58:52 SQL> commit;
    commit
    ERROR at line 1:
    ORA-12008: error in materialized view refresh path
    ORA-00600: internal error code, arguments: [kkzfrfajv_markdml-1], [], [], [], [], [], [], [], [], [], [], [] I have other materialized views and they all delete master OK. This is the simplest one but causes problem. HELP!
    Edited by: user13148231 on Aug 11, 2010 5:45 PM

    Checked note 743766.1. It is not 100% relevant as it is about import, but the query is usefulselect sowner, vname, mowner, master from sys.snap_reftime$It reveals the materialized view some how based on other schema.
    Recreate the materialized view. problem solved.

  • ORA-00600: internal error code, arguments: [unable to load XDB library]

    hi everybody ;
    i have 9.2.0.7 db runs on SLES9 on host A. and i take full rman database backup to make a new database on different host ( host B ) with different file structure. ( sid is the same ) i had already 1 database on host B. after this duplicate now there are 2 database on host B.
    i take daily full database rman backup on the new host for my new database and there is no problem. when i try to take extra full export backup i get an error ;
    Dynamic link error: libxdb.so: cannot open shared object file: No such file or directory
    *** 2010-08-05 09:46:12.868
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [unable to load XDB library], [], [], [], [], [], [], []
    as i search ; i have to stop the database and listener and set the LD_LIBRARY_PATH variable. how can i make this without make any mistake for the first database runs on Host B.
    because 2 database must be up and running on host B. can you explaın these operation step by step ?
    thank you ....

    craft wrote:
    any idea ?
    >any idea ?
    your database is out off support you should consider to upgrade. ORA-00600 indicate for bug

Maybe you are looking for

  • How to send an e-mail from a store procedure

    Hi, I need to find a way to send an e-mail from an store procedure every time a table is fetched. Is there a way to accomplish this task?. The e-mail should only display the rows in the table (no more than 5 rows) on a daily basis. Any help or exampl

  • Trackpad gestures in Safari for Windows

    Basically I'm one of those mac users who still has just 1 windows pc left and it's become a bit mac already. I'm running windows 7 and primarily use it for software that doesn't run on a mac, or games that myself and my nephew play from time to time.

  • Help with the check box.

    Hi, I have a question with the Checkbox. I am using Apex 4.0. I have 5 checkboxes and using the Lovs I have given values to each check box. When I select the checkboxes and submit, the values are inserted into a single column. Example Consider CB as

  • Can we move InfoPath forms from development site to production site?

    From the question I mean only the form, not the site itself. Is there any way to move a InfoPath form from SharePoint development site to production site? Thanks,

  • OID 10g and AD 2008

    Hello, We are facing a dilema and I am hoping someone else has gone through this and could offer a suggestion. We use OID 10g as part of our single sign on that authenticates our Oracle apps 11i based app with AD 2003 currently, using DIP. The plan i