To convert forms oracle6i to forms10g conversion

Dear All
Good Day..
Can any one tell me how to convert forms6i to forms10g.
Regards
Sathian A

Dear Manu
I created a bat file with the below content. and run the batch file i shows the below error.
how to convert .olb,.pll, .mmb and also tell me the all the object conversion.
echo Start Forms Compilation.....This may take few minutes......
for %%f IN (*.fmb) do frmplsqlconv module=%%f userid=sathya/youngworld@ora10g log=%%forms_conversion.log
for %%i IN (*.fmb) do U:\oracleds10g\bin\convrsion\frmcmp userid=sathya/youngworld@ora10g module=%%i batch=yes module_type=form compile_all=yes
Log written into File - SHTR200.fmborms_conversion.log
processing ....
Log - SHTR200.fmb touched : Thu Jul 30 12:32:37 GMT+05:30 2009
ERROR opening SHTR200.fmb :oracle.forms.jdapi.JdapiException: FRM-18108: Failed to load the following objects.
Source Module:SFST8200.olb
Source Object: KEY-UP
Source Module:SFST8200.olb
Source Object: KEY-DOWN
Source Module:SFST8200.olb
Source Object: KEY-CLRBLK
Source Module:SFST8200.olb
Source Object: POST-TEXT-ITEM
Source Module:SFST8200.olb
Source Object: WHEN-NEW-ITEM-INSTANCE
Source Module:SFST8200.olb
Source Object: ON-ERROR
Source Module:SFST8200.olb
Source Object: ON-MESSAGE
Source Module:SFST8200.olb
Source Object: KEY-EXIT
Source Module:SFST8200.olb
Source Object: KEY-LISTVAL
Source Module:SFST8200.olb
Source Object: KEY-HELP
Source Module:SFST8200.olb
Source Object: PRE-FORM
Source Module:SFST8200.olb
Source Object: WHEN-NEW-FORM-INSTANCE
Source Module:SFST8200.olb
Source Object: KEY-CLRFRM
Source Module:SFST8200.olb
Source Object: ABOUT
Source Module:SFST8200.olb
Source Object: OG_STANDARD_TEMPLATE
Source Module:SFST8200.olb
Source Object: OG_SEARCH_UTILITY
Check subclass and library dependencies
Log - SHTR200.fmb released : Thu Jul 30 12:32:37 GMT+05:30 2009
[End of Log]
Log written into File - SHTR200.fmborms_conversion.log
processing ....
Log - SHTR200.fmb touched : Thu Jul 30 12:43:59 GMT+05:30 2009
Physical file name: U:\oracleDS10g\BIN\convrsion\SHTR200.fmb
Log - SHTR200.fmb released : Thu Jul 30 12:43:59 GMT+05:30 2009
[End of Log]

