Embedded Form within a Task Definition

Why would I ever want to use an embedded form within a task definition instead of calling a manual action within my workflow?
What are the advantages/disadvantages?

You may not be able to. In order for a font to be used with a form field, it has to allow at least editable embedding. Some fonts don't and Acrobat honors any restrictions that are specified in the font file.
For more information, see: http://www.adobe.com/products/type/font-licensing/font-embedding-permissions.html

Similar Messages

  • ORACLE 11G: Embedding an ORACLE Form within an ADF JSF page

    We are currently reviewing the options available to allow us to embed an ORACLE 11G form within an ADF application (11.1.1.4), we are aware of the 'oraformsfaces' functionality but wanted to ask whether there were any other options available to us within ORACLE 11G?
    The reason for the question is that we were informed by ORACLE prior to upgrading to ORACLE 11G that the facility to embed an ORACLE form was 'standard' within ADF 11G hence the reason for upgrading.
    Thanks in Advance!
    Neil

    As I noted before, when you seamless, if you mean the user will be unaware that he has switched from a Forms app to an ADF app then I think he will notice - some clever integration of things like JS maps and Graphs might be seamless but a complete ADF app would be obvious to a user. Physically the Forms widgets are a different technology to ADF Faces - you can get the colors the same, you can event get the widgets the same size but it will pretty much be impossible to get the same because you are not comparing apples and apples.
    Regarding your questions
    1) Do you mean the time it takes to start up the applet? Possible longer than ADF but not necessarily
    2) Each form runtime process will have its own database connection and each user has his own applet.
    3) "Considerable" is subjective - it will involve some work but we specifically built the JS api to help
    Your last point - are you refering to "evolve core business logic into a common layer" what I mean here is that if you have a business process (e.g. hire_employee) which involves creating a new record,ordering a laptop and getting a security pass - then you could take that code out of Forms and put it somewhere else. You could then call that code from Forms (your old apps that you still need) and also call it from your new apps (so calll that code rather than calling the Forms application to do the job). - Of course, there is effort involved there...
    One final point to make ADF is NOT Forms - its not the "new" Forms and it doesn't replace Forms - so any change between Forms and ADF is by no means "go to the next version" - they are different technologies with different sweet spots - moving one to the other will be a considerable effort, and I would say one which should also accompany business process changes (if possible) as well..
    Hope this helps
    Grant

  • Not a nested form, but a form within a form??

    Hello, all.
    I've been given a task to add a file upload form to a page whereby all of the contents of the page are already contained within a form.  I know that it is not possible to nest form tags; however, would it be possible to place an iFrame within the form that contained another form, without being considered nested, and without screwing up the original form?
    Or would it be better to just place the iFrame in a div outside the form, and keep it hidden until called upon?
    I suppose that I _could_ just use a JavaScript popup to use another form; but if I can avoid that AND get this to work, that would be preferred.
    Thoughts?
    Thanks,
    ^_^

    Yes, you can place a separate form within an iframe. However, as Ian points out, the problem you'll have is a UX problem - how will you synchronize the submission of data between the two forms? I'm sure you can get where you want to get, but you'll definitely need to spend a bit more time testing this part.
    Dave Watts, CTO, Fig Leaf Software
    http://www.figleaf.com/
    http://training.figleaf.com/
    Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
    GSA Schedule, and provides the highest caliber vendor-authorized
    instruction at our training centers, online, or onsite.
    Read this before you post:
    http://forums.adobe.com/thread/607238

  • Unable to create a subtask within a task for cProjects

    Hi All,
    I am unable to create a subtask within a task using BAPI_BUS2175_CREATE. When I pass the GUID of the project definition and fill the corresponding task structures to the BAPI, a task gets created at the phase level. But when I pass the GUID of the task along with the task
    information, subtask does not get created. The BAPI returns the following error message:
    DPR_SHARED 051: You cannot create Task for (Task Name).
    Steps for recreating the error message are:
    1. GUID is found out using function module CONVERSION_EXIT_DPRCE_INPUT.
    2. GUID and task information is passed to BAPI_BUS2175_CREATE.
    3. Task is created if project definition GUID is passed, but if task GUID is passed, there is no subtask created. An error message is displayed:
    DPR_SHARED 051: You cannot create Task for (Task Name).
    Any help would be appreciated.
    Thanks,
    Tom

    Hi all,
    I have used the same and it works absolutely fine.
    here is a code sample
    CONSTANTS:
       lc_rfc_none        TYPE string VALUE 'NONE'.       " RFC on same server
    DATA:
      lv_header_task_guid TYPE bapi_ts_guid-parent_guid, " Header Task GUID
      ls_sub_task TYPE bapi_ts_task,
      ls_sub_task_upd TYPE bapi_ts_task_upd,
      lt_crtask_return TYPE TABLE OF bapiret2,
      ls_extension_in TYPE bapiparex,
      ls_extension_out TYPE bapiparex,
      lv_task_guid TYPE bapi_ts_guid-parent_guid. " Task GUID
    * Assign sub-task name. (Task Number is internally generated)
    ls_sub_task-task_name = 'ST 1.1'.
    ls_sub_task_upd-task_name = 'X'.
    * Assign Sort Number
    ls_sub_task-sort_number = '00010'.
    ls_sub_task_upd-sort_number = 'X'.
    * Assign Duration
    ls_sub_task-duration = 30.
    ls_sub_task_upd-duration = 'X'.
    * Assign Work.
    ls_sub_task-planned_work = 240.
    CALL FUNCTION 'CONVERSION_EXIT_CUNIT_INPUT'
      EXPORTING
        input          = 'H'
      IMPORTING
        output         = ls_sub_task-planned_work_unit
      EXCEPTIONS
        unit_not_found = 1
        OTHERS         = 2.
    IF sy-subrc <> 0.
    ENDIF.
    ls_sub_task_upd-planned_work = 'X'.
    ls_sub_task_upd-planned_work_unit = 'X'.
    CALL FUNCTION 'BAPI_BUS2175_CREATE'
         DESTINATION lc_rfc_none
         EXPORTING
             iv_parent_guid   = lv_header_task_guid
             is_task          = ls_sub_task
             is_task_upd      = ls_sub_task_upd
             is_extension_in  = ls_extension_in
          IMPORTING
             es_extension_out = ls_extension_out
         TABLES
             return           = lt_crtask_return.
    * If task is successfully created,
    READ TABLE lt_crtask_return WITH KEY type = lc_success number = '114'.
    IF sy-subrc = 0.
    * Get task GUID
    lv_task_guid = lt_crtask_return-message_v1.
    CALL FUNCTION 'BAPI_CPROJECTS_COMMIT_WORK'
      DESTINATION
        lc_rfc_none
      TABLES
        return = lt_bapiret2.
    endif.
    In order to find the GUID of the header task use function module:
    DPR_GET_GUID_BY_ID_FROM_DB
    with IV_Number  = task number for the header task and IV_OBJECT_TYPE = TTO
    Read the documentation for 'BAPI_BUS2175_CREATE' before using it.
    make sure you have maintained IS_TASK_UPDATE structure as well.
    Regards,
    Reema.

  • Deploy Task form for Human Task gives Exception

    Hi,
    I created a simple asynchronous process having just a human task to test the features of JDeveloper.
    This project compiled successfully.However at the time of deployment I am facing a java.lang.SecurityException.
    I am using :
    JDeveloper :10.1.3.4
    Ant Build O/p:
    Buildfile: E:\BPEL\Examples\handson\SampleHumanTask\build.xml
    [java] Java Result: 1
    validateTask:
    [echo]
    | Validating workflow
    [validateTask] url is file:/E:/BPEL/Installables/JDeveloper/integration/bpm/support/files/WorkflowTaskDefinition.xsd
    [validateTask] Validation of workflow task definitions is completed without errors
    deployProcess:
    [echo]
    | Deploying bpel process SampleHumanTask on localhost, port 8888
    [deployProcess] Deploying process E:\BPEL\Examples\handson\SampleHumanTask\output\bpel_SampleHumanTask_1.0.jar
    [deployProcess] Successfully deployed the process "SampleHumanTask" on server "localhost" and port "8888"
    deployTaskForm:
    [echo]
    | Deploying workflow form for SampleHumanTask on localhost, port 8888
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Application Deployer for default_SampleHumanTask_1_0_Approver STARTS.
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Copy the archive to E:\BPEL\Installables\OracleAS_1\j2ee\home\applications\default_SampleHumanTask_1_0_Approver.ear
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Initialize E:\BPEL\Installables\OracleAS_1\j2ee\home\applications\default_SampleHumanTask_1_0_Approver.ear begins...
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Unpacking default_SampleHumanTask_1_0_Approver.ear
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Done unpacking default_SampleHumanTask_1_0_Approver.ear
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Unpacking workflowform.war
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Done unpacking workflowform.war
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Initialize E:\BPEL\Installables\OracleAS_1\j2ee\home\applications\default_SampleHumanTask_1_0_Approver.ear ends...
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Starting application : default_SampleHumanTask_1_0_Approver
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Initializing ClassLoader(s)
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Initializing EJB container
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Loading connector(s)
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Starting up resource adapters
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Initializing EJB sessions
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Committing ClassLoader(s)
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Initialize workflowform begins...
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Initialize workflowform ends...
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Started application : default_SampleHumanTask_1_0_Approver
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Application Deployer for default_SampleHumanTask_1_0_Approver COMPLETES. Operation time: 188 msecs
    [deployTaskForm]
    [deployTaskForm]
    [deployTaskForm] BindWebApp error: javax.management.ReflectionException
    [deployTaskForm]
    BUILD FAILED
    E:\BPEL\Examples\handson\SampleHumanTask\build.xml:97: Error while deploying the form on server "localhost" Error message :
    java.lang.SecurityException
    at oracle.ide.IdeCore$7.checkExit(IdeCore.java:177)
    at java.lang.Runtime.exit(Runtime.java:88)
    at java.lang.System.exit(System.java:868)
    at oracle.oc4j.admin.deploy.cmdline.Oc4jAdminCmdline.executeCommand(Oc4jAdminCmdline.java:141)
    at com.collaxa.cube.ant.taskdefs.DeployForm.deployIAS(DeployForm.java:818)
    at com.collaxa.cube.ant.taskdefs.DeployForm.deployForm(DeployForm.java:578)
    at com.collaxa.cube.ant.taskdefs.DeployForm.deployForms(DeployForm.java:849)
    at com.collaxa.cube.ant.taskdefs.DeployForm.execute(DeployForm.java:875)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.Target.execute(Target.java:341)
    at org.apache.tools.ant.Target.performTasks(Target.java:369)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
    at oracle.jdevimpl.ant.runner.AntLauncher.launch(AntLauncher.java:321)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.jdevimpl.ant.runner.InProcessAntStarter.runAnt(InProcessAntStarter.java:295)
    at oracle.jdevimpl.ant.runner.InProcessAntStarter.mav$runAnt(InProcessAntStarter.java:43)
    at oracle.jdevimpl.ant.runner.InProcessAntStarter$1.run(InProcessAntStarter.java:71)
    Total time: 17 seconds
    Can anybody point out where I am going wrong?
    Thanks
    Dileep

    Hi,
    I tried that but did not work.
    Build.properties file:
    platform = ias_10g
    hostname = localhost
    http.hostname = localhost
    http.port = 8888
    cluster = false
    oc4jinstancename = home
    j2ee.hostname = localhost
    rmi.port = 12401
    opmn.requestport = 6003
    admin.user = oc4jadmin
    admin.password = welcome1
    jndi.user = ${admin.user}
    jndi.password = ${admin.password}
    asinstancename =
    domain = default
    rev = 2.0
    verbose = false
    apps = E:/BPEL/Installables/OracleAS_1/j2ee/home/applications
    default-web-app.dir = E:/BPEL/Installables/OracleAS_1/j2ee/home/applications/../default-web-app
    bpeltest.minCoverage = 100%
    bpeltest.timeout = 90
    bpeltest.numWorkers = 1
    bpeltest.package =
    bpeltest.results.dir = ${default-web-app.dir}${file.separator}results
    bpel.version = 10.1.3.1.0
    bpel.build = PCBPEL_10.1.3.1.0_GENERIC_061009.0802
    bpel.home = E:/BPEL/Installables/OracleAS_1/bpel
    oracle.home = E:/BPEL/Installables/OracleAS_1/bpel/..
    j2ee.home = E:/BPEL/Installables/OracleAS_1/bpel/../j2ee/home
    jndi.url = opmn:ormi://HTIPL-40130:6003:home
    jndi.InitialContextFactory = com.evermind.server.rmi.RMIInitialContextFactory
    soapServerUrl = http://LOCALHOST:8888
    client.classpath = E:/BPEL/Installables/OracleAS_1/bpel/../j2ee/home/oc4jclient.jar;E:/BPEL/Installables/OracleAS_1/bpel/../j2ee/home/../../lib/xml.jar;E:/BPEL/Installables/OracleAS_1/bpel/../j2ee/home/rmic.jar;E:/BPEL/Installables/OracleAS_1/bpel/../j2ee/home/../../lib/dms.jar;E:/BPEL/Installables/OracleAS_1/bpel/../j2ee/home/oc4j.jar;E:/BPEL/Installables/OracleAS_1/bpel/../j2ee/home/lib/jmxri.jar;E:/BPEL/Installables/OracleAS_1/bpel/../j2ee/home/lib/javax77.jar;E:/BPEL/Installables/OracleAS_1/bpel/../j2ee/home/admin_client.jar;E:/BPEL/Installables/OracleAS_1/bpel/lib/orabpel.jar;E:/BPEL/Installables/OracleAS_1/bpel/lib/orabpel-common.jar;E:/BPEL/Installables/OracleAS_1/bpel/lib/orabpel-thirdparty.jar
    Is there some other thing I should take care of?
    Thanks
    Dileep
    Edited by: user10230482 on Sep 18, 2008 1:44 AM

  • View/Save/Print Embedded Form on Webpage to PDF

    How can a user View/Save/Print Embedded Form on Webpage to PDF?

    Hi,
    Currently FormsCentral does not support to View/Save/Print Embedded Form from the Webpage to PDF. If you are the form author, you can save/print the form to PDF in FormsCentral, and the PDF forms can be viewed in Acrobat or Reader.Or if you like, you can save/print the entire web page to PDF using the browser, but the form could not be submitted then. I hope it's clear, and please let me know if you have any questions. Thanks!
    Kind regards,
    Shiyao Bao

  • Error in sharepoint 2010 designer while saving:"Content in the embedded form may be changed by the the server to remove unsafe content.Do you want to reload your page to see the results of the save? "

    Hi, 
    I am doing development  in sharepoint 2010 and facing this very weird problem.
    If I create a site page with the sharepoint look and feel for that site and try to save the site page,i am getting this error:**"Content in the embedded form may be changed by the the server to remove unsafe content.Do you want to reload your page to see
    the results of the save? "** and when i say reload,the server removes some parts of my page, e.g onclick event of html,asp buttons.
    This error just comes for any sharepoint site page,e.g i took a copy of 'How To Read Library' page just edited the text part of taht page,and when i try to save this error again comes up.
    However,if i create a simple aspx page with only htmltags like head body,then thr is no problem ,everything works great. But sharepoint look and feel pages are giving troubles while saving.
    has anybody seen this earlier,what could be the reason for this?
    Thanks

    I think the excerpt and link below is the why, but the page talks about server code and not javascript.  I guessing that this is why blank pages work, but not wiki pages.  Can anyone verify this?
    The following are general rules for using server-side code on a site page.
    If the page is uncustomized, server-side code is supported on the page.
    If the page is customized, server-side code does not run, and the page does not render. This includes the code-behind for the page itself.
    http://msdn.microsoft.com/en-us/library/office/aa979592(v=office.14).aspx

  • How to put more than 1200 characters in a text form within a pdf created in Adobe Acrobat

    I need to know how to put more than 1200 characters in a text form within a pdf created in Adobe Acrobat. I have a request from a customer to do so and after googling I have came up with nothing. Also the customer would like it if they could convert said pdf form to a microsoft word document with the text form.

    There's no limit on the number of characters you can enter into a text
    field, unless you set it as such.

  • Best practice for upgrading task definition without deleting task instances

    best practice for upgrading task definition in production system without deleting or terminating task instances
    If I try and update a task definition with task instances running I get the following error:
    Task definition 'My Task - Add User' may not be modified while there are active task instances
    Is there a best practice to handle this. I tried to force an update through the console but that didn't work. I tried editing the task from the debug page and got the same error.

    1) Rename the original task definition.
    2) Upload the new task definition with the original name.
    3) Later, after all the running tasks have timed out, delete the old definition.
    E.g., if your task definition is "myWorkflow":
    1) Rename "myWorkflow" to "myWorkflow-old-2009-07-28"
    2) Upload the new task definition as "myWorkflow".
    Existing tasks will stay linked to the original (renamed) workflow definition.
    New tasks will use the new definition.
    As the previous poster notes, depending on the changes you are making, letting the old task definitions stay active could have bad side-effects and might be better avoided.

  • Best practice for upgrading task definition in production system

    If I try and update a task definition with task instances running I get the following error:
    Task definition 'My Task - Add User' may not be modified while there are active task instances
    Is there a best practice to handle this. I tried to force an update through the console but that didn't work. I tried editing the task from the debug page and got the same error.

    The best way for upgrade purposes is to use the rename function of the TaskDefinition from the lh command line utility.
    Basically renames all current task instances with the TaskDefinition name. You can then alter the existing TaskDefinition and upload into identity manager.

  • Form Filler Yellow Task Bar Link Does Not Open task or do anything SharePoint 2010 InfoPath 2010

    Form Filler Yellow Task Bar Link Does Not Open task or do anything (SharePoint 2010 InfoPath 2010)
    Using a SPD workflow to run a approval process. This is a non-browser form. User receives task notification, opens form in IP Form Filler and sees yellow task bar notification. User Clicks on open task, nothing happens... OS = XP, On Win7
    = We get a never ending download box, and several logon security windows
    Attempted Fixes
    Clear
    InfoPath Cache
    Workflow History Looks good

    Hi,
    I understand that when you click on Edit this task in the message bar in InfoPath 2010, nothing happens. Does this happen when you open the email which contains the ‘Edit this task’ link?
    If so, you can try to check whether this key is in your regedit. If so, you can delete this key and have a test.:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{00000000-0000-0000-0000-000000000000}
    Back up the regedit keys before making any changes. For more information about backup and restore the regedit, please refer to these sites:
    Fix “Edit this task” In Outlook 2007:
    http://vettekerry.wordpress.com/2008/06/11/edit-this-task-in-outlook-2007-doesnt-work/
    How to back up and restore the registry in Windows XP:
    http://support.microsoft.com/kb/322756?wa=wsignin1.0#method1
    Thanks,
    Entan Ming
    Entan Ming
    TechNet Community Support

  • How to get absolute path of a form within the Forms

    Aslam o Alikum (Hi)
    How to get absolute path of a form within the Forms 6i or 9i
    For example
    i am running a from "abc.fmx" from C:\myfolder directory
    can i get the form path 'C:\myfolder' by calling any any function from "abc.fmb"

    There is no direct call that will always work. What you need to do is call get_application_property(current_form). This may have the full path in it, depending on if that path was defined when the form was launched. If there is no path, then you need to use TOOL_ENV.GETVAR to read the Forms<nn>PATH and the ORACLEPATH, parse those out into individual directories and then check for the FMX in each.
    I already have some code to do all this for you see:
    http://www.groundside.com/blog/content/DuncanMills/Oracle+Forms/?permalink=4A389E73AE26506826E9BED9155D2097.txt

  • Interactive Forms within an Acrobat Portfolio--- why not??

    Hi,
    I have a student asking why she isn't able to save a group of interactive forms within an Acrobat Portfolio, and have the Tracker recognize the responses to the form. Sounds as if this shouldn't be a problem. But...
    I've tried it myself, and it appears that when working from within a Portfolio, I have no access to the "Distribute Form" command. Is this correct or is it a bug?
    If I skip the Distribute Form option and instead upload the Portfolio to Acrobat.com, I *am* able to fill out the form and hit "submit". It *does* submit a reply to my email address, in the typical .fdf format. When I go to my email address I can download the .fdf file to my local machine, but after that the system seems to break down.
    TheTracker has no clue that any response has occurred.And when I try to "compile returned forms", the .fdf  files are not recognized: I cannot import the response.
    Is it because there was no "Distribute Form", that the Tracker doesn't recognize responses?
    It would seem like the most useful thing to be able to send a variety of forms to new employees in the Portfolio format. Can it be done? And how?
    Thanks! I hope someone can help, or at least clarify. The student will be back tomorrow and I'd love to have a reply for her.

    Hi "critter_monster" It is by design that the distribute options is not available for files that are in a Portfolio. You can only distribute forms that are not attached to a portfolio. Since tracker only tracks forms distributed the the distribution workflow, it is expected that it would not recognize the .fdf from the submit button.
    Adobe does have a "wish list" form that you can submit feature requests through. You can always submit a request for that functionality. The form is here: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&promoid=EWQQL

  • End User Can Not Open A Form within Responsibility

    Hi to all,
    I have an end user who tries to click on a form within a responsibility. And the form does not launch. As matter of fact, the browser green progress bar does not show up. There are other forms within that same responsbility that she is able to launch.
    This end user was not having this issue before. She was able to launch any forms under any responsibility without any issue.
    I tested the same responsbility and same forms on my machine as was able to launch without any issue.
    These are the following conditions the end user has:
    IE 7
    Jinitiator 1.3.1.29
    I tried the following steps to remedy the issue:
    Cleared cache and cookies.
    Clear jar cache
    Did not fix the problem
    Reinstalled Jinitiator
    Did not fix the problem
    I turned on the show java console and show exceptions dialog box on end user jinitiator. When I go back and click on the problematic form, no java console shows up, nor does any exceptions dialog box.
    Does anyone have an idea, why this may be occurring and how to resolve this issue.
    Thanks
    F. Lucio
    Edited by: Ferreira Lucio on Oct 9, 2009 1:15 AM

    Greetings Hussein,
    I worked on your recommend steps, and still unable to resolve issue:
    Try opening the form using your username from the user's machine, and do the same with this specific user from some other machine.
    I logged onto oracle with my credentials, and went to the same responsibility and form. This issue happens to me. But when I go back to my local machine. I have no problems.
    Did you try using some other browser on the user's machine (for example, Firefox)?
    I installed firefox, but everytime I click on a form, it tells me to download jinitiator.
    Any recent changes have been done on the user's machine or in the user's profile options?
    Unsure what profile options have changed for user
    Note: 310961.1 - How To Enable The Java Console Jinitiator 1.1.8 and 1.3
    Note: 232651.1 - How to Enable Tracing in Jinitiator
    If none of the above helps, obtain FRD and see if you get more details about the error -- See (Note: 150168.1 - Obtaining Forms Runtime Diagnostics (FRD) In Oracle Applications 11i).
    I uninstalled jinitiator, then reinstalled. Turned on java console and enabled tracing. Console/tracing does not come up for this form. On other forms it does.
    I uninstalled jinitiator a third time. Then reinstalled. What I notice is that jinitiator still has the java console checked and tacing parameters set. What I believe could be happening is the jinitiator is not being uninstalled completely.
    Where or how can I check if the jinitiator gets removed completely.
    I have check the control panel and jinitiator is not there. I also check HKLM and it is not there also.
    Any ideas how to move forward.

  • Best Practices for Forms within Site Studio Templates

    Last summer our university redesigned our entire website using site studio. We only use the content server for the SiteStudio add on. During the redesign, we found that it wasn't clear how we were supposed to migrate our current web forms (applications, payment forms, etc) to sitestudio. Our current workaround is to place the form within the content server, and have it submit data to a cgi (perl,php) placed on a separate web server. We wrap the backend of the form within an html template that looks like our sitestudio templates so that it appears to the end user that they are still on our website.
    Obviously, this is not ideal. I have been reading documentation on how to use the content server to host JSP files. The jsp files run flawlessly if they are accessed via the weblayout folder directly. I have not yet found a solution that will allow me to wrap my jsp forms within our existing sitestudio templates.
    Has anyone else encountered this problem, or come up with an alternate solution to this problem?

    Thanks, I appreciate your taking time to find the precise answer. Just today this bit me again.
    I have a need to modify the ComboBox template to italicize placeholder text.  That's a easy thing to do; however, now that I've created a new template I have to name it and add a Style={StaticResource MyNewStyle} to ALL the comboboxes in my app. 
    If I leave my new template unnamed - to override the default - none of the theme resource changes that I already have in place are picked up by the existing ComboBoxes, and they revert to their default look.
    There's clearly something wrong in the way I'm doing it or the way it's implemented.

Maybe you are looking for

  • Time Machine:The backup disk ran out of space unexpectedly. .....

    Hi, I upgraded to Mountain Lion when it was released and yesterday I began getting this notice from Time Machine: "The backup disk ran out of space unexpectedly. Time Machine will try to make more space available by removing expired backups during th

  • Create an HTML form

    This question was posted in response to the following article: http://help.adobe.com/en_US/dreamweaver/cs/using/WSE27BE211-43F0-4b43-95C1-3D4EB7A8A98E.ht ml

  • BDC - Number of records

    Hi Peers, I am using call transaction method.  After executing the program and data is uploaded, i want to display i) number of records processed ii) no., of error records  iii) no., of success records on the same screen.  So where do i capture this

  • Flash Player Wall Street Online Journal an Safari

    After reading the WSJ online for years, all of a sudden any article that has an image in it, causes the right side advert to pop-up on the left side and block out part of the article. Any suggestions on how to fix? Thanks. David

  • Enable VBEO-AESKD in sales order schedule line

    Hi All, I am trying to enable the field VBEP-AESKD in the sales order line item schedule line tab. Currently it is disabled. I did see couple of SDN post who were trying to update it but from back end thru BAPIs. Under what circumstances will this fi