Using alias defined in forms.conf

My app server is named srvr001
This app server is version 10g.
In my forms.conf file, I have defined two aliases:
Alias /out_report/ "G:\reports\output\files/"
Alias /out_rep_doc/ "F:\report_doc/"
G:\reports\output\files is a local drive in srvr001
Drive F is a network mapping to another server named srvr002
This link using alias out_report, to bring up a local file, works fine:
http://srvr001/out_report/testoutput.pdf
Now if I use the alias out_rep_doc, to bring up a file from the other server, I get 404-Not Found:
http://srvr001/out_rep_doc/testdocument.pdf
I have another server, named srvr003 which is version 6i, and the same aliases are defined in the conf file. Both aliases work in that server.
I use the same user id in both srvr001 and srvr003 to start-up the forms services.
Why is it that, in app server 10g version, the alias pointing to a local drive works, while the alias pointing to a mapped network drive does not work?
Is there another configuration file where I should define the alias in srvr001?

Security and access privileges are all defined and working fine.
About using sniffer, I would not go that way because I am not authorized to do such.
Anyway, this problem is solved. So for anybody out there having the same problem, the solution is to also tweak your httpd.conf, not just forms.conf.

Similar Messages

  • Additional dir(s) for .jar,htm files in forms.conf file....

    Hi ,
    Is it possible and how to define additional directories for .jar , htm files in Dev Forms10g...????
    For instance , in my forms.conf file.... there are :
    # Virtual path mapping for Forms Java jar and class files (codebase)
    AliasMatch ^/forms/java/(..*) "C:\oracle\product\DevSuite10g/forms/java/$1"
      # Virtual path for JInitiator downloadable executable and download page
    AliasMatch ^/forms/jinitiator/(..*) "C:\oracle\product\DevSuite10g/jinit/$1"
      # Virtual path for runform.htm (used to run a form for testing purposes)
    AliasMatch ^/forms/html/(..*) "C:\oracle\product\DevSuite10g/tools/web/html/$1"
    ......Thanks a lot
    Simon

    In this orion-web.xml file... there are entries like...:
    <virtual-directory virtual-path="/html"
    real-path="C:\oracle\product\DevSuite10g/tools/web/html" />
    <virtual-directory virtual-path="/java"
    real-path="C:\oracle\product\DevSuite10g/forms/java" />
    Where should i put the alternative dir .....(such as the ones i have written in bold below....)
    <virtual-directory virtual-path="/html"
    real-path="C:\oracle\product\DevSuite10g/tools/web/html" , real-path="C:\oracle\product\DevSuite10g/tools/web/html_2"/>
    <virtual-directory virtual-path="/java"
    real-path="C:\oracle\product\DevSuite10g/forms/java" , real-path="C:\oracle\product\DevSuite10g/forms/java_2"/>
    or
    <virtual-directory virtual-path="/html" real-path="C:\oracle\product\DevSuite10g/tools/web/html" />
    <virtual-directory virtual-path="/html" real-path="C:\oracle\product\DevSuite10g/tools/web/html_2" />
    <virtual-directory virtual-path="/java" real-path="C:\oracle\product\DevSuite10g/forms/java" />
    <virtual-directory virtual-path="/java" real-path="C:\oracle\product\DevSuite10g/forms/java_2" />
    or where can i find a relative doc.... ????
    Many Thanks,
    Simon
    Message was edited by:
    sgalaxy

  • Get_url_new_session ignoring used alias

    Hi,
    we have a stateful web application not being in our namespace (it dooesn't start with y or z either) and so we defined an external alias using transaction SICF and stored anonymous logon data there.
    Unfortunateley that application needs sap-sycmd=nocookie as parameter which forces mangling the session-id into the url.
    If the user clicks a logout-button the follwing code gets executed:
    DATA: l_url TYPE string.
    * need to call get_url_new_session
    * since we have to change the url
    * because a new session-id has to be mangled
    * into the url
    l_url = runtime->get_url_new_session(  'index.do' ).
    navigation->exit( l_url ).
    l_url holds a newly generated session-id which is quite good but it points to the web application itself for which we can not store anonymous logon data without a modification.
    Is there a way to have get_url_new_session recognize the url-path and take it into consideration while creating an url?
    In short:
    web application: /foo/bar (no logon data in SICF, service not editable without modification)
    external alias: /xy/foobar (logon data in SICF)
    application is called via: <a href="http://www.example.com/xy/foobar/index.do?sap-syscmd=nocookie">http://www.example.com/xy/foobar/index.do?sap-syscmd=nocookie</a>
    after using logout button, method navigation->exit tries to navigate to: <a href="http://www.example.com/sap(<i>some stuff</i>)/bc/bsp/foo/bar/index.do">http://www.example.com/sap(<i>some stuff</i>)/bc/bsp/foo/bar/index.do</a>
    result: browser presents http authentication popup
    question: how to circumvent?
    thanks in advance
    Matthias

    Hi Daniel,
    it doesn't matter whether I use sap-syscmd=nookie or not.
    get_url_new_session never takes the used alias into consideration althoug it should be very easy to detect since the url should either be an alias or start with /sap/...)/bc/bsp/
    If i call the application using the external alias and syscmd=nocookie all form-tags have an action-attribute pointing to the /sap(...)/bc/bsp/foo/bar which of course leads to an authentication popup after having logged off in /xy/foobar.
    If I call the application using the external alias but without sap-syscmd=nocookie there is no single form-tag containing an action-attribute but get_url_new_session will return a link to /sap(...)/bc/bsp/foo/bar as well.
    (I know I don't need get_url_new_session in this case)
    The implementation of IF_BSP_RUNTIME~GET_URL_NEW_SESSION in CL_BSP_RUNTIME tells us:
    * REMARK: this method does NOT set the new BSP to stateful, but does only
    *         create a URL that is does work as a stateful URL.
    *         For "normal" BSP calls there is no difference between
    *         GET_URL_STATELESS, .._NEW_SESSION and ..._SAME_SESSION.
    *         Then the session id is transported via a cookie, and a new
    *         BSP application means a new session. The result-URL will be identical.
    *         The difference between these three methods makes only sense when the session
    *         id is transported via URL. This is true, if the applicaion is called with the
    *         parameter "sap-syscmd=nocookie", or if it is called from the portal.
    *         There are 2 different techniques which are used by the portal:
    *         1. the portal calls the application with the nocookie-Parameter
    *         2. the portal calls the application with an external sessionid
    so I consider this to be a bug too.
    But maybe someone else comes up with a solution/explanation?

  • Defining fillable form fields in IDCS4

    2 questions:
    Is it possible to define fillable form fields in ID that will export to PDF?I create a lot of custom proposals and would like to avoid having to define the fields over and over again in Acrobat.
    Also, some clients tell me that they can't fill in the form with Acrobat Reader. When I enable the PDF for commenting in reader, all the form fields disappear, except, oddly, for the signature field. Using Acrobat Pro 9.2. Help with this will also be appreciated.
    Thanks,
    Michele

    Great resource...thank you!
    From: BobLevine <[email protected]>
    Reply-To: <[email protected]>
    Date: Mon, 11 Jan 2010 09:43:01 -0700
    To: Michele DeFilippo <[email protected]>
    Subject: Defining fillable form fields in IDCS4
    1. No. But the auto form creation tools in Acrobat are excellent.
    2. Don't make the form commentable. By using the distribute form command in
    Acrobat everything is done automatically.
    You might want to view this video:
    http://www.theindesigner.com/blog/episode-53%E2%80%A6sort-of
    Bob
    >

  • Question regarding how to use XHTML format in Form

    I have defined a form where the input interface is iv_text TYPE string and the format of the field in the form is in XHTML.
    But when I set iv_text = '<font face="Times New Roman" color="#ff0000" size="5">Test</font>'. The ADS does not interpret the XHTML and it generates me a PDF file containing this sentence.
    Can someone help me?

    look up for "Using formatters" in the FB help.
    Essentially you'll instantiate a format, NumberFormatter for
    numbers for example, and set it's properties like e.g. showing a
    thousand separator and then one some event of the TextInput --
    valueCommit for example -- you'll do something like:
    ti.text = nf.format(ti.text)
    this is would also give you opportunity to validate user
    input using the same formatter and valid event.
    ATTA

  • Can DME, EDI be used to build a form(with pictures and logos)?

    Hi All
    I have a question on DME,Electronic transmission and forms(sapscripts,smartforms etc).
    There is a program rfumsv00(advance tax return). Surprisingly this program doesnot give the option to output the data into a "form"(government specified format with logos, pictures etc).
    (The program gives this facility to output to a form only for Germany and Belgium.)
    Now i want to get the output of this program into a "format as prescribed by the government of India". How do i do this?
    The program has facility for "electronic transmission" and DME". Can we use this to get a output similar to a "form"?If yes...how?
    Message was edited by:
            kumar kumar

    Hi Anji
    Thank you(I am on the verge of awaring you points).
    But one last clarification. You have mentioned that i can design a FORM and then make the program call the form. But this would involve making a Z program.
    I want to know if instead of the form, I can use the option "electronic return" or "DME"?Maybe the  "electronic return" or "DME" already has pre defined forms (with pictures and logos) and if not will SAP allow me to define the form in DME  or electronic return and make the standard program to use that? This way i dont have to do a Z development. Can you help me?
    Message was edited by:
            kumar kumar

  • Image not displayed in pdf generated using Java API for Forms service

    Hi,
    I am creating a pdf document using Java API for Forms Service.
    I am able to generate the pdf but the images are not visible in the generated pdf.
    The image relative path is coming in the xml as defined below. The images are stored dynamically in the Livecycle repository each time a request is fired with unique name before the xml is generated.
    <imageURI xfa:contentType="image/png" href="../Images/logo.png"></imageURI>
    Not sure if I need to specify specify specific URI values that are required to render a form with image.
    The same thing is working when I generate pdf document using Java API for Output Service.
    As, I need to generate interactive form, I have to use Forms service to generate pdfs.
    Any help will be highly appreciated.
    Thanks.

    Below is the code snippet:
                //Create a FormsServiceClient object
                FormsServiceClient formsClient = new FormsServiceClient(myFactory);
                //Specify URI values that are required to render a form
                URLSpec uriValues = new URLSpec();
                                  // Template location contains the whole rpository path for the form
                uriValues.setContentRootURI(templateLocation);
               // The base URL where form resources such as images and scripts are located.  Whole Image path is passed in BaseUrl in the http format.
                      String baseLocation = repositoryPath.concat(serviceName).concat(imagesPath);   
                                  uriValues.setBaseURL(baseLocation);                                        
                // Set run-time options using a PDFFormRenderSpec instance
                PDFFormRenderSpec pdfFormRenderSpec = new PDFFormRenderSpec();
                pdfFormRenderSpec.setCacheEnabled(new Boolean(true));           
                pdfFormRenderSpec.setAcrobatVersion(com.adobe.livecycle.formsservice.client.AcrobatVersio n.Acrobat_8);
                                  //Invoke the renderPDFForm method and write the
                //results to a client web browser
                String tempTemplateName =templateName;
                FormsResult formOut = formsClient.renderPDFForm(tempTemplateName,
                                              inXMDataTransformed,pdfFormRenderSpec,uriValues,null);
                //Create a Document object that stores form data
                Document outputDocument = formOut.getOutputContent();
                InputStream inputStream = outputDocument.getInputStream();

  • Window RUEKOPF is not defined for form ZWESCHEINV3

    Hi Guru,
    I have encountered an issue whose possible resolution i am not able to meet.
    The issue is like this :
    While performing MIGO for the Return Delivery user is successfully getting the maerial document number . But when user trying to perfor /n or anyother transaction following message is appearing (Note: For Good Receipt user is not getting any message)
    SAPoffice info.
    Express document "Update was terminated" received from author "User_Name".
    The detailed analysis of this error message done using SM13. which is showing there is some error occured in Function module RV_MESSAGE_UPDATE
    30     RV_MESSAGE_UPDATE     V1     Error (no retry)
    The Update Header (ctrlshftF8) Information of this error showing details like below :
    Update key      37AD64DF8023F1F1AAB2001F29E3A344
    Client          505
    User            408020
    Date            21.05.2010  Time       09:48:39
    Language        EN
    Account
    Report          SAPLMIGO
    Transaction     MIGO
    Enqueue key     20100521094825425000001277sap705..........................
    Context         :E:
    Information     (53) =  SYNC_VB, DONT_PROCESS_AGAIN, VB_WITH_ENQUEUE, VB_ENQUEUES_RELEASED,
    UD Ret. Code    9
    Status          Update was terminated
    Update server   sap705_P03_77
    UD Client       sap705_P03_77
    Local time zone CET
    Time Offset     1
    Error details   Class:     TD         Number:    426
    Window RUEKOPF is not defined for form ZWESCHEINV3
    Report     LSTXCU03             Row        101
    Here i am getting error information for that particular function module that Window RUEKOPF is not defined for form ZWESCHEINV3.
    Error details   Class:     TD         Number:    426
    Window RUEKOPF is not defined for form ZWESCHEINV3
    Report     LSTXCU03             Row        101
    The single test (ctrlshftF9) in Sm13 of that particular function module shows the following error message
    Window RUEKOPF is not defined for form ZWESCHEINV3
    After going through the help text of the above error message I have found following
    Diagnosis
    The specified window is not defined in the form
    I have checked the form ZWESCHEINV3 in SE71. The window RUEKOPF is present over there.
    So what might be the reason for getting this error and what approach we should take to resolve this.
    Thanks & regards
    Saifur Rahaman

    Hi,
    I have gone through the OSS note you have provided.. There i can able to find that  This is for error message whose TD = 427
    Symptom
    When you print a collective slip for areturn delivery, the update
    terminates in function module RV_MESSAGE_UPDATE. *The error message is TD*
    *427.*
    But if you check my case
    Error details   Class:     TD         Number:    426
    So I would like to know how far this ossnote will helpout to resolve issue like my case
    Thanks & regards
    Saifur Rahaman

  • How to use ifrun60.EXE in forms 6i in forms 10g ?

    I know If end user is going to run forms by double-clicking icons on his/her desktop (MS Windows operating system),so ..... creating a shortcut and point it to run the IFRUN60.EXE (Forms 6i executable) , will be good idea.
    "Target" will then look like this:
    C:\orant\BIN\ifrun60.EXE form_name.fmx scott/tiger@orcl
    that happened when we use Forms6i .... but when we use Forms10g ..... how we do the same ?
    as friend say to me , we suppose here to deploy the forms to web , but I want to deploy them to Local Network or at least to only my computer ...... so is there anyway to turn my computer to server and than deploy my forms ? or any solutions else ?

    In order to deploy forms successfully,not just to web,also to your local host.
    In your install oracle 10g directory:
    like C:\DevSuiteHome_1\forms\server\default.env
    So you have to configure "default.env" or create your file like "your.env" file,in the file,you have to set the path for running the form.
    If you set parameters correctly,you can put the URL into your IE or firefox.
    For example:
    I have an application "app".
    http://app:port/forms/frmservlet?config=default.env(If you use default.env)
    http://app:port/forms/frmservlet?config=your.env(if you use your define env).

  • How to use BLOB in Oracle Forms 10g?

    Hi
    I defined a column in a table with the type BLOB,
    then I used it at the form with a data block.
    Now how can I let the user to insert his photo in this column?
    If you don't know the answer please put any web links that may helps me

    Hi Omkar,
    Please check the following code.
    DECLARE
      repid REPORT_OBJECT;
      v_rep VARCHAR2(100);
      rep_status VARCHAR2(20);
      plid ParamList;
    BEGIN
      plid := Get_parameter_List('tmp');
      IF NOT Id_Null(plid) THEN
      Destroy_parameter_List( plid );
      END IF;
      plid := Create_parameter_List('tmp');
      add_parameter(plid,'p_parameter',text_parameter,to_char(:POLICY.POLICY_NO));
      Add_parameter(plid, 'PARAMFORM', TEXT_parameter, 'NO');
      repid := FIND_REPORT_OBJECT('POL_REP');
      SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
      SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,cache);
      SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');
      SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER, 'paramform=no');
      v_rep := RUN_REPORT_OBJECT(repid,plid);
      rep_status := REPORT_OBJECT_STATUS(v_rep);
      WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
      LOOP
      rep_status := report_object_status(v_rep);
      END LOOP;
      WEB.SHOW_DOCUMENT('http://'||'LENOVO-428E9E41'||'8889'||'/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?
      '||'server=prod_report_server&P_parameter='||:POLICY.POLICY_NO||
      '&paramform=no');
    END;
    I am used to Start the Report sever   'Rwserver Server=prod_Report_Server Start'
    OracleAS Report Services
    Version :-   10.1.2.0.2
    Name    :-   prod_report_server
    Status  :-   Server is Shutting down
    Jobs in Queue  0
    Active Engines  0
    I got the Following Error when I trying to run the Report
    FRM-41211: Integration error:SSL failure running another product
    Thanks and Regards,
    Faziludeen

  • How to use user defined object with linked button

    Hi experts
    Can I use user defined table data with linked button. If yes then how. plz give me sample examples.
    Regards
    Gorge

    If you have an UDO in your form, or any other, the FormDataLoad eventhandler should be used.
    Take care, it is not inside the eventhandler.
    for VB:
    Select SBO_APPLICATION in the classes, and select FormDataLoad event
    Private Sub SBO_Application_FormDataEvent(ByRef BusinessObjectInfo As SAPbouiCOM.BusinessObjectInfo, ByRef BubbleEvent As Boolean) Handles SBO_Application.FormDataEvent
    in C#
    Add a new eventhandler as
    // declaration
    SBO_Application.FormDataEvent += new SAPbouiCOM._IApplicationEvents_FormDataEventEventHandler(ref SBO_Application_FormDataEvent);
    // eventhandler:
    public void SBO_Application_FormDataEvent(ref SAPbouiCOM.BusinessObjectInfo BusinessObjectInfo, out bool BubbleEvent)

  • Opening User defined Fields Form via API

    Hi
    Is there a posiibility to open those user defined field - forms via API. If yes is it possible to check if it is already open?
    TIA
    Phile

    Hi,
    In your eventhandler, you can use this:
    Set oSboForm = Sbo_application.Forms.GetFormByTypeAndCount(-pval.FormType, pval.FormTypeCount)
    form and udf-form are linked through a minus sign.
    I do not know of a nice way to check if they are anebled. What I'm currently doing is running the above line of code contained in an error handler. The error handler does a sendkeys of control shift u (which enables the udf-form) and displays a message. Problem is after control shift u, screen is not yet updated so your code cannot continue immediatelly. Development knows of this problem, but I never received a promise when this will be fixed.
    Hope this helps,
    Jacques

  • Essbase Variable with more than a value for use after in Planning forms.

    I want to now if it would be possible to create a variable with more than a value for use after in Planning forms.
    The variable that I want to use is created in Essbase.
    Example:
    &Years = FY08,FY09,FY10

    Hi.
    The only workaround I know for the problem is to create parent in the dimension.
    In your case, create member “planyears”.
    Then you define children that are shard (this are the multiple member for the variables FY08, FY09 etc..)
    Create Essbase sub variable that will have 1 member value “planyears”
    When you use the Sub Variable in form select function “Children” and in that case it will use the member FY08,FY09 etc on the form.
    Limitation: I’m working on version 9.2.0.3 so you can’t create hierarchy in the year dimension, but you can use it in other dimension.
    AE

  • Define appraisal form for Applicants

    Dear experts!
    Now, I'm getting some issues about define appraisal form for applicant.
    - Where is I can define appraisal form for applicant?
    - Steps configure after that I can create appraisal form for applicants.
    - Steps process applicant, before transfer them to Employee.
    Help me, please!
    Regards, Huy!

    Hi,
    Are you using ECC Recruitment or E-Recruitment module.
    Since I have not worked extensively on E-Recruitment Module, will not be able to do justice to your questions. But there is enough material available on SDN as well as on SAP Help. Please have a look.
    Defining Questionnaires and ranking can be managed easily if you are using E-Recruitment module.
    Many Thanks,
    Chetan

  • 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.

Maybe you are looking for