Sections in Form Construction

Hi All,
While creating a form, we will divide the document into sections and create them individually.
Instead of that is there any way to create all sections at a time by taking the text from word document?
Thanks,
Kiran

You can try the import/conversion of a Word DOC. There are a couple of different ways to do this. The primary method is to look in the main workspace tree (or the ribbon) for Conversions and choose that. The wizard begins and I think the top-most option is Import Document File. The next page, lets you select MS Word (DOC, DOCX) files. Note that the top entry refers to Word documents created with the Documaker Add-In - which the previous answer mentioned.
Once you have selected that you intend to to a DOC conversion, then click Browse to add one or more files you wish to convert.
The next couple of pages have various options, but if this is your first attempt, you might just accept the defaults.
You did not mention your version, but if it is a recent one, these steps should convert the document and would have checked into the library - if you allowed that to happen. You can then check the form out, or will have to load it from disk under the Forms category if you did not add it to the library yet.

Similar Messages

  • HCMPF - controlling the visibility of various sections of Form

    Hi All,
    In my HCM PF, i have 2 sections - 1) Employee 2) Manager
    Under Manager Section, there is a Mandatory text field 'Comment' , which should be 'Hidden' under Employee Section.
    In order to make this field mandatory, i have defined it as 'Required Entry' under  the Process Fields
    If the field is mandatory, it will result in an error while filling Employee section.
    I dont want the red border appearing around my comment field in my form, so i am not setting property as User Entered-Required in UI property.
    Can anyone please guide me how to proceed with this funcitonality. I want to keep the field hidden in Emp section, yet it should be mandatory under Manager section.
    Thanks in advance,
    Aditi

    Seriously? Those are some really basic HCM P&F concepts.
    I will try to help.
    First off....why do you have a separate field for "manager comments"? WHy not use the standard comments fields (current/previous) and let the framework handle them?
    Now for showing/hiding sections of form.....several ways to do this. If it were me...
    1. I would have the employee and manager steps in different form scenario steps/stages (personally I would probably have them in different form scenarios all toghether but sharing same form simply for scalability).
    2. Define the standard field for form_scenario_stage in your form scenario fields (look it up in documentation for how to define this....I'm not spoonfeeding you)
    3. Add the form field from #2 onto your form somewhere and make it hidden/invisible.
    4. Use Javascript/Formcalc to reference the "raw value" of that field. Then you can use script in the form to show/hide the section depending on the value in that field (which will be the name of the form scenario step/stage.
    Now.... for making fields mandatory, hidden/visible/invisible, open to edit/read only......that is all done in scripting and is VERY basic. There are TONS of examples on how to do this all over the web with simple Google searches.

  • Is it possible to copy and paste (or replicate) selected sections of a form to reduce form construction time?

    I am building a very large form which will have the same group of question response choices repeated multiple times in the form.  Is it possible to replicate/duplicate these sets of identical response choices (by say, copying and pasting)?  Thank you.

    Hi Ned,                                                                                                                                                                      B"D
    Thank you for giving an idea how to solve my problem.
    You suggested to save a page as an .html in Word.
    This is what I did:
    1. In Word I formated title as Heading 1.( Formating-->Styles and Formating)
    2. Saved the page  as an HTML file.
    3. When I  pasted  this page into Dreamweaver  <h1> TAG was displaced in the source code.
    cheers,
    Dreamer101.1

  • How do I Section a form??

    My form is broken into logical sections.  I would like to break the PDF into the same sections, but currently the only breaks are PAGE breaks
    Page1
    -field1
    -field2
    -field3
    -field4
    Page2
    field
    field
    field
    I would LIKE to break it into logic sections that follow my form
    Page1
    -field1
    -field2
    -field3
    Subsection 1
    -field4
    Subsection 2
    Page2
    Subsectiom 3
    field
    field
    field
    Subsection 4
    The idea would be that if I needed to dissable an entire section, it would be easy as I could just act upon the section atributes rather than on each individual field -in- the subsection.
    Is there an easy way to do this in ACROBAT PRO XI?
    thanks

    OK. This can be done fairly easily if yuo use a hierarchical naming system for you form fields. For example, prefix all of your fields in section 1 with "S1.", tso they have names like: "S1.cust_name", "S1.address", "S1.city", etc. You can then hide all of the fields in a group with a single line of JavaScript:
    // Hide all of the secition 1 fields
    getField("S1").display = display.hidden;
    If you include an opaque button to cover all of the section (e.g., set the background to white and make it read-only), you can hide the underlying page contents by doing:
    // Show the section 1 button
    getField("S1_cover").display = display.visible;
    In this case don't include the "S1." prefix.
    Do the same type of thing for the other sections. You can then set up a general function in a document-level JavaScript to show/hide any section, something like:
    function hideFormSection(section, hide) {
        // Determine whether to show or hide the fields
        var disp = hide ? display.hidden : display.visible;
        // Dtermine whether to show of hide the cover button
        var disp_cover = hide ? display.visible : display.hidden;
        // Show/Hide the fields
        getField(section).display = disp;
        // Show/Hide the cover button
        // Each section cover button is named: prefix + "_cover". Example: "S1_cover"
        getField(section + "_cover").display = disp_cover;
    And you could call it like this:
    // Hide section 1
    hideFormSection("S1", true);
    // Show section 3
    hideFormSection("S3", false);

  • Opens a form with the middle part not the header section

    i am using forms 9i.
    i have a form (Form 1) whose windows size is 800X600 which is scrollable .
    In Form 1 at the below (end) i have a button on cllicking which Form 2 is opened.
    but Form 2 is not opening with the header section. it is opening with the below section.
    Form 1 has the many item and at the end a button is avaliable say
    employee Details
    on clicking this button it has to open Form 2
    Form 2 has the following items in it
    Name:
    Id:
    Department:
    experience:
    Personal details:
    on clicking the button it should open the form from the Name item right. but it
    opens with the item experience . i have to scroll the form to see the header section .

    Thanks for your answer.
    ya i have given go ittem (Name);
    its working. That is control goes to that item (that item is enabled as blue) but then as it opened we can see items only from the description field. To see the name field which is on top of the form and which is in focus(due to the go_item), we need to scroll up using the browser scroll bar. Our understanding is that since the forms is running as an applet in the IE browser, do we need to do some setting in any of the config or environment files so that the form will always open with the top of the form visible to the user? Please advise.
    THanks and regards,

  • How to set up database for form application in app. server 10g r2

    Hi Friends and Bgrant.
    I get user compiled fmb file.
    I did not find componant in app. server.
    However, I can see form server ment with 3 subitem : form compiler, formmigration and run form on the web.
    The form application is supported by database. Other person already configured server for application .
    I put a URL in URL field in run form on the web. I can see install ed successfully! Oracle application Server. Forme server. Oracle application server 10g. title: welcome oracle application server
    after clicked OK button, the page is grey blank without any inforamtion to be displayed. No error message. status bottome as done. the page title as Oracle application server form server.
    SO I think that i need to creade a datasource in app. server.
    But I do not know how to fill field.
    I can log into database from SQL*plus in server PC.
    In datasource page in app. server: i copy a default ORCALEDS information
    with new ID and password. it does not work
    hereData Source Class:
    JDBC URL :
    JDBC Driver:
    Location
    Transactional(XA) Location      
    EJB Location
    Thanks for any help!!
    jim

    Thanks for help!
    I fixed issue of database connection with new issue.
    Only display first form setting (first URL) for 4 different URL
    URL:
    http://salerpt.com/forms/frmservlet?config=emis-srmenu
    fmx file Location as C:\OraMid\forms\salerpt-Forms fmx name as srmenu.fmx in same directory
    fmb file location as C:\OraMid\forms\salerpt-Forms_source fmx name as srmenu.fmb in same directory
    # Single Sign-On OID configuration parameter
    oracle_home=C:\OraMid
    in formweb.cfg file
    baseHTMLjinitiator=basejini.htm
    workingDirector : workingDirectory= blank. but C:\OraMid\forms\salerpt-Forms right now
    # Forms runtime argument: which form module to run
    ##form=test.fmx
    ## i moved bottom section of form section in here and before
    line as Forms runtime argument: database connection details
    comment two line
    #jinit_exename=jinit.exe
    #jinit_mimetype=application/x-jinit-applet;version=1.3.1.22
    I create 4 sections as
    form=srmenu.fmx
    width=1200
    height=700
    pageTitle=Sale Information System (SIS)
    form=xxxx
    net 3 form setting
    However it only display one form interface that i put in( 4 different URL. only display first URL)
    It seems that one formsweb.cfg, it doesn not support multip form application.
    I have 4 small forms application with 4 URL for one formsweb.cfg.
    What should I need to do?
    I am waiting for your help!
    JIm
    Edited by: user589812 on Nov 24, 2008 1:49 PM

  • Migrating Forms 6i to Portal

    Dear friends,
    is there any tool for migrating Forms and Reports made in 6i to Oracle 9i Portal??
    Any help would be appreciated.
    Thanks a lot in advance
    Warm Regards
    Vivek Bajaj

    6i Forms/Reports -> 9i Forms/Reports.
    You might want to check out the migration section
    under Forms and Reports products in OTN.

  • Only display first form URL in formsweb.cfg . mutiple URL does not work

    Hi Friends,
    I have 4 form application with 4 URL.
    app. server as 10g in window 2003.
    URL like as:
    http://salerpt.com/forms/frmservlet?config=emis-srmenu
    fmx file Location as C:\OraMid\forms\salerpt-Forms fmx name as srmenu.fmx in same directory
    fmb file location as C:\OraMid\forms\salerpt-Forms_source fmx name as srmenu.fmb in same directory
    # Single Sign-On OID configuration parameter
    oracle_home=C:\OraMid
    in formweb.cfg file
    baseHTMLjinitiator=basejini.htm
    workingDirector : workingDirectory= blank. but C:\OraMid\forms\salerpt-Forms right now
    # Forms runtime argument: which form module to run
    ##form=test.fmx
    ## i moved bottom section of form section in here and before
    ##line as Forms runtime argument: database connection details
    comment two line
    #jinit_exename=jinit.exe
    #jinit_mimetype=application/x-jinit-applet;version=1.3.1.22
    I create 4 sections as
    form=srmenu.fmx
    width=1200
    height=700
    pageTitle=Sale Information System (SIS)
    form=regsale.fmx
    form=salefinincial.fmx
    form=rptinfo.fmx
    However it only display first srmenu form interface that i put in( 4 different URL. only display first URL)
    It seems that one formsweb.cfg, it doesn not support multip form setting application.
    I have 4 small forms application with 4 URL for one formsweb.cfg.
    What should I need to do? I think that i miss some set up in configuration.
    I am waiting for your help!
    JIm

    Hi Bgrant,
    Please review my formsweb,cfg.
    Thanks
    I am looking for your help.
    # $Id: formsweb.cfg 15-apr-2005.13:17:30 pkuhn Exp $
    # formsweb.cfg defines parameter values used by the FormsServlet (frmservlet)
    # This section defines the Default settings. Any of them may be overridden in the
    # following Named Configuration sections. If they are not overridden, then the
    # values here will be used.
    # The default settings comprise two types of parameters: System parameters,
    # which cannot be overridden in the URL, and User Parameters, which can.
    # Parameters which are not marked as System parameters are User parameters.
    # SYSTEM PARAMETERS
    # These have fixed names and give information required by the Forms
    # Servlet in order to function. They cannot be specified in the URL query
    # string. But they can be overridden in a named configuration (see below).
    # Some parameters specify file names: if the full path is not given,
    # they are assumed to be in the same directory as this file. If a path
    # is given, then it should be a physical path, not a URL.
    # USER PARAMETERS
    # These match variables (e.g. %form%) in the baseHTML file. Their values
    # may be overridden by specifying them in the URL query string
    # (e.g. "http://myhost.mydomain.com/forms/frmservlet?form=myform&width=700")
    # or by overriding them in a specific, named configuration (see below)
    [default]
    # System parameter: default base HTML file
    baseHTML=base.htm
    # System parameter: base HTML file for use with JInitiator client
    baseHTMLjinitiator=basejini.htm
    # System parameter: base HTML file for use with Sun's Java Plug-In
    baseHTMLjpi=basejpi.htm
    # System parameter: delimiter for parameters in the base HTML files
    HTMLdelimiter=%
    # System parameter: working directory for Forms runtime processes
    # WorkingDirectory defaults to <oracle_home>/forms if unset.
    workingDirectory= C:\OraMid\forms\sales-Forms
    # System parameter: file setting environment variables for the Forms runtime processes
    envFile=default.env
    # Forms runtime argument: whether to escape certain special characters
    # in values extracted from the URL for other runtime arguments
    escapeparams=true
    # Forms runtime argument: which form module to run
    #form=test.fmx
    [[srmenu]]
    form=srmenu.fmx
    width=1200
    height=700
    pageTitle=Sale Management Information System
    [[regsale]]
    form=regsale.fmx
    width=1200
    height=1500
    pageTitle=Sale Management Information System
    [[salefinincial]
    form=salefinincial.fmx
    width=1200
    height=1300
    pageTitle=Sale Management Information System
    [[rtpinfo]]
    form=rptinfo.fmx
    width=1200
    height=1000
    pageTitle=Sale Management Information System
    # Forms runtime argument: database connection details
    userid=scott/tigerd@oracleapp
    # Forms runtime argument: whether to run in debug mode
    debug=no
    # Forms runtime argument: host for debugging
    host=
    # Forms runtime argument: port for debugging
    port=
    # Other Forms runtime arguments: grouped together as one parameter.
    # These settings support running and debugging a form from the Builder:
    otherparams=buffer_records=%buffer% debug_messages=%debug_messages% array=%array% obr=%obr% query_only=%query_only% quiet=%quiet% render=%render% record=%record% tracegroup=%tracegroup% log=%log% term=%term%
    # Sub argument for otherparams
    buffer=no
    # Sub argument for otherparams
    debug_messages=no
    # Sub argument for otherparams
    array=no
    # Sub argument for otherparams
    obr=no
    # Sub argument for otherparams
    query_only=no
    # Sub argument for otherparams
    quiet=yes
    # Sub argument for otherparams
    render=no
    # Sub argument for otherparams
    record=
    # Sub argument for otherparams
    tracegroup=
    # Sub argument for otherparams
    log=
    # Sub argument for otherparams
    term=
    # HTML page title
    pageTitle=Oracle Application Server Forms Services
    # HTML attributes for the BODY tag
    HTMLbodyAttrs=
    # HTML to add before the form
    HTMLbeforeForm=
    # HTML to add after the form
    HTMLafterForm=
    # Forms applet parameter: URL path to Forms ListenerServlet
    serverURL=/forms/lservlet
    # Forms applet parameter
    codebase=/forms/java
    # Forms applet parameter
    imageBase=DocumentBase
    # Forms applet parameter
    #width=750
    width=1024
    # Forms applet parameter
    #height=600
    height=768
    # Forms applet parameter
    separateFrame=false
    # Forms applet parameter
    splashScreen=
    # Forms applet parameter
    background=
    # Forms applet parameter
    lookAndFeel=Oracle
    # Forms applet parameter
    colorScheme=teal
    # Forms applet parameter
    logo=
    # Forms applet parameter
    restrictedURLparams=HTMLbodyAttrs,HTMLbeforeForm,pageTitle,HTMLafterForm,log,allow_debug,allowNewConnections
    # Forms applet parameter
    formsMessageListener=
    # Forms applet parameter
    recordFileName=
    # Forms applet parameter
    serverApp=default
    # Forms applet archive setting for JInitiator
    archive_jini=frmall_jinit.jar
    # Forms applet archive setting for other clients (Sun Java Plugin, Appletviewer, etc)
    archive=frmall.jar
    # Number of times client should retry if a network failure occurs. You should
    # only change this after reading the documentation.
    networkRetries=0
    # Page displayed to Netscape users to allow them to download Oracle JInitiator.
    # Oracle JInitiator is used with Windows clients.
    # If you create your own page, you should set this parameter to point to it.
    jinit_download_page=/forms/jinitiator/us/jinit_download.htm
    # Parameter related to the version of JInitiator
    jinit_classid=clsid:CAFECAFE-0013-0001-0022-ABCDEFABCDEF
    # Parameter related to the version of JInitiator
    #jinit_exename=jinit.exe
    #Version=1,3,1,22
    # Parameter related to the version of JInitiator
    #jinit_mimetype=application/x-jinit-applet;version=1.3.1.22
    # Page displayed to users to allow them to download Sun's Java Plugin.
    # Sun's Java Plugin is typically used for non-Windows clients.
    # (NOTE: you should check this page and possibly change the settings)
    jpi_download_page=http://java.sun.com/products/archive/j2se/1.4.2_06/index.html
    # Parameter related to the version of the Java Plugin
    jpi_classid=clsid:CAFEEFAC-0014-0002-0006-ABCDEFFEDCBA
    # Parameter related to the version of the Java Plugin
    jpi_codebase=http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,06
    # Parameter related to the version of the Java Plugin
    jpi_mimetype=application/x-java-applet;jpi-version=1.4.2_06
    # EM config parameter
    # Set this to "1" to enable Enterprise Manager to track Forms processes
    em_mode=1
    # Single Sign-On OID configuration parameter
    oid_formsid=formsApp_sales.com_0Axxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    # Single Sign-On OID configuration parameter
    oracle_home=C:\OraMid
    # Single Sign-On OID configuration parameter
    formsid_group_dn=cn=Logical Application Group, orclApplicationCommonName=formsApp_sales.com_0A4911717Fxxxxxxxxxx, cn=forms, cn=Products, cn=OracleContext
    # Single Sign-On OID configuration parameter: indicates whether we allow
    # dynamic resource creation if the resource is not yet created in the OID.
    ssoDynamicResourceCreate=true
    # Single Sign-On parameter: URL to redirect to if ssoDynamicResourceCreate=false
    ssoErrorUrl=
    # Single Sign-On parameter: Cancel URL for the dynamic resource creation DAS page.
    ssoCancelUrl=
    # Single Sign-On parameter: indicates whether the url is protected in which
    # case mod_osso will be given control for authentication or continue in
    # the FormsServlet if not. It is false by default. Set it to true in an
    # application-specific section to enable Single Sign-On for that application.
    ssoMode=false
    # The parameter allow_debug determines whether debugging is permitted.
    # Administrators should set allow_debug to "true" if servlet
    # debugging is required, or to provide access to the Forms Trace Xlate utility.
    # Otherwise these activities will not be allowed (for security reasons).
    allow_debug=false
    # Parameter which determines whether new Forms sessions are allowed.
    # This is also read by the Forms EM Overview page to show the
    # current Forms status.
    allowNewConnections=true
    # EndUserMonitoring
    # EndUserMonitoringEnabled parameter
    # Indicates whether EUM/Chronos integration is enabled
    EndUserMonitoringEnabled=
    # EndUserMonitoringURL
    # indicates where to record EUM/Chronos data
    EndUserMonitoringURL=
    # Example Named Configuration Section
    # Example 1: configuration to run forms in a separate browser window with
    # "generic" look and feel (include "config=sepwin" in the URL)
    # You may define your own specific, named configurations (sets of parameters)
    # by adding special sections as illustrated in the following examples.
    # Note that you need only specify the parameters you want to change. The
    # default values (defined above) will be used for all other parameters.
    # Use of a specific configuration can be requested by including the text
    # "config=<your_config_name>" in the query string of the URL used to run
    # a form. For example, to use the sepwin configuration, your could issue
    # a URL like "http://myhost.mydomain.com/forms/frmservlet?config=sepwin".
    [sepwin]
    separateFrame=False
    lookandfeel=Generic
    # Example Named Configuration Section
    # Example 2: configuration forcing use of the Java Plugin in all cases (even if
    # the client browser is on Windows)
    [jpi]
    baseHTMLJInitiator=basejpi.htm
    # Example Named Configuration Section
    # Example 3: configuration running the Forms ListenerServlet in debug mode
    # (debug messages will be written to the servlet engine's log file).
    [debug]
    serverURL=/forms/lservlet/debug
    # Sample configuration for deploying WebUtil. Note that WebUtil is shipped with
    # DS but not AS and is also available for download from OTN.
    [webutil]
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    archive_jini=frmall_jinit.jar
    archive=frmall.jar
    lookAndFeel=oracle

  • How to preserve a lot of work with forms?

    It is a document with pages of text and pages of forms. We usually have changes mainly in the text pages and the idea is to reuse the last created PDF (where the forms are already fine).
    We try to merge two PDF (just the new one with corrections for the main text with that one already finished)* but always the fields get lost! Or the navigation gets inactive!
    The temporal and cruel solution:
    1) Generate a new PDF for the whole document. (Loosing a lot of formatting already tuned in the last PDF for both parts)
    2) Go the forms section and copy-paste the original fields from the last PDF to the new one.*
    There is a procedure to mix two PDF with navigation text pages and pages with forms? *
    * We tried in two ways but is the same wrong result:
    a) Merging the PDF forms to the PDF text, or
    b) Merging the PDF text to the PDF forms
    ** As the problem is not manage forms with slight changes: the old trick of generate a new PDF for the reformed pages to instantly preserve the field is useless here.

    on this one...
    many things may be said, most of them irregular:
    1. Mixed documents with pages of text and forms are a trouble when a menu navigation is involved.
    [Replacing pages or big sections is a big problem. Navigation gets lost, fields also, etc.]
    2. The trick of working then separately is valid when navigation is not included. Otherwise a collusion is always present.
    3. Some pages never can be replaced. Content pages, for example.
    [Page numbers links get lost.]
    4. Other pages (chapters, for example) – as they are part of linked relation in the content page – cannot be replaced.
    [Link get lost.]
    5. Content page cannot be edited.
    [Some links get lost, other no.]
    6. Weird things are daily surprises as the examples showed above. Some part of that navigation menus will be lost past or will not  work.
    No way using Tomaxxi clever script. It demands a lot of time building up the fields.
    Again, is not a problem of replacing minor changes in forms. Is changin entire sections.
    The method to solve this points is always the same: make a new PDF and go to the section of forms and copy-paste the field based in an old PDF already fine: a demanding waste of times.
    [This old and nice PDF cannot be replaced, inserted or changed in the new PDF at least you will face the problems mentioned above.]

  • How to tag a Print PDF form ?

    Hi,
    I need some pointers on how to tag a print PDF form. For one of the requirements, we developed a Print PDF form. The form contains Sub-forms which are made to look like a table. The relevant parameter(i.e., pdf_tagged ) is already set before starting the Job. The special case here is that the table gets the text for the header from the application data and shrinks or grows(upto a max supported column count) according to application data. For the same reason we cannot have a table, header row and body row marked in the accessibility tab in the form development transaction. Also, it is required that a header has to be visible.
    So currently in the form :
    1)We have just a set of sub-forms made to look like a table.
    2)We do not have any table,header or body row identified in the accesibility tab.
    3)Table also grows and shrinks horizontally.
    4)First row of the table is made to look like a Header row(bold text) and gets the data from the application data.
    5)This PDF is then displayed in a popup.
    6)The PDF form is currently not tagged (not accessible).
    Any pointers on how to resolve the issue would be highly appreciated.
    Best regards,
    Abhay

    Look in the Help section under Forms.

  • Forms 11g PLSQL Library

    I have a Forms 11gR2 application that I have upgraded from Forms 10gR2. The forms have plsql libraries attached, I needed to modify 1 of the libraries but for some reason the form is still getting the old version of the library instead of the new version. I have de-attached the library from the form and reattached it (saved & recompiled) but it is not picking up the new version of the library. When I run the form locally with the debugger the old source is displayed in the PL/SQL Libraries section of Form Builder even though that version doesn't exist anymore.
    Does anyone know how to get changes in a library to be recognized?

    Welcome to OTN
    Before posting on this forum please read
    FRM-40735: WHEN-CUSTOM-ITEM-EVENT trigger raised unhandled exception ORA-06502.
    you'll get some hint here
    Oracle/PLSQL: ORA-06502 Error

  • Web ADI Create Document - Short Cut Save to Form  Function Grayed Out

    How do I "ungray" Save to Form Function to allow a save?
    RDBMS 10.2.0.4.0
    Apps 11.5.10.2
    Only GL and Desktop ADI
    Oracle on Demand Customer - does not give us SysAdmin Responsiblities
    We have:
    Applicatin Adiministrator does not have Application> Funcitons
    Application Developer has Application>Forms and Function
    Setup Web ADI super user menu with Create Documents, Define Layout, Define Mapping, Manage Documents
    Setup options and "Hidden" Enter Journals
    Thanks for you help,
    Dale

    I still have no response or answers
    Refer the section "Creating Form Functions Using the Create Document Page Flow" in Oracle Web Applications Desktop Integrator Implementation and Administration Guide. User to have system administrator responsibility assigned to have this feature enabled as this is a SysAdmin task.
    THE BIG QUESTION - since "Oracle on Demand" will not allow their users to have System Administrator, how can I add the required functionality to the supplied Application Administrator and resolve the questions below?
    Problem Description:
    Web ADI – Create Document, Save to Form Function is grayed out, therefore it can not be used
    1. How do we enable Web ADI functionality to Create document and Save to Form Function?
    2. Once saved to form function how to we navigate to Application>Functions?
    3. Once the Short cut is saved to the Form Function, how do we attach to a user’s responsibility?
    We have only Application Administrator with no Applications> Functions menu, however we do have in our test instance Application Developer with Applications>Forms and Functions, but it does not appear to have the same rights as SysAdmin. I tried adding the menu functions simular to SysAdmin to Application Administrator but no luck unlocking (ungraying) the form.

  • Calling APEX form with dynamic parameters from Oracle Apps 11.5.8

    I have successfully managed to setup access to APEX forms from Oracle Apps 11.5.8 menus utilising Form Functions passing a number of hardcoded parameter values as outlined in the document, http://www.oracle.com/technology/products/database/application_express/pdf/Extend_Oracle_Applications_11i.pdf.
    I am now trying to ZOOM from an Oracle Form passing values of form items (dynamic parameters) to an APEX form. I have so far not been able to do this.
    I've also tried using;
    web.show_document('http://derep.obup.co.uk:4657/pls/apex/f?p=100:1::::::p1_cust_account_id:'||name_in('ast_cu_act.account_id')||':', '_TOP');
    but this prompts for a username/password again as this bypasses the APEX Launch process that is defined in my Form Function.
    Is this possible in the parameters section of Form Functions? or elsewhere.
    Regards,
    Naeem

    Hi Daan
    We do havea couple of customers doing this, they have taken two approaches:
    1. Install XMLP on a separate server entirely - kick off conc request to extract data and then use Java Messaging Service (JMS) to push the resulting XML to the external server where they are using AQ to set up jobs for the XMLP server to work through, generating and delivering the final documents.
    2. Set XMLP up as a virtual printer - here the conc request again generates XML but this time the result is directed to a virtual printer namely XMLP. There is a perl or similar wrapper that gets called as the printer and accepts the data, template, output format and delivery destination as parameters.
    Apologies for the 10,000 feet overview, hope it helps. Tim

  • How to Hide adress of the form from adress bar

    Hi all ,
    i want to ask that is it possible to hide or change the adress of the form from the adress bar.....like when we run the form it shows the adress like
    http://develoment:8888/forms90/f90servlet?form=C:\GMS\Forms\GMS_SHIPMENT.fmx&userid=GMS/GMS@gms&buffer_records=NO&debug_messages=NO&array=YES&query_only=NO&quiet=NO&RENDER=YES
    that is too long i want it does not show the whole adress and also same problem with reports when i call the the report it show the whole adress and that is not good security wise
    i am using oracle 9IDS
    thanks in advance
    Shayan
    [email protected]

    go in your <forms-home>forms\server - directory. there is formsweb.cfg.
    All the [default] - parameters are global. If you don't set a parameter in your own section, then the fallback-parameters are stored there.
    at the end of the file you should write your own settings:
    e.g.
    # myConfig - this is an example for your own Config-Section
    [myconfig]
    form=myStartForm
    imageBase=codeBase
    splashScreen=no
    separateframe=true
    try it
    Gerd

  • Newbie for the life of me can't figure out where in contact.php you tell it where to send form?

    Thx for any help.
    I know it's got to be so obbvious.
    Why would you send in php vs html?
    <?php
    if(!$_POST) exit;
    $email = $_POST['email'];
    //$error[] = preg_match('/\b[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b/i', $_POST['email']) ? '' : 'INVALID EMAIL ADDRESS';
    if(!eregi("^[a-z0-9]+([_\\.-][a-z0-9]+)*" ."@"."([a-z0-9]+([\.-][a-z0-9]+)*)+"."\\.[a-z]{2,}"."$",$email )){
    $error.="Invalid email address entered";
    $errors=1;
    if($errors==1) echo $error;
    else{
    $values = array ('name','email','message');
    $required = array('name','email','message');
    $your_email = "[email protected]";
    $email_subject = "New Message: ".$_POST['subject'];
    $email_content = "new message:\n";
    foreach($values as $key => $value){
       if(in_array($value,$required)){
      if ($key != 'subject' && $key != 'company') {
        if( empty($_POST[$value]) ) { echo 'PLEASE FILL IN REQUIRED FIELDS'; exit; }
      $email_content .= $value.': '.$_POST[$value]."\n";
    if(@mail($your_email,$email_subject,$email_content)) {
      echo 'Message sent!';
    } else {
      echo 'ERROR!';
    ?>

    Thanks. I'm working with different hosts and I guess thats where the confusion for me is coming in. In bluehost, I simply submit my form through form action to http://www.bluehost/bluemail. With the php form construction it 's form action is contact.php. Does this mean that the server I'm working with will uinderstand how to process contact.php and where to send it based on paramaters previously submitted? Or do I instruct the server via the php form? Thanks again
    Date: Wed, 8 Feb 2012 13:50:11 -0700
    From: [email protected]
    To: [email protected]
    Subject: Newbie for the life of me can't figure out where in contact.php you tell it where to send form?
        Re: Newbie for the life of me can't figure out where in contact.php you tell it where to send form?
        created by mhollis55 in Dreamweaver - View the full discussion
    The reason why this is done in php is because php is server-side scripting. It's telling your server to do stuff. HTML doesn't tell your server anything, it tells the client (the web browser loading it) to do things. Only your server can send an email.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4194407#4194407
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4194407#4194407. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

Maybe you are looking for

  • Should I get Windows 7 or 8 for my Macbook Pro 13" early 2011

    Hey All, I was just wondering if anyone could give me some advice what which version of Windows I should get. My plan is that I wanted to learn some beginning program stuff that might (in the future) progress into more advanced computer programming.

  • [SOLVED] Unable to use SUDO: issues with /etc/sudoers

    I have reinstalled Arch_64 and I have run into some problems with SUDO. I get the following errors when I try to use sudo: sudo : unable to stat /etc/sudoers : Permission Denied sudo : no valid sudoers sources found, quitting sudo : unable to initial

  • At the time MIRO Vendor bank information

    Hi, My client requires at the time of posting MIRO transaction system has to show the vendor bank information what we entered in vendor master data payment transaction. Is it possible? Regards, satya,

  • Generate inbound IDOC

    Hi All, The scenario is like...   One system say S1 is sending an IDOC to second system say S2. Now is this idoc is coming through a middle ware AMTRIX. In S2 the IDOC is coming as file and saved in UNIX path (al11). From last 2 days IDOC is not gett

  • I have forgot my security questions but the reset bar does not show

    i have forgot my security questions but the reset bar does not show