Exiting Form From Web

Hello,
I have deployed the form in web using OAS 4.0. I have created an html file to call the form.fmx from the server. My problem is that I am unable to come to this Html page after I exit the form.
Can Any one help me.
Thanks in advance

Add a Post-Form trigger to the form triggers with the following code:
Web.Show_Document('file:\<virtual dir>\Page.htm', '_self');
where the first argument is the URL for the web page you want to display and the second, '_self', says to display the page in the same browser instance. Look at the online doc for Web.Show_Document for alternatives.
One thing: if your web page automatically runs the form and you don't want that to happen on form exit, then you need to have a second, seemingly identical web page that doesn't automatically run the form and call that one in Show_Document.

Similar Messages

  • Calling adobe form from Web Dynpro ABAP

    Hi Friends,
                        This is the following error, which i got when i tested my application. Calling adobe form from Web Dynpro ABAP.
      WebDynpro Exception: ADS: Request start time: Tue Nov 16 14:00:22 YEKT
      2010(200,101).
                        Can some one tell me how to solve this....
    Regards
    Sankar

    Hi,
    Please refer to this same link in forum
    WebDynpro Exception: ADS: Request start time, start Interactive Form
    WebDynpro Exception: ADS: Request start time
    Thanks
    Pradeep

  • How to call a form from WEB.SHOW_DOCUMENT 10g  Is this possible?????

    how to call a form from WEB.SHOW_DOCUMENT
    I would like to call a form using the WEB.SHOW_DOCUMENT the idea is from the menu that is attached to the form instead of use call_form use WEB.SHOW_DOCUMENT(...my_newform.fmx)
    Is this possible?????

    Hi ,
    I think yes...but under some circumstances....
    In your formsweb.cfg file you should define a named configuration alias... such as:
    [TEST]
    workingDirectory=C:\TEST_DIR
    form=C:\TEST_DIR\MY_NEWFORM.FMX
    Then , after stopping , starting your OC4J instance..... you call that as (in a button , for example):
    web.show_document('http:<your_server>:<port>/forms/frmservlet?config=[TEST]',_blank);
    I have not tested it.....
    Regards,
    Simon

  • Forms from web

    Hi Dears, How are you ?
    when i run form from web i had the error FRM-99999 18121 , the problem is java bean !! how i can to solve this problem. thanx

    You probably need to supply more info.
    1) What version of forms.
    2) Does this happen with a simple form (EMP with no other code).
    3) When does the error happen.
    Regards
    Grant Ronald
    FOrms Product Management

  • Calling form from web application

    i use the below url for calling form from web application.
    http://host51.yan.com/forms/frmservlet?form=test&width=700
    i would like to know about "frmservlet"
    if it's a servlet file then
    where its located in application server10g

    The servlet is part of the forms-installation on the application-server, on the local OC4J this is located in $ORACLE_HOME/forms/j2ee/formsapp.ear
    What exactly do you want to know about the servlet?

  • Un-embed applet on oracle 10g forms from web browser

    Hi all,
    I want to ask how can i seperately open my applet from web browser in oracle 10g forms. To be more precise to my question, i dont want to use my applet in web browser. It should be opened in new window i.e. applet window.
    Regards,
    Qasim Javaid Malik

    If you want to run forms without the IE browser (hidden)
    Try this
    To open web forms just like client server with a hidden IE window, I have invented two methods.
    ****** make seperateFrame = True on formsweb.cfg ******
    Method 1
    <job id="SYMA">
    <script language="VBScript">
    Const SW_HIDE = 0
    Const High = 128
    strComputer = "."
    strCommand = "C:\Program Files\Internet Explorer\IEXPLORE.EXE http://symphony-devl.atradiusnet.com/forms/frmservlet?config=syma"
    Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" _
    & strComputer & "\root\cimv2")
    ' Configure the Notepad process to show a window
    Set objStartup = objWMIService.Get("Win32_ProcessStartup")
    Set objConfig = objStartup.SpawnInstance_
    ' Create Notepad process
    Set objProcess = objWMIService.Get("Win32_Process")
    intReturn = objProcess.Create _
    (strCommand,Symphony, objConfig, intProcessID)
    If intReturn <> 0 Then
    Wscript.Echo "Process could not be created." & _
    vbNewLine & "Command line: " & strCommand & _
    vbNewLine & "Return value: " & intReturn
    Else
    Wscript.Echo "Process created." & _
    vbNewLine & "Command line: " & strCommand & _
    vbNewLine & "Process ID: " & intProcessID
    End If
    </script>
    </job>
    Method 2
    <job id="SYMA">
    <script language="VBScript">
    dim objShell
    set objShell = CreateObject("InternetExplorer.Application")
    objShell.ShellExecute "C:\Program Files\Internet Explorer\IEXPLORE.EXE", "http://ws-79767.atradiusnet.com:8890/forms/frmservlet?config=localJpi", "", "open",0
    </script>
    </job>
    Change the URL as appropriate, it's fantasitic .... !!!!!!
    Any questions let me know ...... !

  • Can I invoke Oracle Form from web page?

    Does anyone know how can I invoke an Oracle Forms form from an html page?

    Hi Hans
    That's what I thought re the url but I can't find out what it is, it briefly appears in the browser but then goes leaving me with the formsweb.cfg config url. I am running from the Builder on Windows 2000 and it's Forms 10g.
    Marc

  • Auto fill form from web page content

    I need to fill a field in a PDF form (version 8 or newer) with a value provided by a web page.  The webpage is a counter to provide a unique, sequetial number.
    I have been able to do this with Get() when using FormCalc, however I need more logic control than is provided in FormCalc.
    I have attempted to implement the logic with JavaScript and getURL. When I open the form the JavaScript Console indicates: "TypeError: xfa.host.getURL is not a function"
    Here is my code with some console diagnostics included:
    console.println("formEmailed = " + xfa.form.topmostSubform.formEmailed.value);
    if( xfa.form.topmostSubform.formEmailed.value == 1) {
      console.println("assignedTR = " + xfa.form.topmostSubform.assignedTR.value);
      if( !xfa.form.topmostSubform.assignedTR.value == 0){
        console.println("Getting URL...");
        xfa.host.getURL("http://somehost.com/index.html", true); //Get( "http://somehost.com/index.html");
        console.println("Field value = " + this.rawValue);
       // Verify a value actually got assigned
        if( this.rawValue.length > 0)
          xfa.form.topmostSubform.assignedTR.value = 1;
      } else {
        console.println("Not getting URL");
    Note: formEmailed and assignedTR are global variables.  The code is associated with the DocReady event.
    I have been unable to locate any examples of filling a field in a from from a webpage.
    Ultimately, I want the value from the webpage assigned to this.rawValue so that the value becomes part of the data in the form.
    Suggestions?

    Thanks.  I could not move the discussion, so I reposted to the LiveCycle forum.
    Here is the link to that discussion: http://forums.adobe.com/message/5696842#5696842
    Message was edited by: seeggy

  • Filling in PDF forms from web forms

    I have acrobot pro, and can build PDF files. What I don't know how to do is build a web form that'll fill in PDFs, and then make a copy to the server, or email the pdf to the person who filled in the form.
    What forum is the correct place to ask this question? I don't want to be irritating people by asking in the wrong place.

    This forum is fine, you just may want to provide more details. Acrobat's help has more information on creating forms, as do a number of tutorials at AcrobatUsers.com.
    Submitting the entire PDF either to a web server or sending it by email is easy, but if it has to work with Reader, the form has to be Reader-enabled. You can do this in Acrobat, but there is a 500 form limit on the number of returned forms Iincluding hardcopies) that you can use data from if you distribute the document to more than 500 users. When you post a Reader-enabled document on a publicly accessible web site, you are effectively distributing it to an unlimited number or people.
    An alternative is to set up the form to submit just the form data to a web server or send it via email. There are no licensing restrictions for this. The form data can then be later imported back into a blank form, stored in a database, or the data file archived.
    Much of what you asked about does not involve Acrobat directly, but rather programming of the server to respond to a form submission.

  • Acrobat/IE restart repeatedly when opening Autofill forms from web

    I had previously posted this problem in the Acrobat forum but it was suggested the problem may lie with LiveCycle Forms.  Here is the problem:
    I am having a problem with a users Acrobat and IE continuously restarting when attempting to open an autofill form (aka a form that gets filled in automatically with info from a database) from the web.  This is a corporate network so I suspect it may be a policy or firewall issue but not sure.  I have checked all my Dom policies and can not find anything that would cause this problem.  I am not sure if this will occur if the content being used to fill the form is blocked at the firewall.  Any help will be greatly appreciated.
    Tuuek

    So I assume that the data to prefill your form is retrieved at the server level before the form is opened then you merge that data onto the template at rendering ...right?
    If so can you write the data to a data file and try importing the data file to see if the same thing happens.
    Paul

  • Saving Offline PDF form from Web-Dynpro with Dynamic File Name

    Hello All,
    We have a offline PDF form.... When we save the form, a default file name appears. We need to change this default name to some value that is already available in the form fields.
    I have gone through some posts in the forum. However not able to figure out the solution.
    Following are the details:
    1. Web-Dynpro used : ABAP Web-Dynpro
    2. Form Type: Native
    3. Offline Editable form
    Regards,
    Kunjal Patel

    Hi Rajesh,
    I have not yet found a solution....
    Also as you have seen no one is replying.....
    All,
    Should we consider that this issue does not have a specific solution?
    Regards,
    Kunjal

  • Validation of Adobe Form from Web Dynpro

    Hi, can you please support me with the following problem:
    I created an Adobe Form, which contains several mandatory fields. The Submit-button of the form is positioned in the WebDynpro-View, in which the Adobe Form is embedded, but not within the Adobe Form. I choce this way in order to avoid a useless submit button in the Adobe Form for the Offline Scenario.
    (How) is it possible to do a validation check in the Adobe Form if all mandatory fields are filled by clicking the Submit button outside the Form?
    Thanks in advance,
    Thorsten

    Hi Thorsten,
    That would be done exactly the same as checking mandatory text fields in a standard Web Dynpro application, the fact that you use an interactive form makes no difference. Whether you click on a submit button in the form or a button in the Web Dynpro, the end result is simply that the entered data is transferred to the Web Dynpro context and an action is triggered. In the action (Web Dynpro code) you can check if the data in the context is valid, e.g. mandatory fields or whatever validation you like. However, if you want to do validation in the form itself, so mandatory fields are also checked offline, you have to use scripting in the form itself.
    Kind regards,
    Sigiswald

  • Send PDF Form from web page

    Hi all. I have a web site with a PDF fillable form. Currently, customers must print and snail mail it to us. Most of them use web based mail, so the old mailto: function (which relies on email client like Outlook) is way out of date.
    I cannot find a solution in the forums. Can anyone tell me if I can wrap the form in php and use a php mailer to forward it to my sites mailbox? This would be similar to the standard Contact Us form submission.
    It seems Adobe would give some guidance here as this has been asked several times in the forums. Could really use some pointers. Assistance much appreciated.
    Bob

    > It seems Adobe would give some guidance here as this has been asked several times in the forums.
    They have.
    You have the Doc.submitForm method (listed in the JS API Reference) that will allow you to submit form data to a webservice. There are 6 code examples of how to use this method included in the API Reference as well.
    For XFA forms created in LiveCycle Designer, there is an "HTTP Submit" button as one of the default form objects provided to the user.
    You also have the entire "SOAP" object available to you in Acrobat JavaScript (again, covered in the API Reference) if you need to make very advanced webservice calls.

  • Special character are getting overlap when form is trigger from WEB UI

    Hi Everyone,
    I am facing one problem in WEB UI CRM Version 2007 when using the Smartform in Web UI. Form is Translated in two languages EN and ES. Form gets triggered through action; when triggered in SAP GUI (CRMD_ORDER) it gets displayed properly in both the languages.
    But When i trigger the form from WEB UI in ES (Spanish) language, using Print Preview Button some of the special characters such as
    É are getting overlapped like shown in attachment.
        Please let me know if anybody has faced such issue or Has any resolution for this.
    Any help will be rewarded with points. Thanks in advance.
    Regards,
    Sagar Deshpande

    Hi Sagar,
    Yes that's a problem for Cyrillic fonts , I suppose you are using two action definitions : one for ES and one for EN print.
    For Spanish you have to use a smart style which supports the ISO Cyrillic characters and that will then open up correctly for Spanish users.
    Regards,
    Hasan Rafiq

  • Problem during view Adobe Form in Web Request

    Hi All,
    I am facing problem while viewing the adobe form inside the Web Request form.
    Let me describe the issue clearly.
    I need to have a table in Adobe Form.So i created one table type and bind it to the table structure created, in Adobe Form.
    Then i uploaded the form as web request successfully.
    Now when i m trying to view the form from web ui, its unable to assign child node data at runtime.so dump is coming.
    Can anyone show light on this....i have tried all the possibilities.
    Unfortunately there is no standrad scenario available for reference.
    Regards,

    Hi Satish,
    Thanks for your reply.But this is not my requirement.
    If you will go to tcode CRM_UI and log in using business role CRMGRMPRGMAN, then go to Application and open one application.Here there is one assignment block called 'Application Form'. Here i have uploaded my Adobe Form as web request.
    This is working fine when i have simple linear form.
    But when i am using table inside the form and doing binding for it, Application is getting created with that form but while openning it here in the assignment block, dump is coming as below.Its not able to assign the child node.
    The ABAP call stack was:
    Method: NODE_ELEM_2_STRUCT of program CL_WD_ADOBE_SERVICES==========CP
    Method: NODE_2_DDIC of program CL_WD_ADOBE_SERVICES==========CP
    Method: DATASOURCE_2_FM_PARAMS of program CL_WD_ADOBE_SERVICES==========CP
    Method: CREATE_PDF_DDIC of program CL_WD_ADOBE_SERVICES==========CP
    Method: CREATE_PDF of program CL_WD_ADOBE_SERVICES==========CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/CADOBE==================CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/CADOBE==================CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Regards...

Maybe you are looking for

  • Animated Gif with large base image & small animated part.

    Hello guys I'm not really sure how to explain that, due to my limited English comprehansion. I will try with images. I can easily create animated gif out of multiple layers, given each layer is identical, with small changes accuring over time. But I

  • Updating iPad 2 from iOS 5.1.1 to iOS 7 - how is iCloud affected?

    My iPad 2 is running iOS 5.1.1 and I use iCloud for my contacts/calendar, etc. If I update to iOS 7, how to I ensure my iCloud accounts won't be affected?

  • ABUMN: Transfer asset value to components (IFRS)

    Dear Experts,      My client wanted to segregate assets as components and transfer amounts from main asset to sub assets through ABUMN, but these values should appear only in Dep area 75 (for IFRS purpose). Client also wanted to have Ex: Main asset N

  • How to strictly lock screen in landscape mode by Agentry editor?

    Hi I am using SSM 3.0, Agentry client v6.0.38.1. How can I lock Android device screen in strictly landscape mode for our customized Agentry app through Agentry editor? If I lock device screen in landscape mode then it will affect other applications t

  • Need a new adapter

    For some strange reason im power adapter has stopped working! While I was using my laptop the power in my bedroom went out, a breaker had flipped. I turned it back on but wasnt getting any power from it. I tried several different outlets, there is no