Similar Messages

  • Using or converting forms developed in forms6i to forms10g

    Could you please tell me
    how to use or convert forms developed in forms6i to forms10g (Developer suit)

    You just open them with Forms Builder 10g Compile and save, you need to upgrade your libraries as well.
    Best place to start with is [url http://www.oracle.com/technology/products/forms/htdocs/upgrade/index.html]Forms Upgrade Center Here you can find tips and documentations and every information you need.
    Tony

  • Converting Forms 6i to 10g on Linux

    I hope this will help ...
    REQUIREMENTS ANALYSIS
    The Comet6i application is be migrated to 10g in two phases.
    •     Phase-I : Migrated from Comet6i Application to 10g on W2K Server.
    •     Phase-II : Made the Comet10g Application Linux Compatible.
    PHASE I
    In the Phase-I, the COMET6i application is migrated to 10g on Win2K Server. The following tasks are to be carried out during this phase.
    1.     Source Code Verification
    2.     Upgrading of Comet Application objects to 10g
    3.     Migration of 10g specific forms to be done individually
    4.     Check for the completeness of the process.
    Pre-requisites
    i.     Developer/200010g IDS is installed on all COMET Workstations.
    ii.     Change the Windows Registry value of TNS_Admin = M:\OraXP\NET80\admin
    Step 1: Source Code Verification
    Checked out the COMET6i version3.5 of the application source code from Harvest comet6i repository. Excluded any unnecessary files from the application. Created an excel/spreadsheet that contains all of the files sorted by category (forms, libraries, menus, graphics, utilities and reports).
    Step 2: Upgraded Application
    I.     Did the code changes in 6i forms
    1)     RUN_PRODUCT: Every occurrence of run_product in forms has been replaced with CALL_REPORT procedure which is in the attached Library Comfun.pll.
    2)     V$SESSION: Wherever there is a query for selecting OSUSER from V$session has been replaced with :GLOBAL.ntuser.
    3)     WIN_API: WIN_API.get_windows_username replaced with :GLOBAL.ntuser.
    II.     Upgraded the forms from 6i to 10g in batch mode.
    Upgrading of COMET Application is done in the following sequence:
    1)     Library files (.pll/plx): Opened each library file in iDS and compiled it. This created the 10g version of each library.
    2)     Form files (.fmb/.fmx): Started with form files that do not have references (List : MST021, MST027, DEFAULT, MODEL, MST046). Opened these forms individually in the iDS and generated it.
    3)     Migrated all the remaining forms to 10g in batch mode using Oracle utility frmcmp.exe .
    Step 4: Checked for the completeness.
    1)     UNIT TESTING: Unit testing was done after complete migration of the forms 6i to forms10g on Win2K Server and following problems were fixed.
    2)     CANVAS & FIELDS WIDTH: When we upgraded to 10g forms, some of the fields’ width was changed and canvases were overlapping to each other. This was due to non-existence of the parent property classes. We ensured that every master form is present in the directory before up gradation.
    3)     FILE NAME EXTENSION: We have renamed every form / report / icons / libraries to upper case and extension of the files in lower case for uniformity across modules. (eg: STK001.fmb, STK01.rdf, COMFUN.pll)
    PHASE II
    In the Phase-II, the COMET10g application is made Linux Compatible.
    Issues
    Following issues are identified for carrying out this task.
    1.     Case sensitivity of Linux
    2.     OS Related Function Calls and Built-Ins
    3.     Batch Commands
    4.     HOST Commands
    Solutions
    The possible solution to the above mentioned issues are:
    1.     Case Sensitivity : It is suggested that all forms, reports as well as libraries to use UPPER CASE to eliminate this issue. This will provide uniformity in coding.
    2.     OS Related Function Calls: OS routine calls such as WIN_API routines has to be changed to corresponding Linux function calls
    3.     Batch Commands : Batch commands used in the forms has to be changed to Linux shell scripts.
    4.     HOST Commands : These commands are to be changed to corresponding Linux commands.
    Steps
    1.     Generated XML for 10g forms in batch mode.
    1)     frmf2xml.bat: Using Oracle 10g utility frmf2xml.bat; all 10g forms were converted into XML format for editing purpose.
    2.     Utility developed to address the case-sensitivity issue of linux.
    1)     A basic utility is developed to change the following keywords in the XML file.
    2)     FORM Calling Routines : All the form-names were changed to upper-case in CALL_FORM, NEW_FORM & OPEN_FORM built-ins.
    3)     PROPERTY VALUES CHANGES: Values of LibraryLocation, ParentModule, ParentFileName, and IconFilename are changed to upper case to ensure compatibility with Linux OS.
    3.     Fixed the basic problems in the XML file itself using the utility.
    4.     Converted the XML back to fmb.
    1)     frmxml2f.bat: Oracle’s frmxml2f.bat utility is used to convert xml files back to FMB format. All master forms are done individually and rest all files in batch mode.
    5.     Generated the fmx on Linux in batch mode.
    1)     Created a directory structure in Linux for Comet Development.
    2)     WINSCP Utility: Copied all fmb files to Linux server using WINSCP utility.
    3)     frmcmp_batch.sh: Oracle’s frmcmp_batch.sh shell script used to compile all the fmb to generate fmx i.e. runtime in Linux environment.
    6.     Icon files are bundled to a jar file.
    1)     icons jar file: Icon files were bundled to a jar file with the support of DBA.
    2)     UI_ICON_Extension: Utility search to change the registry to show icons / bmp / gif files as icons
    7.     Copied the reports to Linux server.
    1)     rwconverter Utility: All COMET 6i reports are upgraded to 10g using Oracle utility rwconverter.exe in batch mode, and then copied to Linux Server using WINSCP facility.
    8.     Tested the application for functionality.
    1)     UNIT TESTING: Unit testing was done on each form for testing the functionality and data flow by COMET TEAM. The following points are to be taken care, before going to live:

    i think you better hire a professional consultant for this kind of help, seeing that the requirements are a bit complicated.

  • Error when converting form to XML

    I get this error when trying to convert a form using this method:
    frmf2xml.bat OVERWRITE=YES AvaAcPt.fmb
    Oracle Forms 10.1.2 Forms to XML Tool
    Copyright(c) 2001, 2005, Oracle. All rights reserved.
    Processing module AvaAcPt.fmb
    WARNING: Invalid value (100) for property DataType on object OK.
    WARNING: Item CURR_CODE - all ListItemElements must have an Index, Name and Value.
    WARNING: Invalid value (100) for property DataType on object OK.
    WARNING: Invalid value (100) for property DataType on object INACTIVECUSTOMER.
    WARNING: Invalid value (100) for property DataType on object OK.
    XML Module saved as AvaAcPt_fmb.xml
    The WARNING: Item CURR_CODE - all ListItemElements must have an Index, Name and Value. is obvious. It a list is empty this warning is thrown out. Of course my concern is when we do the XML to Forms conversion later will the list item and associated code be reconstructed correctly?
    As for the 3 OK buttons and the INACTIVECUSTOMER button the converter puts a DataType attribute, which is meaningless to a button.
    I tried to find any peculiarities with the buttons but could not find any.
    Has anybody else experienced this problem?

    Hi,
    I have got the same warning “ all ListItemElements must have an Index, Name and Value” when converting form from fmb to xml using frmf2xml.
    Have you find any course of this and how to fix it?
    Thanks!

  • Any 3rd party tools to convert FORMS to XML and back?

    The Oracle conversion tool that comes with 10g Forms gives errors.
    I was wondering whether there any any 3rd party tools?
    I searched to net with no success.
    I bumped into one site which gave these 2: FormGreg or FormsTool (http://www.orcl-toolbox.com/formstool.asp).
    FormGreg is not available (I Googled but no success) and FormsTool (I downloaded and installed) has no XML conversion tools.

    Hi,
    Thanks so much for replying. I posted the errors here (no answers though):
    XML to Forms conversion gives error for menus
    Error when converting form to XML

  • WHY - give workable examples of using JHeadstart to convert forms into ADF.

    Why give examples of how to use JHeadStart to convert forms in to ADF, but not allow it to be done with the evaluation version ... I assume it was possible with the 10g versions. Is it broken in 11g.
    I was lookig to build a case for migrating an oracle forms application to Oracle Java and not a IBM or JBOSS or even .Net application, I can't build that case now, I have no budget to engage Oracle, have to do this of my own bat. Company has been take over by bigger company that has IBM stack.
    Is Oracle this follish to allow the smaller users of Oralce to go by the way side, be lost to other languages etc

    We deliberately did not include the Forms2ADFGenerator in the evaluation version.
    Modernizing your forms application, possibly migrating it to ADF is a considerable effort that is often underestimated.
    Migration tools like the Forms2ADFGenerator can help to a certain extent but are by no means a magic bullet. This is something we cannot stress enough, as over and over again we see people who think migration tools can make the difference. They cannot.
    If you want to make a choice of development environment to modernize your forms application, then the availability of a migration tool should not play a role!
    It is a fundamental and strategic decision to go for Oracle ADF which should not be influenced by a minor time saver like a migration tool.
    To decide on the use of JHeadstart, the evaluation version with the tutorial should be convincing enough.
    The real power of Jheadstart is not in the Forms2ADF Generator, this tool is just a lbonus that can save you a bit of time.
    Here is some more info:
    When does JHeadstart Forms2ADF Generator save time
    The amount of work that can be saved by using the JHeadstart Forms2ADF Generator (JFG) very much depends on the structure of the Oracle Forms application at hand. The JHeadstart Forms2ADF Generator provides most savings for forms that have the following characteristics:
    * Standard-Forms data retrieval and data manipulation through blocks based on database tables, with master-detail relations defined between the block
    * Complex user interface, many (stacked) canvasses, many tabs, many list of values, and other display types
    * PL/SQL logic mostly limited to user interface dynamics: conditionally showing/hiding user interface items, and conditionally changing the properties of user interface items. While JHeadstart does not convert PL/SQL logic, this type of logic is easily implemented in the ADF application because JHeadstart provides many declarative property settings to implement this behavior.
    PL.SQL Logic
    JHeadstart has made the deliberate choice to not automatically convert the PL/SQL logic to Java. The reasons for this are:
    * It is impossible to automate the migration of a two-tier architecture (logic in Forms or in the database) to a three tier Model-View-Controller architecture as is common in JEE web applications, including ADF-based applications.
    * The architecture of the converted application should be identical to the best-practice architecture of an ADF application that is build from scratch. If the architecture is the same, the same skill set can be used to maintain both migrated applications and ADF applications build from scratch. In addition, by going for a best practice architecture, the application is more flexible, and can be maintained easier at lower cost.
    * When using the JHeadstart Forms2ADF Generator, you get this best-practice ADF architecture that is identical to ADF/JHeadstart applications that are built from scratch.
    Other Forms2ADF Considerations
    And even if it turns out the JFG adds a lot of value, there are many other questions you should ask yourself before embarking on a Foms2ADF project.
    For example:
    * Apart from technical reasons like old Forms verisons no longer supported, are there real business reasons and business benefits for migrating that justify the migration effort?
    * To what extent is the application still meeting functional requirements?
    * Are there issues with stability and end user friendliness?
    * Old forms applications are typical "window-on-data" screens, you see the structure of the datamodel through the layout of the screens. Modern web 2.0 composite applications are more task-oriented with good support for human workflow. You should consider to what extent it wants to leverage all these new user interfaces capabilities that come with ADF Faces and WebCenter.
    * How does the application fits in the overall IT landscape? What interfaces to other systems exist, what (old/obsolete?) technology is used to implement those interfaces?
    * What about batch functionality and reporting facilities?
    * May be part of the functionality of the current system can be replaced with standard off-the-shelf software?
    * How sound, well structured and future proof is the underlying datamodel?
    * To what extent are you looking at service-orientated architectures? Whats the SOA maturity level of your organisation?
    * Above questions help to answer the key question: how desirable and benficial is it to migrate an old monolitic forms application 1:1 to a monolitic ADF aplication? How does that fit in overall IT strategy?
    * Organisational isues: who will migrate the system, who will maintain the system? Is outsourcing considered? etc.
    Next Steps
    We offer a Forms2ADF assessment service in which we migrate a number of sample forms selected by the customer to assess the added value of the JFG, and we discuss all of the above questions
    For example, I did one Forms2ADF assessment where it turned out that JFG added litlle or no value, but we were still able to convince the customer of the combined power of ADF and JHeadstart in (re-)building ADF apps from scratch.
    You also might want to take a look at some presentations I did on this topic, and some online demo's:
    * Guidelines for moving from Oracle Forms to Oracle ADF and SOA: http://www.slideshare.net/stevendavelaar/forms2-adfsoa-ukoug
    * JHeadstart Forms2ADF Generator – Migrating from Oracle Forms to a Best-Practice ADF application: http://www.slideshare.net/stevendavelaar/jhs11-forms2-adfukoug
    * 3 online demo's of forms2adf conversion process: http://www.oracle.com/technetwork/developer-tools/jheadstart/overview/index.html
    Hope this helps,
    Steven Davelaar,
    JHeadstart Team.
    Steven Davelaar,
    JHeadstart Team.

  • I  would like to convert former purchases to DRM free. Where did the tab on the right side of iTunes Store go. What's it labeled? Can I still do these upgrades?

    I  would like to convert former purchases to DRM free. Where did the tab on the right side of iTunes Store go. What's it labeled? Can I still do these upgrades? I've done some in the past and would like to do some more and can't figure out how anymore.

    I  would like to convert former purchases to DRM free. Where did the tab on the right side of iTunes Store go. What's it labeled? Can I still do these upgrades? I've done some in the past and would like to do some more and can't figure out how anymore.

  • Converting forms from  9.0.4 to 10.1.2.0.2.

    converting forms from 9.0.4 to 10.1.2.0.2.
    when opening the forms in 10.1.2.0.2 libraries are also loaded along with
    forms and i'm able to compile. But when running the form FRM-40735 ON-ERROR trigger
    raised unhandled exception ORA-06508. (In 9.0.4 it works fine).
    Forms_path corrected in Registry and default.env and working directory is added in formsweb.cfg.
    that's all i have done, could you please suggest if anything else i have to do to sovle this error.
    Edited by: [email protected] on Feb 23, 2009 9:10 AM

    I have compiled by - File->Convert->(Binary_to_text)->Convert
    and deleted the the .pld files. But, the same error.

  • When I select "Convert" using the Adobe PDF conversion - I get "Error signing in"

    When I select "Convert" using the Adobe PDF conversion - I get "Error signing in"

    You need the CreatePDF forum

  • Converting Forms 3.0 to Web Forms

    Hi,
    Can I use f60cmp.exe for converting Forms 3.0 INP files into *.fmb files?
    if yes, Could you also please tell me that what are all necessary steps to be taken for making the form as a web based form.
    Thanks in advance,
    Muthu

    I appreciate your help Dunkan. your reply was very much useful.
    I guess, i've mentioned wrong file name in my last posting. In forms 9i, the exe name is f90cmpm.exe (Am i correct?)
    Also, When i convert the form as web form , what will be the forms user_interface? (Is it CHARMODE or GUI?)
    Thanks in advance,
    Muthu

  • Converting Forms and Reports 6i into Jdeveloper

    Can we convert Forms and Reports 6i into Jdeveloper? If yes then
    please give me the detail. Thanks.

    I have read on Metalink:
    MS Windows XP Professional certification: XP is currently not certified or supported on any release of Designer/SCM (Awaiting other related (IDS) products certification).
    Maybe the problem is caused by this.

  • Converting forms 5 to 6i

    Hello,
    we are working on windowsNT platform. I would like to know what
    changes need to be done to convert forms 5 to 6i and also for
    the menu while converting from 5 to 6i.
    Please give suggestions and help me.
    Regards,
    Alpesh

    check out the online help of forms6i under the update keyword
    you'll find some things to cosider. All in all it should be
    quite smooth, open fmb and generate it.

  • Problems Converting from Form6i to Forms10g/Reports10g - first experiences

    Hello,
    We are converting a Forms6i application to Forms10g.
    There is one fmb-file with a size of more than 3100kb.
    First step and surprise is that after using the
    forms migration assistant for converting the file from
    6i to 10g the size is minimized and now about 1000kb.
    We did not use the migration assistant and opened all
    6i files with FormBuilder10g (WindowsXP)
    Assuming that the conversion will be done if we are saving the file in form10g-builder.
    After doing a lot of chances in the big-fmb file and saving it -
    closing the form and opening it - the changes were lost!
    (Perhaps because there was more than one crash of form builder?)
    My questions are:
    - how can i check if the integrity of my fmb-file is ok?
    - is the minimum hardware requirement for developing a 10g-FMB file on a PC more than > 256MB RAM/450 MHz Processor?
    - for WindowsXP there is a DeveloperSuite 10g PreView -
    what does that mean? when will the final version be released?
    My experiences are:
    - if you are integrating a 10g Report with a parameter form in forms10g: first it does not work - you have to integrate a javabean in forms (encrypted userid in cookie
    before calling the report) or the other solution i read was funny with nearly no security (userid in hex in the url).
    how can u call a 10g report from the web without writing all your credentials in cgicmd.dat and without having oid (single sign on)?
    a solution would be writing your credentials encrypted in a cookie and then calling the report with the parameter form -
    but how? if you have never done java before?
    - handling with formbuilder10g is much more slower than formbuilder6i: is forms10g written in java?
    - you have to do a lot of configuration before calling a report on your development pc.
    thx for any comments and tips
    ps:
    shall i use webforms10g now or learn java/jdeveloper or wait for java.net (=cooperation Microsoft and Sun)? <

    Hello Frank,
    Thank you for your 9i/10i secure calls to web.show_document solution. I spend hours with it but could'nt get it working. I followed all the instructions from the pdf document. Everything looks fine ( java console output included ) but the cookie isn't created.
    I watched the tcp packet for the http header to see if any cookie information was included, but this isn't the case. I switched browsers (IE5 and IE6) and changed their security settings to very low. Nothing seems to matter. Still getting the REP-51018: Need database user authentication error. What am I doing wrong???
    I'm running 9.0.4 (10g) forms reports services edition on Windows 2000.
    ============
    Forms code :
    ============
    DECLARE
    rep_url varchar2(2000);
    BEGIN
    rep_url:='http://cen0060s:9989/reports/rwservlet?server=repcl&report=ebn2900r.rep'
    ||'&desformat=htmlcss&destype=cache&envid=ebn&userid=';
    set_custom_property('control.userid_bean',1,'WRITE_LOGOUTPUT','true');
    set_custom_property('control.userid_bean',1,'ADD_USERID',
    get_application_property(username)||'/'||
    get_application_property(password)||'@'||
    get_application_property(connect_string));
    set_custom_property('control.userid_bean',1,'SET_MAX_AGE','30');
    set_custom_property('control.userid_bean',1,'SET_COOKIE_DOMAIN','.dlg.agro.nl');
    set_custom_property('control.userid_bean',1,'SET_COOKIE_PATH','/reports/');
    set_custom_property('control.userid_bean',1,'WRITE_USERID_COOKIE','10g');
    SYNCHRONIZE; <-- Metalink bulletin regarding REP-51018 errors
    WEB.SHOW_DOCUMENT(rep_url, '_blank');
    END;
    ===============
    Applet output :
    ===============
    Loading http://cen0053s/forms90/java/frmrwinteg.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Versie van Forms-applet is: 9.0.4.0
    4.0 (compatible; MSIE 5.5; Windows NT 5.0; LNV; .NET CLR 1.1.4322)
    FrmReportsInteg0: Debugging true
    FrmReportsInteg0: Adding new userid string "EBN_OWNER/[email protected]"
    FrmReportsInteg0: Default cookie domain:
    FrmReportsInteg0: set RW_AUTH10g
    FrmReportsInteg0: Arguments: encryptionKey=reports9i; Reports version=RW10g
    FrmReportsInteg0: Cookie value for RW10g is: EBN_OWNER/[email protected];1093349923071:30
    FrmReportsInteg0: Encoded cookie value is: ZF/zcPJEKWXsS9Rh4pfD3079dl+p4fnz20rz8aM2PdMW4ITpb+rYdtWOF2GUmqkXrw==
    FrmReportsInteg0: Complete cookie string is: userid=ZF/zcPJEKWXsS9Rh4pfD3079dl+p4fnz20rz8aM2PdMW4ITpb+rYdtWOF2GUmqkXrw==
    FrmReportsInteg0: Added domain " " to cookie
    FrmReportsInteg0: Generated Cookie String: userid=ZF/zcPJEKWXsS9Rh4pfD3079dl+p4fnz20rz8aM2PdMW4ITpb+rYdtWOF2GUmqkXrw==; domain= ; path=/
    FrmReportsInteg0: IE Cookie Set

  • Camcorder or DV converter for VHS to DV conversion?

    I have home movies on VHS tapes that I have already converted to DVD's, but I decided I would like to import the VHS videos into iMovie as DV files as a long term backup/storage plan for my home movies before the tapes degrade. I already have a Sony mini-DV camcorder that has passthrough capability. I was wondering if the quality of the DV files created is any better with a DV converter (say like a Canopus model) or is there little discernable quality difference in the conversion process from analog to digital between using the camcorder or using a DV converter. I don't want to do much editing, I just want the best quality. If it's better with a DV converter, I'll buy one.
    Thanks!

    I am just finishing up doing the same thing as you: a long process of converting ALL of my old VHS home movies to digital in the form of DV tapes.
    I second the recommendation to do it with a digital camcorder, and not use the pass-through method, but record from the VHS tape to DV tapes. This gives you a digital archive of your original VHS tapes. The DV tapes are small, easy to store, instantly available for importing into iMovie. And, when technology changes, your digital movies are ready to be brought into whatever is to come. DVDs may go the way of VHS tapes in a few years, and we will all have to convert our now 'old' DVDs!
    And (something I highly recommend that you do), after I import my converted digital DV footage into iMovie, create my movies, create and burn my DVDs, I also 'share' the created iMovie back to my camcorder, saving the iMovies to DV tape. I am concerned that something may happen to my DVDs, even though I make several copies of each one. I want to have my created movies preserved in several digital forms.
    Yes, that means a few more DV tapes, but now I have digital versions of the original old VHS tapes that were beginning to degrade, AND, I have my creative movies with titles, transitions, stills and music all preserved on DV tape, so I do not have to recreate any of my movies.
    I do save all my iDVD projects as Disk Images, and store those on my external drive. Even if my movies bloat to over 40 GB, they are preserved at 4.7GB max (for my single layer DVDs) on my DVD Disk Images, with no loss of quality. From the disk images, I can burn another copy of any DVD that I have made.
    I must have converted at least 120 hours of VHS footage. It didn't seem that long at the time. I would just set the camcorder to record the footage, return about 55minutes later to see where to break the recording to change the tape, and continue. Doing it all over a few weeks time seemed easiest. I also had a 'dedicated' camcorder for it, so my recording didn't interfere with taking movies of current family events!
    Have fun...one of the best parts is getting to see footage that you have forgotten. My oldest tapes were of my daughter at age 2 3/4 and my son as a newborn, 25 years ago!

  • Converting forms to APEX

    Hi,
    Has anyone converted client/server oracle forms,reports to APEX?
    If so, was it any good after conversion and if possible can you send me steps on how this was achieved?
    Thanks
    Munish

    For me I found that it was easier and better to my mind to write jquery javascript for validation than to try to get the callback thing to work. Also I was running into bugs about displaying validation error messages in 4.01. They just went in the bit bucket and never displayed.
    In jquery you could just write event-triggered code in a "ready function" that acted on specified events on specified items. You can declare it in one piece: the event and the code to process the event, all together. Which is like a forms trigger, you see the trigger name and the trigger code together. Whereas the apex callbacks were in multiple pieces that had to be defined in a certain order; a lot of distractions. In some respects jquery was more
    flexible than forms triggers because you could create a ready function that acted on one or more items whereas in forms you have item level,block level
    and form level triggers, you can be a bit more exact with jquery (modulo how things were named).
    What was a lot harder to do (for me anyway) was communicate with the database. Whereas in forms it is very easy: you can just stick
    database calls wherever you want with little concern. Not in apex. If the page was displayed on the client then talking to the database at that point was ajax and that was not easy to use IMHO. So you end up dividing things up into separate pages that could've been on one in order to have the submit (and talk to the database step). Apex was fun to use but it's worth it to use in order to then appreciate how much easier it is to develop in forms and it doesn't have that ridiculous 100 item limit. (I once created a forms form to display the data in one of our tables that has 586 columns and it didn't burp on it. No problem.) You can not change multiple item properties at one time in apex!
    So much more clicking to do there. I never appreciated fully the ability in forms to select a huge amount of things and change them
    at one time, how artful that was, as was the ability to copy and paste things and duplicate things until I used apex for a few months,
    where you can't do that.
    This is the part where someone will announce that where they work they never had a table with more than 30 columns and therefore we
    shouldn't have one either. Sorry but wide data is the norm. It's getting wider. Maybe someone expects and gets all their data to fit on your phone
    but not everyone does:
    http://office.microsoft.com/en-us/excel-help/excel-specifications-and-limits-HP010342495.aspx?CTT=5&origin=HP005199291

Maybe you are looking for

  • Issue with Query on a virtual infoprovider

    Hello, I am getting the following error message while executing a query on a virtual infoprovider. We have recently gone through upgrade from BI 3.5 to BI 7.0 EHP1 (SP5) and from SEM BCS 4.0 to BCS 6.0. EVersion not specified or not unique           

  • E-mail

    when i check my e-mail and click on any attachments it always says safari can't download files. i was thinking that the files might be to big. can anyone help me ouy

  • Cell border colors

    I created a table with photos and text. In Dreamweaver the text is yellow and borders are gray and all looks ok. When I open it in Firefox the text and borders are yellow. In Opera the same situation. In Safari all is OK Does anyone have any ideas? I

  • I really miss a true white point adjustment

    I've been trying to minimize the cases where I need to escape from Lightroom to Photoshop, but the lack of a true white point adjustment is frustrating.  About 10% of the time, after I've adjusted exposure and recovery to give me the best image it on

  • + Sign in safari

    I think the + sign wich opens a new tag on safari, should be placed near the last open tag to the right, it's just more easy to get to..... What do you think?