How to: migrate Form to Excel via DDE to Web Form functionality

Old client/server environment 4.5 runtime has several forms going back and forth to excel via DDE.
Want to migrate Forms into Web Forms environment using 9iAS ... anyone have ideas on how to best approach handling the excel spreadsheet related issues?
Thanks in advance! John

Welcome to the Oracle Forums. Please take a few minutes to review the following:
<ul>
<li>Oracle Forums FAQ
<li>Before posting on this forum please read
<li>10 Commandments for the OTN Forums Member
<li>Announcement: Forums Etiquette / Reward Points
<li>How to ask questions the smart way
</ul>
Following these simple guidelines will ensure you have a positive experience in any forum; not just this one! ;-)
This is a fairly common question in the Forums. A simple search of the forum would have given you your answer! poelger provided a link to the Forms Upgrade Center - which is a great place to start! :)
Hope this helps,
Craig B-)
If someone's response is helpful or correct, please mark it accordingly.

Similar Messages

  • How to send a user defined parameter to a web form?

    Hi,
    I4m looking for a solution how to send a user defined parameter to a web form when I start the form from a html-page.
    I think that it should work to add the parameter to the URL.
    Example: I added myparam=myvalue at the end oft the URL
    http://my.server.com:7777/f60cgi?form=myform.fmx&userid=scott/tiger@mydb&otherparams=useSDI=NO&lookAndFeel=generic&colorScheme=teal&myparam=myvalue
    How can I fetch the parameter myparam in forms?

    You have the user the otherParams parameter, which you can specify in the formsweb.cfg file, or override on the url. e.g. http://myhost/servlet/f690servlet?config=myApp&otherParams=myParam=myValue
    In the Forms Builder, in the Navigator window, there is a node called Parameters. Create one in there, and then you can refer to it like a block variable. e.g. if :myparam = 'myvalue' then...
    At runtime, Forms will match up any parameters on the command with parameters defined in your form, and populate them for you. You don't have to do anything.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • Have you tried another way to recieve payments via the online web form besides PayPal?

    I am trying to provide the option to transfer payment to the organizations account via the the web form. I heard about Chase Quickpay and wondered if I could use the banks option instead of PAYPAL. This will deposit the funds directly into the bank account. Any thoughts? What about your experiences with Paypal, good or bad?

    Hi,
    Sorry FormsCentral does not support other payment besides PayPal.
    For more details please see: http://forums.adobe.com/docs/DOC-1632
    Thanks,
    Lucia

  • How to simulate DDE in Web Forms?

    Surely there is some elegant way to do DDE in a Web Forms (6i)environment?
    Given that Forms 7i will only support internet deployment and not C/S, there must be some "migration path" to replace the functionality of DDE in the C/S environment.
    My need is a button on a Web Form to dynamically insert data from 8i server into an Excel "template" spreadsheet, then open the spreadsheet on the client. The user can then manipulate data in the spreadsheet. A button in the spreadsheet to synchronize the spreadsheet changes back to the 8i server and exit the spreadsheet and return to the Web Form.
    Forms Server 6i is running on Solaris 2.6
    Any ideas on techniques to do this?
    Can Oracle COM Automation or Oracle Objects for OLE (OO4O) do the dynamic inserting of data into the excel template spreadsheet? (I don't know the difference between these??)
    I know web.show_document can be used with a URL to the spreadsheet on the web server (IIS) and the MIME type will launch excel on the client and copy the file to the client.
    How then can I get the updated cells back into 8i from the spreadsheet?

    Magesh,
    the issue of a SSO protected form showing the logon dialog is a knwon issue for Windows200 and the Oracle9iAS base release. If you applied Forms Patch 1 then this should be solved. Hope that I am right in that you are using Oracle9iAS and not Oracle9iDS. Do you see the Single Sign-On logon screen or the Forms logon dialog directly? Check the forms90.conf file in teh forms90/server directory as this contains the Form sso settings (mod_osso) which by default is commented out and therefore inactive. You need to remove the commenting '#' characters and make sure that each sentence having a '#' in front, after that starts on a new line.
    The Forms deployment documentation within the Oracle9iAS docu provides this information too.
    Frank

  • How can I use the global varialbes in the Web Form Server?

    When I migrate the Form5 to Form6i and deploy the form into WEB, I encounter a problem. In Form5, I use a form to call all the functions forms and process the login. So, the functions forms can get the login user's information by :Global variable. Now, in Web method, I use a jsp to process the login and functions hyperlinks, and the problem is how can I build a global variable in jsp and access by form in form server?
    Thank you very much!

    Nested tables are not supported in Forms 6i, only simple object tables.

  • Where/How do I copy the link to the online web form?

    Hi there,
    I am a total beginner with FormsCentral. Here is my situation:
    I have registered for a trial which, in theory, grants 1 online form. 
    I have imported a PDF template into FormsCentral's desktop tool. Then I have saved the new form. As a result, the form now appears in the list with a "cloud" symbol. Also I can see that my "online form credit" is now down to zero.
    I'd be grateful for any guidance on how to find/copy the online form's URL, or navigate to it.
    Success with this seemingly simple step will determine whether I ugrade to the next Plan (and whether I encourage colleagues in a 1000+ employee organization to also use FormsCentral). 
    Many thanks,
    Eric

    In other words: Is is possible to import a fillable PDF document into FormsCentral, and publish it as an online form (the same way as for a form designed afresh from FormsCentral desktop tool)?

  • How to run custom Oracle report6i concurrent program in web forms

    I developed a custom report using oracle6i and registered into AOL and assigned to a request group. I can run this concurrent program from form based application works fine. How to run this concurrent request from web forms?
    What are the steps to follow to create a concurrent program link on web forms?
    I want run this request and pass parameters and output also in web forms...
    I'm a first time user of web forms, So kindly reply with detailed steps to define concurrent request in web forms for a custom report.
    Thanks in Advance
    Naveen
    [email protected]

    I hope ur requirement to do all the CP processing from Self-Service OAF pages. If so,
    browse thru Re: Start Concurrent from OA Framework page , Re: RE: Submitting concurrent request and getting the results back.
    and
    'Concurrent Processing: Request Submission and Monitoring' section in dev guide.
    Let us know if you face any issues in the implementation.
    - Senthil

  • How can I validate a field on a Flash web form?

    I'm trying to create a Flash web form. I have many fields
    like Email, username and so on. I would like to add a code to
    validate the email, How can I program the Flash to report an error
    if the Email is invalid? or if the username is empty?
    Thank you

    you can use a conditional statement, like when the use clicks
    the 'submit' button or something, then run a check to see if
    there's anything in the fields. Where email is concerned you may
    want to check by the '@' reference. so use something like:
    if(username_txt.text == null || email_txt.text.indexOf("@")
    < 0) {
    //throw an error here and stop the sending
    EDIT: good god!!!! sorry kg :)

  • Forms 10.1.2.0.2: Web Form does not appear at Runtime with CALL_FORM

    Hello there,
    We have a number of forms we're executing as web forms using Oracle JInitiator 1.3.1.22. We have one form in particular that, when a button is pressed, is supposed to call another form via the CALL_FORM built-in.
    We are passing a parameter list to the new form, and executing the CALL_FORM built-in with these Setting Parameters:
    CALL_FORM( formmodule_name => '<OUR_FORM_NAME>',
               display         => NO_HIDE,
               switch_menu     => NO_REPLACE,
               query_mode      => NO_QUERY_ONLY );When we run the starting form as a web form (via JInitiator 1.3.1.22), and press the button to call the other form, all buttons on the starting form are greyed-out/disabled. The called form does not appear.
    I have carried out a number of checks with my own debugging tool (stored procedure writing messages to a table via an autonomous transaction), and forms focus is definitely been transferred to the called form. For example, the WHEN-NEW-FORM-INSTANCE trigger in the called form is definitely being executed.
    I suspect this problem is JVM-related rather than Forms-specific. My current plan of attack is to request the Application Server Logs tomorrow morning (I don't currently have access to them) and see if I can find any Java-related error messages. However, if any of you reading this have experience of this type of problem and can offer any assistance, please don't hesitate to let me know your suggestions/advice.
    Cheers.
    James

    You could check the settings of the window in the calling form. If its set to "Modal" or "Dialog", and the window in the called form has other settings, the new window might be opened "behind" the old window.

  • Opening apps form from excel via hyperlink

    Hello all
    Is there away to open a specific oracle apps form from hyperlink in excel ?
    *Note : used oracle apps form version 11.5
    Respectfully
    Khaled Farouk

    hello all
    i've got the solution .
    it's like this link just change your forms & responsability id
    http://<server_name>:<port>/OA_HTML/RF.jsp?function_id=4893&resp_id=50239&resp_appl_id=551&security_group_id=0&lang_code=US
    Respectfully
    Khaled farouk

  • How can I read an excel file .xls from an forms 6i

    Hi
    I have forms6i and webutil don t work with this version, can I read an excel file from forms6i.
    Thank u

    Hi hosoriol,
    You can refer an excel as an external table first using the steps below and then you can start reading from it.
    If you want to update the excel file then create an view and create instead of triggers for it.
    Steps
    h3. 1.[Create an external table for the excel file |http://www.adp-gmbh.ch/ora/misc/ext_table.html|Click here to view detailed description]
    h4. 1. Create a directory in Oracle where you have kept the xls file
    create or replace directory ext_dir as '/home/rene/ext_dir';h4. 2. grant read, write on directory ext_dir to scott;
    h4. 3. creating the external table
    create table ext_table_csv (
                                                i   Number,
                                                n   Varchar2(20),
                                                m   Varchar2(20)
                     organization external (
                                                     type   oracle_loader
                                                     default directory ext_dir
                                                    access parameters (
                                                                                 records delimited  by newline
                                                                                 fields  terminated by ','
                                                                                  missing field values are null
                                                   location ('file.csv')
                     reject limit unlimited;
    Note_
    If you want to update the excel file then create a view and then create the instead of triggers to do the update, delete or insert.[Creating views on external tables | http://www.dba-oracle.com/oracle_news/2005_9_1_updating_external_tables.htm]
    h3. 2. Use the data block wizard and connect to the corresponding schema and create a database block.
    Kindly click Correct or Helpful if it helps Thanks :-)

  • How can I import an excel sheet and have it be functional in iOS Numbers?

    Pretty much exactly as title.  To summarize, I'm a kinesiologist and I've developed a pretty complex spreadsheet that enables me to program exercise prescriptions on the fly but I want to be able to take it with me more portably on my ipad air.  Unfortunately when I load the spreadsheet into numbers it wont recognize any of the drop down menus that are coded into the excel spreadsheet on my macbook.  Help? Thanks,
    Paul

    My apologies. Data Validation Tool didn't click at first. There isn't a data validation tool in numbers per se, but you can limit input in many cases using the cell formatting tool: http://help.apple.com/numbers/ipad/2.2/#/tan23393f3a
    Cells set up using Data Validation may very well not retain the Data Validation settings when converted to Numbers for iOS. The two formats seem to use different mechanisms to achieve this. Meaning that 1) you would likely need to re-format these cells once you have the spreadsheet in number, 2) if you export the spreadsheet to EXCEL, the drip downs may likely not work, leading to 3) if you intended process is move the file back and forth between Numbers and Excel, you may be in for a bit of grief.
    If you intent to simply leave the file in Numbers, you the link above to see how you may wish to format those cells. I think you will be able to achieve what you are looking to do.

  • How can I reset my password via Lion Server web front-end?

    I'm trying to enable my users to be able to change their passwords from the default value I've given them. This can be done from the user's profile page but when with the new Lion Server web interface, I select the "Change Password" at the bottom of the page and I get the following result:
    Changing passwords is turned off.
    You can turn it on by using the Server app on the server.
    I'm assuming I cannot use the Server app on my client computer (a MacBook Pro) so I use the Server app on the server.  I cannot find out how to enable this feature.  I've been all over the Lion Server help documentation but can't find out how.
    I've selected my server in the Hardware section on the left-hand side of the Server app and gone to the Settings tab and checked the "Enable screen sharing and remote management" box but I still get the message above.
    Thanks in advance...

    You will have to enabled "Profile Manager" tab.
    Inside this tab, enable also the "Device Management", which will start a network directory.
    This make sense for a centralized user mgmt.
    But a bit not user-friendly enough.
    After setting above two,
    go back to the "Web" tab, and click the pencil to see the grayed-out activated.

  • How to place file on server through client vie web-forms

    We are on 9i application server, which is being used all over the nation through URL. Now is there any way/option to place file on the server through form-web page.
    Thanks.

    Here's an example:
    http://e-ammar.net/Oracle_TIPS/using__webutil_file_transfer.htm

  • How do I save an SVG via save for web?

    I can't save for web to SVG format from illustrator CS6. The option isn't in the format list of the save for web dialogue; I only have gif, jpeg, png-8 and png-24. I am sure it used to be there, so where has it gone?
    Have I got to do something in the process of setting up a new document?
    TIA.

    Has it been removed from the 'Save for web' then?

Maybe you are looking for

  • Uncheck "Fill screen with one page at a time"

    Is it possible to set a javascript to turn off the preference "Fill screen with one page at a time" when entering in Full Screen mode? So that way, it will override Acrobat or Reader application preferences when the PDF is open on users computers.

  • Time and Pitch appears completely unusable at 96k (I/O Error-36)-any ideas?

    Hi there, Any help for the following gratefully received. Sorry about the excessive length of this post, but I've tried a whole bunch of things trying to sort out my problem and I'd rather list them all in the interests of clarity. (or should that be

  • Validation vs Stack canvas on tab page

    Hi, I have a problem about how to show/hide view when validation was triggered. My situation is: - I have a 3 pages tab-page. On the first tab, I have a stack canvas. I have codes to show the canvas at When-new-form-instance and show/hide the view at

  • Problem with default apps in GNOME 2.10.1

    I cannot change the Open with applications for the different file types - like .doc, .avi, etc in GNOME. When I select application from the Open With dialog I get - Error - Cannot add application to the applications database. Does anybody have any id

  • Fact LTS behaviour

    Hi Would like to check if the behaviour that I encountered in Fact LTS is normal. E.g. Fact A has 1 LTS AB in LTS AB, there are 2 physical table sources: Table 12 and Table 23 I have 2 measures in Fact A: 1. Measure A, is mapped directly to Table 12