Oracle forms6i tutorials

Hi There,
I am new to this forum.You guys do a wonderful job here. Wanted to know if there are any tutorials for learning Oracle forms6i(I mean online tutorials/manuals).I am new to Oracle forms.
Any help appreciated,
Thanks,
Nisha

Karthik Perumal wrote:
Hi All,
Can you suggest some websites for Oracle 10G tutorials?
Thanks and Regards,
Karthik Perumalhttp://www.lmgtfy.com/?q=Oracle+10G+tutorials

Similar Messages

  • Urgent : Regarding Oracle Applications tutorials for beginners

    Hi ,
    This is vamsi krishna. I am new to oracle applications. I am looking for material which contains different examples for:
    1) Reports and various types of reports
    2) Forms and forms customization(all types of examples)
    3) Detailed examples of all types of canvases in forms
    4) All the cycles and interface programs that are called in each cycle. for example in an O2c cycle what are the tables that are effected and what all interface programs or api's that are called in between.
    Please send me the links to forums where i can easy learn all these.
    Please send any required material for all these to [email protected]
    Thanks in Advance.
    Vamsi Krishna G

    Hi,
    Refer to Oracle Application Developer Guide.
    Applications Releases 11i and 12
    http://www.oracle.com/technology/documentation/applications.html
    In addition, the following links should be helpful.
    Oracle Apps Tutorials
    http://www.exforsys.com/tutorials/oracle-apps.html
    eTRM
    http://etrm.oracle.com
    Oracle Integration Repository
    http://irep.oracle.com/
    Regards,
    Hussein

  • How to create menus in oracle forms6i?

    hello all,
    I want to create menu option in oracle forms6i..Is it possible? then how to create menus in a frame? pls help me..
    USER MANAGEMENT-------------->this is main menu.under this i want following
    --------->1.ADD USER
    ---------->2.EDIT USER
    ----------->3.DROP USER

    Hi Balraj
    Try to read this & implement it
    http://dbaforums.org/oracle/index.php?showtopic=2031
    u have also menu FREE sample as Demo Forms6i pls down load
    http://www.oracle.com/technology/sample_code/products/forms/6idemos.html
    Or download it directly as in this Thread Francois posted Directly...
    Forms6 : default menus menudef.mmb and menudefs.mmb
    Regards,
    Abdetu...
    Edited by: Abdetu on Jan 23, 2011 11:31 PM

  • Oracle Forms6i Query Performance issue - Urgent

    Hi All,
    I'm using oracle forms6i and Oracle DB 9i.
    I'm facing the performance issue in query forms.
    In detail block form taking long time to load the data.
    Form contains 2 non data blocks
    1.HDR - 3 input parameters
    2.DETAILS - Grid - Details
    HDR input fields
    1.Company Code
    2.Company ACccount No
    3.Customer Name
    Details Grid is displayed the details.
    Here there are 2 tables involved
    1.Table1 - 1 crore records
    2.Table2 - 4 crore records
    In form procedure one cursor bulid and fetch is done directly and assign the values to form block fields.
    Below i've pasted the query
    SELECT
    t1.entry_dt,
    t2.authoriser_code,
    t1.company_code,
    t1.company_ac_no
    initcap(t1.customer_name) cust_name,
    t2.agreement_no
    t1.customer_id
    FROM
    table1 t1,
    table2 t2
    WHERE
    (t2.trans_no = t1.trans_no or t2.temp_trans_no = t1.trans_no)
    AND t1.company_code = nvl(:hdr.l_company_code,t1.company_code)
    AND t1.company_ac_no = nvl(:hdr.l_company_ac_no,t1.company_ac_no)
    AND lower(t1.customer_name) LIKE lower(nvl('%'||:hdr.l_customer_name||'%' ,t1.customer_name))
    GROUP BY
    t2.authoriser_code,
    t1.company_code,
    t1.company_ac_no,
    t1.customer_name,
    t2.agreement_no,
    t1.customer_id;
    Where Clause Analysis
    1.Condition 1 OR operator (In table2 two different columbs are compared with one column in table)
    2.Like Operator
    3.All the columns has index but not used properly always full table scan
    4.NVL chk
    5.If i run the qry in backend means coming little fast,front end very slow
    Input Parameter - Query retrival data - limit
    Only compnay code means record count will be 50 - 500 records -
    Only compnay code and comp ac number means record count will be 1-5
    Only compnay code,omp ac number and customer name means record count will be 1 - 5 records
    I have tried following ways
    1.Split the query using UNIOIN (OR clause seaparted) - Nested loops COST 850 , Nested loops COST 750 - index by row id - cost is 160 ,index by row id - cost is 152 full table access.................................
    2.Dynamic SQL build - 'DBMS_SQL.DEFINE COLUMN .....
    3.Given onlu one input parameter - Nested loops COST 780 , Nested loops COST 780 - index by row id - cost is 148 ,index by row id - cost is 152 full table access.................................
    Still im facing the same issue.
    Please help me out on this.
    Thanks and Regards,
    Oracle1001

    Sudhakar P wrote:
    the below query its take more than one minute while updating the records through pro*c.
    Execute 562238 161.03 174.15 7 3932677 2274833 562238Hi Sudhakar,
    If the database is capable of executing 562,238 update statements in one minute, then that's pretty good, don't you think.
    Your real problem is in the application code which probably looks something like this in pseudocode:
    for i in (some set containing 562,238 rows)
    loop
      <your update statement with all the bind variables>
    end loop;If you transform your code to do a single update statement, you'll gain a lot of seconds.
    Regards,
    Rob.

  • Oracle-bpm-tutorials-hands-on-labs

    hey all
    if you are looking for tutorials on Oracle BPM; check this link it containts many of the basic BPM tutorials
    http://orabpm.blogspot.com/2009/03/oracle-bpm-tutorials-hands-on-labs.html
    Maged
    http://orabpm.blogspot.com/

    Thank you

  • Oracle Forms6i Implementation - help needed

    I have a table structure like below.
    CREATE TABLE test
    test_seq_no NUMBER,               -- Primary key
    test_case_id VARCHAR2 (15) NOT NULL,
    test_dct_seq_no NUMBER (4),
    test_atyp_code VARCHAR2 (6) NOT NULL,
    test_pid NUMBER (8) NOT NULL,
    test_act_text VARCHAR2 (100),
    test_due_date DATE,
    test_assn_date DATE DEFAULT SYSDATE,
    test_assn_user_id VARCHAR2 (30) DEFAULT USER
    TEST_CASE_ID, TEST_DCT_SEQ_NO, TEST_ATYP_CODE and TEST_PID fields are coming from 4 different tables. Users need a screen with two blocks for data entry into this table.
    Upper block will have following fields in a tabular format with maximum of 4 records.
    TEST_ATYP_CODE,      TEST_PID,     TEST_PID_DESC,     FREE_TEXT_FIELD,     DUE_DATE
    And in 2nd block, they have following in tabular format with 10 records.
    TEST_CASE_ID,      TEST_CASE_DESC,      TEST_DCT_SEQ_NO,     TEST_DCT_SEQ_NO_DESC
    They want to assign action type (TEST_ATYP_CODE) to users (TEST_PID) in 1st block and then create multilple CASE entries into 2nd block.
    e.g. If they have 2 records entered in assignment block (first block) and 4 records in 2nd block, it should save 2x4 = 8 records into the table.. meaning all
    values in each record of 1st block are applied to all records in the 2nd block.
    They also want to query on this form and want to re-assign or change the ACTIONS or ASSIGNEES or CASES on multilple records in one go.
    How can I do this in Oracle Forms6i?
    I am thinking to suggest them to change screen layout to have all table fields in ONE block (since they are from ONE table) and let them set the DEFAULT values in 1st control block which are used for creating 2nd block entries.
    Please suggest any ideas for implementation? Like, how many data blocks, control blocks and how to handle query, inserts etc.
    Thanks!

    Thank you for replying.
    Well, table structure is normalized and even if i further split the table, it can become master-detail but they don't want to save the details for each master. They want to enter multiple masters and multiple details in one go. e.g. if they entered 2 records in master block and 4 records in details, it should save 2x4 = 8 records at once.
    You are right, it can work first time... I can create two blocks. One control block and one DB detail block and for each control record I can save all details and then go to next control record and save all details for it and so on. But how will I keep track if they need to change just one instance of either control or detail.
    Another possibility would be that they select a control record for which they want to enter details and let system populate the control values into detail and they enter rest of details. But this will require more data entry to create details for each control record.
    Any ideas are welcome!

  • Java bean from oracle Forms6i

    Hi Guys,
    I am calling java bean from oracle Forms6i (implementation
    class property set to bean class). This java bean in turn
    calling some JNI methods written in C. The application server
    (Forms6i) is hanging at the point of calling the JNI method.
    Is oracle Forms6i supports all java functionality (JNI here)
    and if so how to solve the problem ?
    Any pointers or tips in this regard is highly appreciated ?
    Thanks & Regards
    Chandra Mohan

    To call Java from forms:
    look at the technical documents on Java integration at
    http://otn.oracle.com/products/forms
    and also look at the Javabeans and PJC samples in the sample
    code section of Forms on OTN.
    Creating a random number using a java class is an excelent
    example of how to use Java with forms.

  • Get data AVERY weighing machine  my oracle forms6i

    Hi Friends,
    Any idea to capture data from com port, where attached AVERY weighing machine attached, now is delviering "weight" into Hyperterminal from there im capturing to text file then getting into Oracle forms6i forms. is there any idea to get this directly yto forms without all this..
    thanks in advance

    Didn't you post this message already?? We need to know what interface your machine exposes - is it C, Java, VB?
    Grant Ronald
    Forms Product Management

  • IS Yahoo Messenger applicable with Oracle Forms6i?

    Hi guys,
    Im doing a project regarding the Job Request module using Orcle forms6i. This module will be using by a lot of users per Departments and i want every transactions..every job request entered would be well monitored between me and my users. Im planning to use the Yahoo Messenger to be part of it. I want every transactions posted or approved would be monitor through this Yahoo Messenger. Theres a message coming from this yahoo messenger "that certain transactions was Approved by a USER". Is this possible to use the Yahoo Messenger with Oracle Forms6i?
    Thank you.
    Lala

    I know there is a 'Oracle XMPP/Jabber Instant Messenger' available for the Oracle database on sourceforge.net. You can then sent message from the database to i.e. a google talk client.
    And I also added a pluggable java component inside Oracle Forms 10gR2. [http://www.screentoaster.com/watch/stUEJUR0NIR1pbR19bWlpYU1dS/chat_bean_inside_oracle_forms|http://www.screentoaster.com/watch/stUEJUR0NIR1pbR19bWlpYU1dS/chat_bean_inside_oracle_forms]but I don't know if it can be added to Forms 6i.
    Please mark if it helps.

  • Oracle Forms6i  with Reports10

    Dear all,
    has anybody experiences using Oracle Forms6i together with Reports10?
    Actually we use Forms and Reports6i. But we have to switch to Reports10. Can anyone tell me how I can call the reports now from my Forms Application?
    Actually we start the reports from the application with "'rwrun60...".
    Thanks in advance
    Yvonne

    hello,
    or this article on metalink
    Note:207396.1
    How to Run Reports From Forms 9i / 10g Using RUN_REPORT_OBJECT?
    regards

  • How to Connect Oracle Forms6i with oracle 10g

    Hi,
    I'm using oracle 10g database in my xp operating system.. I installed forms6i on my system and edit the tnsname.ora file in the forms installation folder (C:\orant\NET80\ADMIN\tnsnames.ora) with local database tnsnamesora details..
    But still I cant connect from forms with local database.. it shows the error ''Oracle Forms Designer has encountered a problem and needs to close. We are sorry for the inconvenience.''
    pls anyone help me

    Yes. Long time ago I knew that this is not supported. See metalink/support if there is now any patch for this.

  • Oracle adf tutorials

    Hi all i'm newbie in oracle adf framework and i'm interested to learn this technology,but i'm unable to find comprehensive tutorials to learn adf components.
    It'ld be quite helpful if someone can tell me where to get best tutorials that includes sample applications .
    Thanks in advance.

    You can also refer to the following How-Tos:
    http://www.oracle.com/technology/products/jdev/howtos/index1013.html
    and the following tutorials:
    http://www.oracle.com/technology/obe/obe1013jdev/index.htm
    and the following online demos:
    http://www.oracle.com/technology/products/jdev/viewlets/viewlet1013.html
    Hope this helps.
    Dana

  • Oracle SQL Tutorials

    Hey, I've been contacted by a job recruiter about an entry level position requiring Java, Oracle SQL, and Javascript knowledge. I'm currently studying for the SCJP6 test, but are there any decent free crash courses on Oracle SQL? I have previously taken a 200 level and a 400 level college course on SQL syntax, I'm just really looking for a few tutorials that can sure up my knowledge of the basics and beyond. So far I've been going through "http://st-curriculum.oracle.com/tutorial/SQLDeveloper/index.htm", but I have a feeling I will need more than that to get me back up to speed. Any suggestions?...

    >
    Hi, and welcome to the forums.
    Hey, I've been contacted by a job recruiter about an entry level position
    requiring Java, Oracle SQL, and Javascript knowledge. I'm currently studying
    for the SCJP6 test, but are there any decent free crash courses on Oracle SQL? You could do worse than follow the gurus here - particularly anything to
    do with SQL and strings, SQL and dates and SQL and Regular Expressions
    inter alia. CTEs are also of interest. Performance is also a biggie.
    But, always remember, that while Oracle extensions are interesting and
    powerful, you MUST get the basics right.
    Look at the posts here - try and answer them yourself and then check back to see
    if you've got it right.
    HTH,
    Paul...

  • How to call a calander in oracle forms6i

    Oracle Forms 6i
    Hai All
    How to call a calander for a botton.I my form I have a button called process date When i press a button the calander need to display and select a date and i need to the process date. How can i do this Pls tell Me
    Any help is higly Appricateable
    Thanks & Regards
    Srikkanth.M

    Hello,
    In the forms 6i the installation contains the demo form. In that demo form you can see the calender example and many more. It is very easy to implement through demo form. Otherwise see the below link its java based.
    Calendar utility in Forms?
    Also this link...
    http://www.oracle.com/technology/sample_code/products/forms/extracted/calendar/readme.html
    -Ammad
    Edited by: Ammad Ahmed on Apr 19, 2010 9:04 AM
    Link added

  • Using ActiveX in Oracle Forms6i

    Sir I have development an ActiveX in VB for urdu in oracle forms.
    The problems I am facing is that it is storing the input efficiently but
    when I Query the saved data it is not working,
    I got an Error that OLE Object not defined for the current record.
    It create the OLE object for a new record and take input & save it
    But as I assign the retrieved Data in Post Query, it give error object not
    defined.
    At the same time it display out when assign with when button pressed.
    the code that is working is for saving in the database is at save button (when
    button pressed)
    DECLARE
    VEN_IDp OLE2.OBJ_TYPE;
    VEN_NAMEp OLE2.OBJ_TYPE;
    ADD1p OLE2.OBJ_TYPE;
    CITYp OLE2.OBJ_TYPE;
    ZIPCODEp OLE2.OBJ_TYPE;
    STATEp OLE2.OBJ_TYPE;
    COUNTRYp OLE2.OBJ_TYPE;
    PHONE1p OLE2.OBJ_TYPE;
    PHONE2p OLE2.OBJ_TYPE;
    MOBILEp OLE2.OBJ_TYPE;
    FAXp OLE2.OBJ_TYPE;
    ECOMMENTSp OLE2.OBJ_TYPE;
    n1 NUMBER;
    V1 VARCHAR2(255);
    V2 VARCHAR2(255);
    V3 VARCHAR2(255);
    V4 VARCHAR2(255);
    V5 VARCHAR2(255);
    V6 VARCHAR2(255);
    V7 VARCHAR2(255);
    V8 VARCHAR2(255);
    V9 VARCHAR2(255);
    V10 VARCHAR2(255);
    V11 VARCHAR2(255);
    V12 VARCHAR2(255);
    BEGIN
    --creating pointers to the activeX's
    VEN_IDp := FORMS_OLE.GET_INTERFACE_POINTER('VEN_IDU');
    VEN_NAMEp := FORMS_OLE.GET_INTERFACE_POINTER('VEN_NAMEU');
    ADD1p := FORMS_OLE.GET_INTERFACE_POINTER('ADD1U');
    CITYp := FORMS_OLE.GET_INTERFACE_POINTER('CITYU');
    ZIPCODEp := FORMS_OLE.GET_INTERFACE_POINTER('ZIPCODEU');
    STATEp := FORMS_OLE.GET_INTERFACE_POINTER('STATEU');
    COUNTRYp := FORMS_OLE.GET_INTERFACE_POINTER('COUNTRYU');
    PHONE1p := FORMS_OLE.GET_INTERFACE_POINTER('PHONE1U');
    PHONE2p := FORMS_OLE.GET_INTERFACE_POINTER('PHONE2U');
    MOBILEp := FORMS_OLE.GET_INTERFACE_POINTER('MOBILEU');
    FAXp := FORMS_OLE.GET_INTERFACE_POINTER('FAXU');
    ECOMMENTSp := FORMS_OLE.GET_INTERFACE_POINTER('ECOMMENTSU');
    --getting new value returned by the ActiveX
    N1 :=Project1_UserControl1.getUrduText(VEN_IDp);
    V2 :=Project1_UserControl1.getUrduText(VEN_NAMEp);
    V3 :=Project1_UserControl1.getUrduText(ADD1p);
    V4 :=Project1_UserControl1.getUrduText(CITYp);
    V5 :=Project1_UserControl1.getUrduText(ZIPCODEp);
    V6 :=Project1_UserControl1.getUrduText(STATEp);
    V7 :=Project1_UserControl1.getUrduText(COUNTRYp);
    V8 :=Project1_UserControl1.getUrduText(PHONE1p);
    V9 :=Project1_UserControl1.getUrduText(PHONE2p);
    V10 :=Project1_UserControl1.getUrduText(MOBILEp);
    V11 :=Project1_UserControl1.getUrduText(FAXp);
    V12 :=Project1_UserControl1.getUrduText(ECOMMENTSp);
    assigning the value to database item for saving
    :VEN_ID := N1;
    :VEN_NAME :=V2;
    :ADD1 := V3;
    :CITY :=V4;
    :ZIPCODE :=V5;
    :STATE :=V6;
    :COUNTRY:=V7;
    :PHONE1 :=V8;
    :PHONE2 :=V9;
    :MOBILE :=V10;
    :FAX :=V11;
    :ECOMMENTS :=V12;
    END;
    -- It save the record successfully
    and the code not working at (post query OR timer expired created at post query)
    It query the data from database and display it in the textitem but I want to
    assign it to ActiveX for Urdu Display
    (the activeX display Urdu for assiged value in button pressed case)
    DECLARE
    VEN_IDp OLE2.OBJ_TYPE;
    VEN_NAMEp OLE2.OBJ_TYPE;
    ADD1p OLE2.OBJ_TYPE;
    CITYp OLE2.OBJ_TYPE;
    ZIPCODEp OLE2.OBJ_TYPE;
    STATEp OLE2.OBJ_TYPE;
    COUNTRYp OLE2.OBJ_TYPE;
    PHONE1p OLE2.OBJ_TYPE;
    PHONE2p OLE2.OBJ_TYPE;
    MOBILEp OLE2.OBJ_TYPE;
    FAXp OLE2.OBJ_TYPE;
    ECOMMENTSp OLE2.OBJ_TYPE;
    V1 VARCHAR2(255);
    V2 VARCHAR2(255);
    V3 VARCHAR2(255);
    V4 VARCHAR2(255);
    V5 VARCHAR2(255);
    V6 VARCHAR2(255);
    V7 VARCHAR2(255);
    V8 VARCHAR2(255);
    V9 VARCHAR2(255);
    V10 VARCHAR2(255);
    V11 VARCHAR2(255);
    V12 VARCHAR2(255);
    str1 VARCHAR2(255);
    str2 VARCHAR2(255);
    str3 VARCHAR2(255);
    str4 VARCHAR2(255);
    str5 VARCHAR2(255);
    str6 VARCHAR2(255);
    str7 VARCHAR2(255);
    str8 VARCHAR2(255);
    str9 VARCHAR2(255);
    str10 VARCHAR2(255);
    str11 VARCHAR2(255);
    str12 VARCHAR2(255);
    BEGIN
    SYNCHRONIZE;
    VEN_IDp := FORMS_OLE.GET_INTERFACE_POINTER('VEN_IDU');
    VEN_NAMEp := FORMS_OLE.GET_INTERFACE_POINTER('VEN_NAMEU');
    ADD1p := FORMS_OLE.GET_INTERFACE_POINTER('ADD1U');
    CITYp := FORMS_OLE.GET_INTERFACE_POINTER('CITYU');
    ZIPCODEp := FORMS_OLE.GET_INTERFACE_POINTER('ZIPCODEU');
    STATEp := FORMS_OLE.GET_INTERFACE_POINTER('STATEU');
    COUNTRYp := FORMS_OLE.GET_INTERFACE_POINTER('COUNTRYU');
    PHONE1p := FORMS_OLE.GET_INTERFACE_POINTER('PHONE1U');
    PHONE2p := FORMS_OLE.GET_INTERFACE_POINTER('PHONE2U');
    MOBILEp := FORMS_OLE.GET_INTERFACE_POINTER('MOBILEU');
    FAXp := FORMS_OLE.GET_INTERFACE_POINTER('FAXU');
    ECOMMENTSp := FORMS_OLE.GET_INTERFACE_POINTER('ECOMMENTSU');
    --function setUrduText(interface oleobj,text in out varchar2) Return varchar2
    This function Displays Urdu when value is assigned in when button pressed event
    str1 :=Project1_UserControl1.setUrduText(VEN_IDp,:VENDOR.VEN_ID);
    str2 :=Project1_UserControl1.setUrduText(VEN_NAMEp,:VENDOR.VEN_NAME);
    str3 :=Project1_UserControl1.setUrduText(ADD1p,:VENDOR.ADD1);
    str4 :=Project1_UserControl1.setUrduText(CITYp,:VENDOR.CITY);
    str5 :=Project1_UserControl1.setUrduText(ZIPCODEp,:VENDOR.ZIPCODE);
    str6 :=Project1_UserControl1.setUrduText(STATEp,:VENDOR.STATE);
    str7 :=Project1_UserControl1.setUrduText(COUNTRYp,:VENDOR.COUNTRY);
    str8 :=Project1_UserControl1.setUrduText(PHONE1p,:VENDOR.PHONE1);
    str9 :=Project1_UserControl1.setUrduText(PHONE2p,:VENDOR.PHONE2);
    str10 :=Project1_UserControl1.setUrduText(MOBILEp,:VENDOR.MOBILE);
    str11 :=Project1_UserControl1.setUrduText(FAXp,:VENDOR.FAX);
    str12 :=Project1_UserControl1.setUrduText
    END;
    I am not getting the point that why the Error OLE object not defined occur in
    display case where as in new record the object is activited on new record
    instane by itself but not in post query
    I am working on application of a library with Urdu data and at last step Iam
    facing the problem above PLs guide me
    Thanks in advance
    null

    Ignore my previous post. I misread the question.
    There is no support for using ActiveX in JDeveloper. What you would need to do is to wrap your activex in a Java class and then you'd be able to use that java class in your project. There may be some facilities available somewhere on the internet that would help you doing that. I just don't know of any.
    Regards,
    Michel

Maybe you are looking for

  • How do I download a shared document with markups and comments?

    I have a pdf document that was shared (in a share pod) during a collaborative meeting and is still in the virtual meeting room. I need to download it and edit. When I "save as", the document opens on my computer in the original state; with no markups

  • Cant connect

    hiya i have try connecting to skype with my laptop but it says cant connect 

  • Working in Design View on the server

    I was given a bunch of (.tpl) files that are on a server. I have to edit them in Dreamweaver (CS3) but the thing is, in Design View I can't see what the pages actually look like. The reason for that is because the CSS isn't showing in Design View (th

  • Deinterlacing

    Hello, I am currently using JMF to display video input from a capture card (coming in though composite). I have this working both in JMFStudio and in my application. However, the video suffers badly from artifacts around moving objects. It has been s

  • Dmraid with raid5 on 2.6.24

    Hi there, I have a raid 5 array on a rocket raid 2600, I also have ICh9 so I can run dmraid. Im really not fussed about performance too much so Im happy to run fake raid. I have found the rocket raid drivers under linux to be pretty unreliable (they