Bulk Conversion of Forms

We wish to convert our remaining character mode forms to run on the web (either 6i or 9i). Initially we do not require any enhanced functionality. It appears that in order to make the same simple changes required in each form we need to laboriously open each one in forms builder.
Specifically, the changes I have identified I need to make are:
- Change "Mouse Navigation Limit" to Item.
- Set "Use 3D Controls" to Yes.
- Change the font of all items and boilerplate.
The third of these is not absolutely essential but seems to involve the most work. (I cannot find a way to change the default font for web like you can with client server.)
Has anyone any tips on how a bulk conversion can be made less labour-intensive.
We have the source as both forms3 inps and 4.5 fmbs.

Yep, i think you could get away with editing the FMT's ... but writing a parser(or manually step through) to analyze and search for those object will probably take you more time than it would to write a simple API program.
But i guess it all depends on how many modules you are looking to convert?! ... under 20-30 modules it probably doesn't really start making sense to automate things with API.
Please contact me at [email protected] to get a FormsAPI Master script of what i think is the best way of changing your 3 things, so that you can test and see it for yourself.
Cheers,
Stefan

Similar Messages

  • How to stablish a bidirectional conversation beetween forms 10g and servlet

    Hello I am investigating how to stablish a bidirectional conversation beetween forms 10g and a servlet. We want to make an application in Java that calls forms but we want that global variables send their values to forms and forms send values to java application.
    If any one can help me with a tutorial o guide.
    Best Regards,
    Paola

    It is possible to call out to Java from Forms starting with Forms 9i.
    It is not yet possible to call back into Forms from Java though. That will probably come in v11.
    You could potentially make a JavaBean that connects to your Java code thru sockets or some other method and place it in the form. That support also came in 9i.

  • Conversion of forms app to adf and 'user'

    we are about to task the conversion of a forms app to adf.
    there is a lot of back end pl/sql code, audit triggers that use the 'user' built in function call which will not be of much use if the adf application is going to login as one user and set a username in the security context or something of that nature.
    do we have no choice but to go through and change the 'user' function call to something else?
    doesn't this make it difficult to support the app using the oracle designer tool and the generated table api?
    any information on axioms regarding this problem most appreciated.

    By default your application will use one user to connect to the database via a connection pool, which is the preferred option for scalability. However if you're building a new application on top of a large Oracle database legacy system where this doesn't suit, you can change ADF's default behaviour to use something called "Dynamic JDBC Credentials". In this mode, the username/password is used to login to the database, effectively using the user's credentials to connect to the database, and essentially the database user function will return the desired result.
    So for you it's a question of:
    a) If ultimate scalability is the priority, convert your existing code over to stop using "user"
    b) If scalability is not a priority, but supporting your legacy database infrastructure is, go with the Dynamic JDBC Credentials option.
    CM.

  • Conversion from forms 4.5 to 6i .....urgent !

    Hi all,
    I'm trying to convert my forms from Forms version 4.5 to 6i.
    In the process, all the variables declared as char are getting converted to varchar2.Say it was:
    (in version 4.5)
    v_variable char(22);
    This gets converted to
    (in version 6i)
    v_variable varchar2(22);
    But if the length of the char variable is not defined it is getting defaulted to varchar2 (1).This will give me various errors because of the conversion into a variable of length 1.(Earlier it was not compulsory to define the length of char variables)
    Is there any way that I can prompt the compiler to convert char variables into varchar2(200) ?????
    Any suggestions will be of great help.
    Thanks in advance.
    null

    But if you had a variable defined as "my_var char;" it had a
    length of 1 implicitly. This should not affect your runtime
    behavior.
    You can check into using the Forms API to convert the text
    string "varchar2(1)" to varchar2(2000). You can find
    information on the API at:
    http://otn.oracle.com/products/forms/pdf/274326.pdf
    Regards,
    Candace Stover

  • CONVERSION FROM FORMS 4.5 - FORMS6

    I have about 300 4.5 fmb's to convert.
    Before I embark on this painfull task I have a few questions....
    Can I convert any menu's I currently use or do I need to rebuild them?
    I want to use the default smart bar available in 6.0. The current forms use buttons in a block. Where there is code to alter buttons properties ie. set_item_property('button_bar.excq' etc will it be possible to amend to
    set_item_property('smartbar.excq' etc ??

    There is no need of any tool wrather than Oracle Developer 6 to upgrade Forms 4.5 to Forms 6.0. Just open your
    Forms4.5 version Forms in Forms6.0 builder. It will automatically upgrade the forms into V6.0. If you want to add any
    funtionality or feature of Forms6i you need to do it manually after upgrading V4.5 forms.

  • Conversion PDF Form to Smartforms or Sapscript possible?

    Hi Gurus,
    Is it possible to convert a pdf form to a Smartforms form or sapscript form?
    Reason is because for some new pdf forms like IDCN_CASHFLOW there is no proper form in Smartforms or Sapscript available.
    2nd reason is customer does not have an ADS installed.
    Thanks+Regards
    Dieter

    Hi Dieter,
    generally no such tool.
    However, the Adobe form is designed to separate the data logic and layout logic, therefore an experienced smartform+adobe form developer can convert it manually without very large effort.
    Since the SAPscript form mixes the data logic and layout logic, it is not recommended be used no more.
    Cheers.
    Tao

  • Conversion from Forms 4.5 to 6i

    Hello
    Do someone knows wich are the most common problems converting the forms from 4.5 to 6i Forms version ?
    Is there a product that can help me ?
    Thanks
    Fabien

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by wave80:
    Hello
    Do someone knows wich are the most common problems converting the forms from 4.5 to 6i Forms version ?
    Is there a product that can help me ?
    Thanks
    Fabien<HR></BLOCKQUOTE>
    One of the biggest problem is that the "field" in form 4.5 is replaced by "item" in form 6i in all non-procedural language and procedureal language. You have to replace it manually as far as I know. Another problem is that form 4.5, after compiling in form 6i,would be resized the layout. You may be required to either enlarge or reduce the size of the layout. Hope this little clue may help you
    null

  • How to use BULK COLLECT in Oracle Forms 11g

    Forms is showing error that "Feature is not support in Client Side Program" when i am trying to impliment Bulk collect in Forms 11g.
    i need to load full data from DB to my form becuase using cursor is very slow....
    Is there any method/Work around to achieve this ....

    declare
    type arr is table of emp%rowtype ;
    lv_arr arr;
    begin
    select * bulk collect in to lv_arr from emp;
    /*written code here to process the data and write in to file*/
    end;Unless you are inserting/updating the data you are holding in the array into a database table I don't think there is much peformance gain in using bulk-collect in conjunction with writing a file. Bulk processing will increase performance by minimizing context switches from the SQL to the PL/SQL engine, nothing more, nothing less.
    In any case bulk processing is not available in forms, if you really need to make use of it you need to do it in a stored procedure.
    cheers

  • Adobe forms-Bulk Printing

    Hello Gurus,
    Can you please send me the documentation on bulk printing of forms .
    Can you even send me about digital signatures also.
    Thanks,
    Indra Karan

    Hi all,
    Regarding the digital signatures:
    You can add a signature field to your form from the standard library in Adobe Designer.
    You can then check the details when the form is submitted using the <a href="https://help.sap.com/javadocs/NW04S/current/wd/com/sap/tc/webdynpro/clientserver/adobe/pdfdocument/api/IWDPDFDocumentSignature.html">IWDPDFDocumentSignature interface</a> which is part of the PDFDocument API.
    Hope that helps.

  • Problem with Migration Forms to Apex ...

    Hello !!
    I discovered Apex a few days ago, so I began with the Oracle tutorials, where I found the conversion from Forms to Apex : "Converting Your Oracle Forms Applications to Application Express 3.2".
    I tried to do the same, with a Unix server and my laptop with Windows.
    I downloaded the Forms which where on my Unix server on my laptop, and then converted them with frmf2xml.bat.
    Then I created a project and uploaded only one Forms Module (_fmb.XML). After upload, the Percent Complete column is lower than 100%.
    My problem is at the following step : "Generating Your Application Express Application".
    When I click on "Create Application", select "Based on Migration Project" and then on "Next", I have one of the following errors :
    - 1 error has occurred * The project, "Test Gestuser" does not contain any Blocks associated with database objects.
    - 1 error has occurred * Database schema PROCIE does not contain the associated database objects for the project, login. Ensure the database schema associated with the project contains the database objects associated with the uploaded Forms Module .XML file(s)
    I really don't understand these two errors, having yet checked all the possible error sources, user, schema, ... ?:|
    I have probably forgotten to give some informations, so ask them ;)
    Thanks for your help,
    Pierre C.
    Edited by: Pierre C. on 19 juin 2009 17:22

    I found the problem(s) ... but now I have another one !!
    The problems are with the Forms : I opened them with Forms Builder and created a new Block with the assistant. Then I compared this block with another "normal" block : they haven't the same properties.
    My block has an associated canvas and database source, whereas the other "normal" blocks haven't.
    Where does the error come from ??
    Is there something to do with Forms Builder ?
    On my Unix server before downloading the forms ?
    Another thing to do ??
    Thanks,
    Pierre C.

  • I keep getting conversion failure when I try to merge PDF files into one file

    What am I doing wrong?  Very frustrating

    Hi KLM3340,
    Please send us your original file using the following File Conversion Issue form and Adobe will take a closer look at the file.
    Best,
    Sara

  • Download Oracle Forms 4.5 documentation

    hi,
    I want to download Oracle forms 4.5 complete documents. Can any one help me where i can look for that.
    Thanks.
    Alka

    Hi,
    I am sorry, I am writing to you but not in regards to your problem. Rather, I need a favor, can you pls upload a set of files to install forms 4.5 and reports 2.5 on some webserver and give me a link?
    Alternatively, if you know of a link, pls let me know.
    I have an old development, I need to make some changes in that and it has become a must for me, because with conversion to forms 6.0 I am getting errors.
    Thanks
    Ash

  • Convert Forms 4.5 to 6i

    Looking for advice and/or information regarding the conversion
    of Forms 4.5 to Forms 6i and the process involved. We have
    converted some forms from 4.5 to 5.0, so I am familiar with that
    process. How different is 6i in this capacity ?? Any documents,
    web sites, or other information will be helpful.
    Thanks

    when you load earlier versions of Forms into 6i the Forms will
    automatically upgrade the code to 6i (ex- CHAR to VARCHAR2).
    Forms will prompt before making changes to the code.
    I backed up all the Forms 4.5 code before opening them in Forms
    6i. The upgraded code works fine.
    Same procedure works with Reports 6i
    -Peter

  • PHP email form checkbox values?

    Hello,
    I'm creating a php email form which part of it consists of a few checkboxes that I need to get the values of. My php knowledge isn't that great therefore I used a tutorial to successfully create the bulk of the form.
    I currently have 7 checkboxes set up as such:
    <input type="checkbox" id="grade_5" name="grade[]" value="Grade 5" />
    Each of these are named "grade[]" to be stored in an array called "grade".
    I know that the values are successfully stored in the array as they show up in the browser when I echo the array.
    $grade = $_POST['grade'];
    $N = count($grade);
    for($i=0; $i < $N; $i++) {
         echo($grade[$i] . " ");
    So, the part I am having trouble with is getting the values to show up in the body of the email.
    $body = "
    Grade Level(s): $grade
    All that is returned in this case is the word "Array" instead of the desired checked grade values.
    Any help is much appreciated! Thank you in advance!
    *Note: All other values (textboxes, selection dropdowns, etc.) are already successfully sent to the email.

    danedmonds wrote:
     All that is returned in this case is the word "Array" instead of the desired checked grade values.
    That's because $grade is an array. If you want to access the values, you need to use a loop. Alternatively, use implode() to turn it into a comma-separated string, like this:
    $grade = implode(', ', $grade);

  • Automated tool to convert from Forms to Dynamic Page for Oracle Portal?

    Hi Experts,
    We are thinking to convert majority of the forms in our portal to dynamic pages. Is there any tool to automate the conversion from Forms to Dynamic page for Oracle Portal 9.0.4.1.0?
    Thanks, Abbas

    Dear Abbas,
    You seem to have two issues... ;-)
    If you are finding the Forms are getting corrupt very easily, I'd suggest you go and open a Service Request into Oracle Support (http://metalink.oracle.com). There are a couple of ways where you can have these not corrupted (depeding on the Portal version you are in) and if there isn't yet a way you may get a bug logged and fixed within the next patchset eventually (improving the product functionality).
    As to changing it to a dynamic page it might give you a bit more flexibility... yeah. It really depends on what you desire to do. I'd slowly start to code them in this way if your goal is this. As to the former coded forms unfortunately as I've said there isn't a strait way to do that, so you may do this slowly in time...
    I hope it helps you a bit further...
    Cheers,
    Pedro.

Maybe you are looking for

  • Page is not rendering as per requirement request

    Hi All, Basically Here is the scenario. Based on selectoin of particular service item from combo box(dropdown list), We are creating the JSF controls dynamically on new page for further process. We are maintaining the controls information in database

  • Yosemite - Creative Suite 5 - Updates will not install

    Hello, I have an iMac running Yosemite 10.10.2 and I am having issues updating my CS5. The Application Manager alerted me to updates but when I tried to update, all updates failed to install: Some Updates Failed to Install: The following updates were

  • Can't connect to SMTP Server

    Since upgrading to OS X Yosemite 10.10.3 I am no longer able to send email via my SMTP server. The SMTP server is the AWS SES service http://aws.amazon.com/ses/ and the smtp server name is email-smtp.eu-west-1.amazonaws.com. Apple Mail refuses to con

  • Pass parameter to Bex Query via Query String

    Hello, I am trying to pass a parameter into a Bex Query from a 7.0 portal. I created a Bex query iView and I have tried various permutations with the Bex Query String property of the iview but nothing seems to work. The query runs but the parameter i

  • Importing changlist failed: unknown error has occured

    Hello, while importing a changelist from mas-test to mas-prod-system I get error in transport service: Importing changelist failed: unknwon error has occured, trying to reconnect. I reinstalled the service, connections are ok, but this didn't solve t