Forms in 11i

How can I list the form name and its description(what the do) in 11i?
ex
form description
A Supplier maintenance
B Purchase orders
C Journal entries
Or is there a documentation that will list them
Thankd for the help
LW

Duplicate thread ..
Problem in Forms...
Re: Problem in Forms...!!!

Similar Messages

  • Compile all custom forms from 11i to r12

    Hi,
    I have to compile 11i forms into R12.
    Copyresource folder and fmb to local system and compile forms manually in local system is one way
    I heard there is another easy way of compiling custom forms from 11i to r12. If you have any solution for this please help me.
    Any help is big help, thanks in advance.

    Hi;
    In addition to Hussein Sawwan great post,please review:
    Custom form upgrade 11i to R12
    Planning to upgrade from 11i to R12
    Oracle Custom 11i Forms compatablity in Oracle R12
    Oracle Custom 11i Forms compatablity in Oracle R12
    How To Migrate My Customized reports & Forms To R12?
    How To Migrate My Customized reports & Forms  To R12?
    Regard
    Helios

  • Concurrent programs form in 11i error

    Hi,
    I am new to oracle 11i, when I open a concurrent programs form in 11i, the form is displaying in the applet.. but it is not allowing to change the screen.. like options like print..
    I want to disable the print option..
    Please help me in this regard.. I stuck here for last two days..
    Thanks,
    Malla

    I don't understand what you are asking.
    Email me for a faster response [email protected]

  • GENERATING FORMS FOR 11i IN UNIX ( ifrun60)

    GENERATING FORMS FOR 11i IN UNIX ( ifrun60)
    How to generate forms for forms 6i.
    Just like f45gen for Forms 4.5.
    null

    It is f60gen in the unix. It takes the following parameters.
    f60genm Module=<formname> Userid=<userid/password> [Parameters].
    Optional parameters are (default values given):
    Module_Type=FORM Module type (FORM, MENU, LIBRARY, PECS).
    Module_Access=FILE Module access (FILE, DATABASE).
    Statistics=NO Show statistics.
    Logon=YES Logon to database.
    Batch=NO Don't display messages on the screen.
    Output_File=<file> Write output to file.
    Script=NO Write script file.
    Parse=NO Parse script file.
    Delete=NO Delete module from database.
    Insert=NO Insert module into database.
    Extract=NO Extract module from database.
    Upgrade=NO Upgrade module to current version.
    Upgrade_Roles=NO Upgrade SQL*Menu 5.0 role information.
    Version=45 Version to upgrade (23, 30, 40, 45, or menu 50).
    Crt_File=<crt file> CRT file for version 2.x form upgrade.
    Build=Yes Build a runform/runmenu file when upgrading.
    Add_Triggers=NO Add KEY-UP/DOWN triggers during upgrade.
    Nofail=NO Add NOFAIL keyword to trigger steps.
    Debug=NO Build/Run with debug information.
    Compile_All=NO Compile all PL/SQL code.
    Strip_Source=NO Strip pl/sql source code from library.
    Window_State=Normal Root window state: (Normal, Maximize, Minimize.)
    Help=NO Show this help information.
    Options_Screen=NO Display Options window (on bitmap only).
    Widen_Fields=NO Add one character to display width.
    Print_Version=NO Print version used to save module.
    Forms_Doc=NO Print Forms Doc report.
    Make sure that ur .Profile is set in unix.
    Thanks
    Ram
    null

  • Adding Quantity in Sales Order form in 11i

    I am trying to use forms personalization (under 11i) to add-up order quantity of multiple item lines to check against certain value. if it is less then let the order be booked, if it isn't then give error and stop processing. Will appreciate if someone can help, urgently.
    I am able to check the quantity and preform the check at each line level but not able to figure out how to add up the quantity if there are multiple lines.
    This is to be done in Sales Order form under Order Management.
    Thnx
    Suhail

    Hi;
    For your issue i suggest close your thread here as changing thread status to answered and move it to Forum Home » Application Development in PL/SQL » Forms which you can get more quick response
    Regard
    Helios

  • How to compile forms in 11i

    How to compile form(APXINWKB.fmb) in 11i Linux OS.

    f60gen module=APXINWKB.fmb userid=apps/apps module_type=FORM output_file=/u001/appltech/appl/ap/11.5.0/forms/US/APXINWKB.fmx compile_all=special
    does above looks fine to compile.Yes.
    and make sure FORMS60_PATH points to correct path.
    FORMS60_PATH=:FORMS60_PATH:$AU_TOP/resource:$AU_TOP/forms/US;
    export FORMS60_PATH;

  • Launch 6i Form from 11i?

    Hi all, I'm having a lot of trouble finding info on how to launch/run a 6i form from Oracle Apps 11i. The form would be launched when a button is pressed.
    Thanks.

    Hi,
    is 11i built with Forms 6i? If yes then open_form, new_form or call_form is used. If 11i uses Forms 9i then you use web.show_document("URL of Forms 6i on the web','_blank');
    Frank

  • GL Account Form - Oarcle 11i (11.5.10.2)

    I have some code combinations which are directly inserted in gl_code_combinations table through custom program. When I am trying to query these code combinations through GL Account Form, it gives me a message "Record not found" and when I try to add through GL Account Form it gives me a message "This combination of segment already exists" dfvcc
    It seems the link is not there between flexfield and the codes that are created in gl_code_combinations table. However I do see those accounts in gl_code_combinations_kfv table as well. Those sagment values for such accounts are existing in Value sets that validates each segment of code combinations ID.
    So I am not sure how to handle this. Could you please give me some idea how can I be able to maintain such codes in GL Account Form.

    Hi,
    at first, I dosn't hope you have make direkt insert for new CCID into the GL_code_combinations.
    Use the fnd_flex_ext.get_ccid procedure to create or get the CCID (example see below).
    This procedure will get you the CCID for a combination of segment value or will create the CCID (incl. Validation).
    FUNCTION create_ccid (
    p_segment1 VARCHAR2,
    p_segment2 VARCHAR2,
    p_segment3 VARCHAR2,
    p_segment4 VARCHAR2,
    p_segment5 VARCHAR2 := '000',
    p_segment6 VARCHAR2 := '0000'
    RETURN NUMBER
    IS
    vv_chart_of_accounts_id NUMBER;
    vv_msg VARCHAR2 (2000);
    retval NUMBER;
    vv_coa_delimiter VARCHAR2 (80);
    vv_rec_gcc gl.gl_code_combinations%ROWTYPE;
    v_ccid gl.gl_code_combinations.code_combination_id%TYPE;
    PRAGMA AUTONOMOUS_TRANSACTION;
    BEGIN
    SELECT a.chart_of_accounts_id
    INTO vv_chart_of_accounts_id
    FROM gl_sets_of_books a
    WHERE a.set_of_books_id = g_set_of_books_id;
    IF g_debug = 'Y'
    THEN
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    'message:'
    || 'Konto '
    || p_segment1
    || '.'
    || p_segment2
    || '.'
    || p_segment3
    || '.'
    || p_segment4
    || '.'
    || p_segment5
    || '.'
    || p_segment6
    END IF;
    vv_rec_gcc.segment1 := p_segment1;
    vv_rec_gcc.segment2 := p_segment2;
    vv_rec_gcc.segment3 := p_segment3;
    vv_rec_gcc.segment4 := p_segment4;
    vv_rec_gcc.segment5 := p_segment5;
    vv_rec_gcc.segment6 := p_segment6;
    vv_coa_delimiter :=
    fnd_flex_ext.get_delimiter
    (application_short_name => 'SQLGL',
    key_flex_code => 'GL#',
    structure_number => vv_chart_of_accounts_id
    fnd_message.CLEAR;
    v_ccid :=
    fnd_flex_ext.get_ccid ('SQLGL',
    'GL#',
    vv_chart_of_accounts_id,
    TO_CHAR (SYSDATE, 'DD-MON-YYYY'),
    vv_rec_gcc.segment1
    || vv_coa_delimiter
    || vv_rec_gcc.segment2
    || vv_coa_delimiter
    || vv_rec_gcc.segment3
    || vv_coa_delimiter
    || vv_rec_gcc.segment4
    || vv_coa_delimiter
    || vv_rec_gcc.segment5
    || vv_coa_delimiter
    || vv_rec_gcc.segment6
    vv_msg := fnd_message.get;
    IF g_debug = 'Y'
    THEN
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    'message:' || SUBSTR (vv_msg, 1, 512)
    END IF;
    RETURN v_ccid;
    END create_ccid;

  • Oracle Forms 6i/11i Apps: Horizontal scroll bar is hiding last record in the form, issue with folder switcher

    Horizontal scroll bar is hiding last record in the form. Attached the screenshot which shows the issue.
    Regards,
    Venkat K

    If this is a custom form, you will have to alter the design. If this is a seeded form, pl open an SR with Support

  • Could not use 'host' command in my custom form in 11i

    Dear all,
    The 'host' command makes the application wait and leads to no further response.
    Thks & Bst Rgds,
    Edward

    Would anyone pls help me?

  • OAF Forms Moving from 11i to R12

    HI
    I have some customized OAF forms in 11i, and we are up-grading to R12, now i have compiled OAF Forms but this error comes when i try to run these forms in R12
    "You have encountered an unexpected error. Please contact the System Administrator for assistance."
    I have compiled these forms using this command in putty
    java oracle.jrad.tools.xml.importer.XMLImporter /mnt/oracle/ERPROD/apps/apps_st/comn/java/classes/oracle/apps/ar/advance/webui/AdvanceReqFormList.xml -rootdir /mnt/oracle/ERPROD/apps/apps_st/comn/java/classes/ -username apps -password ****** -dbconnection "(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = IP) (PORT = 1521)) (CONNECT_DATA = (SERVER = dedicated) (SID = TEST) ) )" -rootPackage /
    and after running this command following message appears
    Importing file "/mnt/oracle/ERPROD/apps/apps_st/comn/java/classes/oracle/apps/ar/advance/webui/AdvanceReqFormList.xml" as "/oracle/apps/ar/advance/webui/AdvanceReqFormList".
    Import completed.
    Kindly Help

    Hi,
    Check whether the Page is imported successfully or not using below method.
    Begin
    jdr_utils.printdocument('/oracle/ERPROD/apps/apps_st/comn/java/classes/oracle/apps/ar/advance/webui/AdvanceReqFormList');
    end;
    Regards
    Jyothi

  • Calling shared objects in unix from Forms 6i and 10g

    I would like to know how to call shared objects in unix from Froms 6i and 10g. Can anybody help in this regard? Your help is very well appreciated.

    Hi,
    Do you have any 11i instance where those custom forms are used? If yes, you will have to copy those forms from 11i to R12 instance, open the forms using Forms 10g builder, compile it and upload it back to the server.
    Note: 427879.1 - How To Customize And Compile An Application Seeded Form (FMB) Or Library (PLL)?
    Note: 743490.1 - Customization in Oracle Applications
    Note: 563258.1 - How To Upgrade 11i Custom Forms And Reports To R12
    Regards,
    Hussein

  • How to initialize org in a custom form in R12 upgrade

    Hi,
    We are migrating a custom form from 11i to R12. But the form and LOVs in the fields dont return any values in R12. The custom views attached to these LOVs, return values in toad when the org is set. We think that the issue is that the org is not initialized in the form.
    Can anyone help on how to resolve this?
    Would it help if we used "MO_GLOBAL.SET_POLICY_CONTEXT('S',fnd_global.ORG_ID);" in the when new form instance trigger in the form.
    Thanks

    Use following code in when-new-form- instance form level trigger
    FND_ORG.CHOOSE_ORG;
    :PARAMETER.ORG_ID:=FND_PROFILE.VALUE('org_id');
    then insert following in pre-insert block level trigger
    :ORG_ID := :PARAMETER.ORG_ID;

  • How to set org in a Oracle custom form

    Hi,
    We are migrating a custom form from 11i to R12. But the form and LOVs in the fields dont return any values in R12. The custom views attached to these LOVs, return values in toad when the org is set. We think that the issue is that the org is not initialized in the form.
    Can anyone help on how to resolve this?
    Would it help if we used "MO_GLOBAL.SET_POLICY_CONTEXT('S',fnd_global.ORG_ID);" in the when new form instance trigger in the form.
    Thanks

    YOu should ask your question in an ebusiness-suite related forum.

  • List of tables used in Custom Forms

    Hi All,
    I am working on forms . There are nearly 100 forms, I need to find all the tables used in these forms.
    Is there any way I can know the list of tables used in each form from backend.
    Or do I need to open each form and analyze the forms one by one?
    Thanks,
    Raj Kumar

    I am working on forms . There are nearly 100 forms, I need to find all the tables used in these forms.
    Is there any way I can know the list of tables used in each form from backend.
    Or do I need to open each form and analyze the forms one by one?You cannot get the list from the backend.
    You have 3 options here.
    Option 1) Open each form using Forms Builder and get the list of objects
    Option 2) Use Record History and LAST_QUERY
    Option 3) Enable trace
    How To Determine Table and Column Name from a Field in a Form in 11i [ID 259722.1]
    FAQ: Common Tracing Techniques within the Oracle Applications 11i/R12 [ID 296559.1]
    Thanks,
    Hussein

Maybe you are looking for