Oracle Forms6i and Netegrity

We use Siteminder SSO for authentication and after authentication the user the Siteminder will call our Oracle Application(Screen) but it has to use the same Oracle session which Siteminder has used for connection.
Please let me know we two different application can use the same connection and also do Oracle Single Sign on needs to be configured for that, is it a must to configure Oracle SSO. Please.Urgent.

Not sure about 10g Rel 2 (I didn't try it). I used Forms 6i with 10g Rel 1 without problems.
But be aware that, anyway, the combination is not certified.

Similar Messages

  • Hierarchical Tree IN Oracle FORMS6i and oracle 9i

    Hi ,
    I have written all the scenarios as follows. Please write in steps to do this.
    I have the follwing scenario to create the hierarchical tree.
    The display is as follows when the user comes to this screen.
    CTRLBLK1 CTRLBLK2
    SCOTT This block is hidden
    John
    The way I want it when the user is clicking scott it is displaying the records in the other block
    the full tree expanded not collapasble.
    Scenario1
    CTRLBLK1 CTRLBLK2
    SCOTT President
    VP
    Manager
    Same is over here in scenario2
    Scenario2
    CTRLBLK1 CTRLBLK2
    John President
    VP
    Manager
    Clerk
    The tree should be displayed not collapsed. What is way to do the above
    in forms. I tried to do the way suggested in OTN. But i didnot reached to the solution.
    The way I want it when the user is clicking scott it is displaying the records in the other block
    the full tree expanded not collapasble.
    Pls help.
    Thanks,
    PS

    1) create a item Hierarchical Tree,
    ANS: The tree is created
    2) put this to pull in data to the Tree
    DECLARE
    l_query VARCHAR2(500);
    BEGIN
    l_query := '';
    FTREE.SET_TREE_PROPERTY ( c_tree_blk_item_nm, FTREE.QUERY_TEXT, l_query );
    FTREE.POPULATE_TREE ( c_tree_blk_item_nm );
    go_node ( c_tree_root_node );
    IF FTREE.GET_TREE_PROPERTY (c_tree_blk_item_nm, FTREE.NODE_COUNT ) = 1 THEN
    po_found := FALSE;
    ELSE
    po_found := TRUE;
    END IF;
    END;
    Ans: I wrote this code in WHEN_NEW_FORM_INSTANCE trigger. But the code didnot got compiled . I did cut and paste of query too.
    Pls help me in defining the c_tree_blk_item_nm and go_node ( c_tree_root_node ). I was thinking some code of this type would work.
    The code itself didnot got compiled. It didnot ran.
    3) put this coding into WHEN-TREE-NODE-SELECTED trigger under the item, this is to populate the data to other block when u select the tree node.
    IF :SYSTEM.TRIGGER_NODE_SELECTED = 'TRUE' THEN
    GO_BLOCK ( 'BK_AGT' );
    EXECUTE_QUERY;
    SYNCHRONIZE;
    end if;
    BK_AGT is the 2nd control block .
    Help me in solution for this scenario in creating the hierarchical tree in forms6i.
    -KJJJ

  • Oracle forms6i and Oracle server 10G compatability

    Does anybody know if I can run 6i forms with 10G server?

    Not sure about 10g Rel 2 (I didn't try it). I used Forms 6i with 10g Rel 1 without problems.
    But be aware that, anyway, the combination is not certified.

  • 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 Spatial and Oracle Forms

    Hi,
    Does anyone have experience with Oracle Spatial and Oracle Forms?
    I have generated a form, which is based on a view. The view uses the mdsys.sdo_relate operator. Somehow I am unable to get the form to perform (to get one record it takes over 20 minutes). While useing sql-navigator to process the same statement it seems no problem. The query that also uses the view, is then processed in 10 seconds.
    I also noticed that when text-functions like ' lower' of ' upper' are used to query the view, the query is processed within 15 seconds. If I don't use ' lower' or ' upper' it takes a long time (> 20 minutes) to process the query. Is it possible that this causes the bad performance of the form?
    On metalink I have found that forms and spatial do not cooperate because of the pl/sql version that
    forms6 uses. There is no solution presented, does anyone know of a work around?
    My configuration is:
    Oracle 8.1.7 on WIN2K @ PIII-800Mhz 256 Mb memory.
    Formsbuilder 6
    If requested I can post the queries that I have made.
    With regards,
    Gerjan Walrecht
    [email protected]
    null

    Hello Priya,
    Look into the following.
    1. Book - Pro Oracle Spatial for Oracle Database 11g by r. Kothuri, A. Godfrind, E. Beinat. This book provides a nice introduction on Oracle Spatial concepts and have examples.
    2. Look at the Oracle Spatial & Graph User Guide
    2. Book - Applying and Extending Oracle Spatial by S. Greener and S. Ravada. This book provides hands on information for advanced oracle spatial application developers. Practical guide on hands-on examples, Data models and  develop cross-vendor database solutions.
    3. This oracle spatial forum, once you understand these concepts.
    In the future consider Certification on Oracle Spatial 11g Certified Implementation Specialist.
    Best
    Navaneet

  • 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

  • Can anyone give me Interview question on forms6i and reports 6i(its urgent)

    plz give me Interview question on forms6i and reports 6i its urgent .plz mail it to me on paritosh [email protected]

    Check this link
    http://www.geekinterview.com/Interview-Questions
    You will find many information regarding interview questions of oracle related domains.

  • 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!

  • Bilingual support for forms6i and Reports6i

    Hi
    We are planning to use Oracle Developer 6i with forms6i and reports6i for a Client server solution and deploy only the runtime on Sun Solaris
    Question: The users need multi-language support for the form labels and report headings etc..
    However,the data in the database will be stored only in English and will be displayed only in English.
    Please let me know if this is possible in Oracle Reports 6i and Forms6i (and how do we implement this)
    Thanks
    G.

    null null ;-),
    Yes you can do this. The way you do this is to use Oracle Translation Builder to translate the contained strings in Reports and Forms. After translation, export the strings back into the Forms and reports modules.
    In Reports you use the rdf format to store multiple language strings and in Forms it's fmb. To get language specific application modules you need to compile the files with the NLS_LANG variable set to the traget language.
    You can compile Forms applications using the Forms Developer interface or the ifcomp60 compiler. Similar for Reports, except that the compiler name is rwconverter. After this all you need to do is to start the applications in the language environment (NLS_LANG) set to target language. On the Web this is the default.env file in Forms, or the registry (or Unix environment) of the Reports Server. In client-server NLS is defined in the registry on Windows or in the environment on Unix.
    Hope this helps.
    Frank

  • Comparison between Forms6i and Forms9i

    We have some client/server-based applications built in Forms6i and are considering to convert/rebuild them into Forms9i or JDeveloper as web-based applications. Has anyone done any comparison between Forms6i and Forms9i/JDeveloper? Or, can you point me to such documentation if existed?
    Thanks.

    For comparison between forms 6i and Oracle9i Forms check out the new features paper on:
    http://otn.oracle.com/products/forms
    Comparison to JDeveloper? How about the fact that you develop with Java language in JDeveloper and with PL/SQL in Forms.
    I would suggest that first you try to run your application on the Web using forms 6i. This should be a very simple test to do. See how you like it and only then ask yourself if you really need to go to JDeveloper.

  • 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.

  • Forms6i and Report9

    Hello everybody!
    I am having some problems with the above mentioned programs: Forms6i and Report9.
    1)
    The problem with Forms6i occurs both with Windos XP and with Vista.
    Installation is successful and I can run Forms as well as create and open the forms. The problem occurs when I try to connect to the database. The program crushes down after I insert account details and database.
    I am using the latest version downloadable from oracle web site. I had no problem with a previous version.
    Can anyone help me?
    2)
    The problem with Report9 occurs when I try to open the last created report in web mode. The report preview works but as I go in web mode I’m told to configure my browser, or to choose between some browsers… In any case, whatever I do, nothing happens. I succeeded opening Firefox but there was no report.
    Can anyone help me?
    Thanks!

    Ciao Paolo,
    Yestrday I made a search, I didn't find anything, except that for problems on DML Data Target Type property
    (FORMS) against to DB release 9, was suggested to install patch 14.
    I'am afraid
    Ciao spero che qualcun'altro esaudisca la tua richiesta.
    hope helps
    (but it's for patch 14 Release 6.0.8.23:
    http://www.oracle.com/technology/documentation/forms/6idocs/relnotef_p14_w.pdf)

  • 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

  • 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

Maybe you are looking for

  • Strange problem with Superdrive in 1.8 GHz iMac G5 (rev. A)

    The superdrive in my 1.8 GHz iMac G5 (rev. A) has recently developed a strange problem but only when dealing with CDs. If the computer has been on for a short time the drive won't accept any CDs be they audio, data or blank. It never has problems wit

  • TC or Airport Extreme with External

    I am looking at buying a TC or Airport Extreme. I have an external HD that I plan connecting to whichever I get. Does anyone have an opinion either way which is better or more stable? Thanks

  • Sync iPod nano 2nd generation

    I have some audio files taped from a live lecture in mp3 format in my iTunes library. I cannot sync/ transfer to my 2GB iPod nano. I have not been able to figure out why. It gives me the info that my files are not in a format that iPod nano supports,

  • Calculation on two columns in pivot table

    Hello all, I have a view: Dept Year Amount Accounting $500 2010 Accounting $700 2011 Engineering $100 2010 Engineering $600 2011 and etc pivot table:(data displayed side by side) Dept: 2010 2011 Accounting $500 $700 Engineering $100 $600 Is there a w

  • Scripting Assistance Needed

    I'm working on a form.  What I need it to do is this: The end user will check a box to add comments.  The comments field is NOT visable until the check box is checked.  Once the checkbox is checked then a text box will appear directly underneath it.