JSP / JDeveloper customisations

I've been given the task of evaluating JDEVELOPER3 and developing
a couple of basic JSPs.
I want to take the wizard built JSP and lightly customise it, by
changing one or more of the fields to be Drop down picklists, or
radio buttons.
I've had a call in to Oracle and they replied with the
'theoretical answer', however is there anyone out there who has
done this for real and would be kind enough to send me an
example.
Thanks
Charles Bankes
null

Look at the EditCurrentRecord class in jbohtmlsrc.zip it supports a number of field renderers such as listbox,combobox,radio button group, checkbox group and textarea. You can also define your own field renderes to provide more sophisticated HTML controls. The EditCurrentRecord DataWebBean is automatically generated for you when you run the Business Components JSP Application Wizard.

Similar Messages

  • % in a String breaks Oracle JSP / JDeveloper parsing

    Hi.
    I'm running JDeveloper 9.0.3 Production
    I found that entering %> in a String in a JSP-page breaks the page.
    To verify that I created a new JSP-page by using the New->JavaServer Pages->JSP Page and adding the code snippet
    <% String s = "AA%>BB"; %>
    to the page.
    The syntax-coloring scheme in JDeveloper shows that it assumes that the string s is terminated after AA when it encounters the %> charaters.
    This behaviour shows in JDeveloper 9.0.2, 9.0.3 Pre and the brand new 9.0.3 production.
    This means that this code can't execute on my oc4j.
    It works perfectly on Tomcat 4.0 though
    Any ideas anybody?
    Complete JSP-page supplied below
    /Jan-Erik
    <%@ page contentType="text/html;charset=windows-1252"%>
    <html><head>
    <title>Hello World</title>
    </head>
    <body>
    <% String s = "AA%>BB"; %>
    </body>
    </html>

    Hi,
    Try the Following. This works in OC4J(latest version).
    <%@ page contentType="text/html;charset=windows-1252"%>
    <html><head>
    <title>Hello World</title>
    </head>
    <body>
    <% String s = "AA%\>BB"; %>
    </body>
    </html>
    \ is the escape character.
    Hope this helps,
    Rajat,
    OTN Team @IDC

  • JSP-Jdeveloper

    I am a web developer using Jdeveloper 3.0 to
    develop applications , which are mainly related with data base handlings.
    I am not able to add a filed(attribute) to
    the form, not able to alter its prompt text,
    vary its size?
    can you suggestme some tips?
    I have built a application module. with business components. Entity object,object view and all ohter for a single table resinding in oracle 8i data base.
    When I right click the applicatin module ,
    I see a pop up menu wehre if I click test
    I am able to see the business component browser,(applet viewer) and here I am able to
    see the additioally added attribute, I am able to call my own method added to the entity object.
    BUt the smae is not working when a create a JSP using teh same application module?
    why?
    any additional setting to be done?
    please mail me informaations I willbe thankfule to you..
    my mail id:
    [email protected]
    with athat moudle and
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by JDev Team ():
    If I understand, you have created an entity object and a view object in your application module. Is the additional attribute a new column you have added to the table in the database, or a 'calculated attribute' that you added to the view object.
    When you see it in the app module tester, is it read only? Do you want it to be read only or editable?
    Is the view object based on one EO, or more than one?
    What is the code you are using to add the new field to your JSP and set its prompt text?
    Laura<HR></BLOCKQUOTE>
    SORRY FOR ONCE AGAIN SENDING THE SAME MESSGE:
    bUT WE NEED REPLY URGENTLY..
    THANKS FOR THE REPLY,
    PLEASE NOTE MY REPLY PREFIXED WITH DLV: FOR
    YOUR QUERIES.
    f I understand, you have created an entity object and a
    view object in your application module.
    DLV: Yes we have created a entity object for a data
    base table and coresponding view object for the same,
    through wizard.
    Is the additional
    attribute a new column you have added to the table in
    the
    database, or a 'calculated attribute' that you added to
    the
    view object.
    DLV: This addtional attribute is a not a data base
    column. we added this addtional attribute using the
    wizard(edit view object).
    this attribute is "calculated attribute". we also modified
    the prompt text for that attribute in the wizard.
    When you see it in the app module tester, is it read
    only?
    Do you want it to be read only or editable?
    DLV: this attribute is read only. it is not editable. the
    purpose of this attribute is to display the name for a
    code, the code is the foreign key in the entity object.
    since the name of the code is in some other table in
    data base, we used our own method to get the name
    using the JDBC calls.
    we added this method to the entity object class.
    method name
    boolean vaidateItemCode(String value){}
    when we use the tester ,
    we are able to see the new attribute with our set
    prompt.
    the validating method is also working and returns the
    name to the new added attribute, as we expect.
    But the same is not woking when we create a JSP for
    the above appilcation module.
    we are not able see the added attribute in the
    Browser(netscape,IE5).
    the validation method we wrote is also not working in
    this environment.(IE5)
    plese see the addtional method which we added to the
    entity object
    public boolean validateItemCode(String Value) {
    try{
    DBTransaction dbt = this.getDBTransaction();
    PreparedStatement Ps =
    dbt.createPreparedStatement("select 'x' from jom_item
    where item_code =?",1);
    Ps.setString(1,Value);
    ResultSet rs = Ps.executeQuery();
    if (rs.next())
    JOptionPane.showMessageDialog(new Frame(),"Insert
    Error","Code Alreadly
    Exits",JOptionPane.ERROR_MESSAGE);
    return false;
    catch(Exception ex)
    JOptionPane.showMessageDialog(new Frame(),"error
    code "+ex,"ietem
    code",JOptionPane.ERROR_MESSAGE);
    return false ;
    return true;
    once we wrote the messgae save and compiled the
    same we are able to see the respective change in the
    corresponding xml file.
    Is the view object based on one EO, or more than one?
    DLV: the view objcet is based on only one entity
    object.
    What is the code you are using to add the new field to
    your JSP and set its prompt text?
    DLV: we have not written any code in JSP for addeing
    the attribute.
    we are not able to add a field to the JSP. But wer are
    able to modify the existing attribute's prompt using the
    setTEXt method of the "editCurrentRecord" bean.
    HOPE we have clarified your quiries .
    what addtional coding we need to write in JSP so the
    addtional method which we wrote for the entity object
    is getting reflected in the JSP
    and
    HOw to add the addtional attirbute(non-database-field)
    to the JSP which corresponds to entity objcet/view
    object
    we have also posted addtional dbouts regarding the
    customization of error codes.
    ONCE AGAIN THANKS FOR YOUR
    REPLY,CONSIDERATION.
    null

  • Bug JSP JDeveloper 11g

    A simple JSP does not run in JDeveloper 11g. Generates the following error:
    oracle.oc4j.util.SystemLog log
    SEVERE: Server start failed processing configuration
    java.security.AccessControlException: access denied ( CredentialAccessPermission credstoressp.credstore.default.systemuser read)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
         at java.security.AccessController.checkPermission(AccessController.java:427)
         at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$3.checkPermission(JpsAuth.java:256)
         at oracle.security.jps.util.JpsAuth$Diagnostic.checkPermission(JpsAuth.java:180)
         at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$6.checkPermission(JpsAuth.java:280)
         at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:315)
         at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:338)
         at oracle.security.jps.internal.credstore.util.CsfUtil.checkPermission(CsfUtil.java:527)
         at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.getCredential(SspCredentialStore.java:412)
         at oracle.security.jps.fmw.util.JpsFmwUtil.findSystemUser(JpsFmwUtil.java:218)
         at oracle.security.jps.fmw.JpsUserManager.init(JpsUserManager.java:235)
         at oracle.security.jps.fmw.JpsUserManager.<init>(JpsUserManager.java:247)
         at oracle.security.jps.fmw.JpsUserManagerFactory$JpsUserManagerFactoryI.create(JpsUserManagerFactory.java:252)
         at com.evermind.server.deployment.UserManagerConfig$JAZN.construct(UserManagerConfig.java:635)
         at com.evermind.server.deployment.UserManagerConfig.delegatee(UserManagerConfig.java:253)
         at com.evermind.security.IndirectUserManager.getAdminUser(IndirectUserManager.java:126)
         at com.evermind.security.IndirectUserManager.getAdminUser(IndirectUserManager.java:126)
         at com.evermind.server.XMLApplicationServerConfig.setPassword(XMLApplicationServerConfig.java:3157)
         at com.evermind.server.XMLApplicationServerConfig.<init>(XMLApplicationServerConfig.java:244)
         at com.evermind.server.ApplicationServer.createConfig(ApplicationServer.java:648)
         at oracle.oc4j.server.ServerFactory$Worker.prepareConfig(ApplicationServerFactory.java:201)
         at oracle.oc4j.server.ServerFactory$Worker.start(ApplicationServerFactory.java:220)
         at oracle.oc4j.server.ServerFactory$Worker.run(ApplicationServerFactory.java:235)
         at java.lang.Thread.run(Thread.java:595)
    May 9, 2008 10:30:40 AM oracle.oc4j.util.SystemLog logNoStack
    SEVERE: Server exiting: ApplicationServer entered state EXITING

    Hi,
    with me the error does happen with TP4.
    The error generated:
    28-mei-2008 14:55:28 oracle.oc4j.util.SystemLog log
    SEVERE: Server start failed processing configuration
    java.security.AccessControlException: access denied ( CredentialAccessPermission credstoressp.credstore.default.systemuser read)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
         at java.security.AccessController.checkPermission(AccessController.java:427)
         at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$3.checkPermission(JpsAuth.java:256)
         at oracle.security.jps.util.JpsAuth$Diagnostic.checkPermission(JpsAuth.java:180)
         at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$6.checkPermission(JpsAuth.java:280)
         at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:315)
         at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:338)
         at oracle.security.jps.internal.credstore.util.CsfUtil.checkPermission(CsfUtil.java:527)
         at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.getCredential(SspCredentialStore.java:420)
         at oracle.security.jps.fmw.util.JpsFmwUtil.makeJpsSystemUser(JpsFmwUtil.java:221)
         at oracle.security.jps.fmw.JpsUserManager.initSystemUser(JpsUserManager.java:270)
         at oracle.security.jps.fmw.JpsUserManager.init(JpsUserManager.java:238)
         at oracle.security.jps.fmw.JpsUserManager.<init>(JpsUserManager.java:250)
         at oracle.security.jps.fmw.JpsUserManagerFactory$JpsUserManagerFactoryI.create(JpsUserManagerFactory.java:257)
         at com.evermind.server.deployment.UserManagerConfig$JAZN.construct(UserManagerConfig.java:635)
         at com.evermind.server.deployment.UserManagerConfig.delegatee(UserManagerConfig.java:253)
         at com.evermind.security.IndirectUserManager.getAdminUser(IndirectUserManager.java:126)
         at com.evermind.security.IndirectUserManager.getAdminUser(IndirectUserManager.java:126)
         at com.evermind.server.XMLApplicationServerConfig.setPassword(XMLApplicationServerConfig.java:3170)
         at com.evermind.server.XMLApplicationServerConfig.<init>(XMLApplicationServerConfig.java:246)
         at com.evermind.server.ApplicationServer.createConfig(ApplicationServer.java:661)
         at oracle.oc4j.server.ServerFactory$Worker.prepareConfig(ApplicationServerFactory.java:225)
         at oracle.oc4j.server.ServerFactory$Worker.start(ApplicationServerFactory.java:244)
         at oracle.oc4j.server.ServerFactory$Worker.run(ApplicationServerFactory.java:259)
         at java.lang.Thread.run(Thread.java:595)
    28-mei-2008 14:55:28 oracle.oc4j.util.SystemLog logNoStack
    SEVERE: Server exiting: ApplicationServer entered state FAILED_IN_CONFIG
    The steps I took:
    1. 'Installed' JDeveloper TP4 (base) in folder d:\JDev, jdk1.5 on C:\Program Files\Java
    2 tried to create application but got a different error constantly resulting in a 404 page and message that I should put debug_mode on true, and 'current-workspace-app is in failed state as initialization failed'
    3. deleted JDeveloper and extracted the zip again, in folder d:\JDeveloper
    4. I've created a fusion web application (ADF), opened faces-config, place a home.jspx on there and created the .jspx. I didn't put any content on the page.
    Does anyone see what I'm doing wrong of forgot to do?
    Thanks!
    Regards,
    Diana

  • Debug JSP/JDeveloper 3.1

    I am trying to use JDeveloper 3.0 to debug JSP pages. The pages call each other through standard link tags ( <a href=myjsp.jsp...)
    I can debug a single jsp page but not the linked to pages. Can this be done in 3.0?
    If not.. when is JDeveloper 3.1 expected??
    Thanks,
    Dave
    null

    This is possible in JDeveloper 3.0
    For example create
    A.jsp which has a link to B.jsp as
    <P><% out.println("Hello World"); %></P>
    Call second JSP
    Place a break point on out.println
    B.jsp has
    <P><% out.println("Hello World"); %></P>
    place a breakpoint on this line
    Run A.jsp in the debug mode and when you see the html page rendered in browser click on the link which calls B.jsp and this will stop at the breakpoint place in B.jsp
    raghu
    null

  • Cannot open ANY of my old JSPs Jdeveloper is getting on my nerve!

    For some reason I cannot open my old JSP files. I've been using Jdev 10.1.3 with latest service pack, but after installing Jdev Preview 10.1.3.1 and openning the project files in it, my JSPs stopped opening in Jdev 10.1.3. Since all my sources are in cvs - I re-checked out everything - still no luck.
    Here is a stack trace in case somebody knows what is going on:
    java.lang.NullPointerException
         at oracle.jdevimpl.webapp.model.content.DocumentInfoManager$XmlDocumentInfoImpl.<init>(DocumentInfoManager.java:360)
         at oracle.jdevimpl.webapp.model.content.DocumentInfoManager$XmlDocumentInfoImpl.<init>(DocumentInfoManager.java:351)
         at oracle.jdevimpl.webapp.model.content.DocumentInfoManager.getDocumentInfo(DocumentInfoManager.java:176)
         at oracle.jdevimpl.webapp.editor.html.HtmlEditor.getDocumentInfo(HtmlEditor.java:592)
         at oracle.jdevimpl.webapp.editor.AbstractWebAppEditor.createDocuments(AbstractWebAppEditor.java:1197)
         at oracle.jdevimpl.webapp.editor.AbstractWebAppEditor.open(AbstractWebAppEditor.java:393)
         at oracle.jdevimpl.webapp.editor.html.HtmlEditor.open(HtmlEditor.java:172)
         at oracle.jdevimpl.webapp.editor.jsp.JspEditor.open(JspEditor.java:113)
         at oracle.ideimpl.editor.EditorState.openEditor(EditorState.java:239)
         at oracle.ideimpl.editor.EditorState.createEditor(EditorState.java:147)
         at oracle.ideimpl.editor.EditorState.getOrCreateEditor(EditorState.java:90)
         at oracle.ideimpl.editor.SplitPaneState.canSetEditorStatePos(SplitPaneState.java:231)
         at oracle.ideimpl.editor.SplitPaneState.setCurrentEditorStatePos(SplitPaneState.java:194)
         at oracle.ideimpl.editor.TabGroupState.createSplitPaneState(TabGroupState.java:103)
         at oracle.ideimpl.editor.TabGroup.addTabGroupState(TabGroup.java:275)
         at oracle.ideimpl.editor.EditorManagerImpl.createEditor(EditorManagerImpl.java:1261)
         at oracle.ideimpl.editor.EditorManagerImpl.createEditor(EditorManagerImpl.java:1196)
         at oracle.ideimpl.editor.EditorManagerImpl.openEditor(EditorManagerImpl.java:1131)
         at oracle.ideimpl.editor.EditorManagerImpl.whenOpenEditor(EditorManagerImpl.java:2332)
         at oracle.ideimpl.editor.EditorManagerImpl.handleDefaultAction(EditorManagerImpl.java:1893)
         at oracle.ide.controller.ContextMenu.fireDefaultAction(ContextMenu.java:343)
         at oracle.ideimpl.explorer.BaseTreeExplorer.fireDefaultAction(BaseTreeExplorer.java:1504)
         at oracle.ideimpl.explorer.BaseTreeExplorer.dblClicked(BaseTreeExplorer.java:1841)
         at oracle.ideimpl.explorer.BaseTreeExplorer.mouseReleased(BaseTreeExplorer.java:1862)
         at oracle.ideimpl.explorer.CustomTree.processMouseEvent(CustomTree.java:176)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    What is going on with Jdeveloper? I've used to be a huge fan of Jdeveloper, but now - instead of doing real development i have to spend a lot of time finding "workarounds" to Jdev behavior - not good

    Once you open a project in a newer version of JDeveloper you can't open it again in the older version.
    You might want to try checking-out a version of your code from before you upgraded.
    One more option is to create a new project in 10.1.3.0 and then add the files manually.

  • Need of a JSP tutorial

    Please give me a link for a JSP (JDeveloper 10g's) tutorial that demonstrate How to Insert and extract data from a table..

    Use the JSTL SQL Tag Lib.
    http://javaboutique.internet.com/tutorials/jstl/
    JDeveloper supports the JSTL SQL Tag Library.
    In the tutorial, replace WebLogic Server with JDeveloper 10.3.1 and MySQL database with Oracle database.

  • Included JSPs not compiling

    I have some JSP code which does not compile in JDeveloper but works fine when deployed in a web server (Websphere).
    There is a page called main.jsp with code like:
    Map clientDataList = (Map) request.getAttribute("clientDataList");
    <%@ include file="standard1Page.jsp" %>
    clientDataList is set in a servlet which forwards to main.jsp. On standard1Page.jsp I want to access the clientDataList object:
    <%= clientDataList.get("sitealignment") %>
    But standard1Page.jsp does not compile in JDeveloper because clientDataList is not defined on that page:
    Error(2,75): variable clientDataList not found in class _standard1Page
    Is this a fundamental problem with JDeveloper not following through the "includes" when doing the project compile, or is there something I can set to make this stuff compile. If not I'm going to have to edit my JSPs in a text editor so I can compile my project.
    Francis

    I have some JSP code which does not compile in JDeveloper but works fine when deployed in a web server (Websphere).
    There is a page called main.jsp with code like:
    Map clientDataList = (Map) request.getAttribute("clientDataList");
    <%@ include file="standard1Page.jsp" %>
    clientDataList is set in a servlet which forwards to main.jsp. On standard1Page.jsp I want to access the clientDataList object:
    <%= clientDataList.get("sitealignment") %>
    But standard1Page.jsp does not compile in JDeveloper because clientDataList is not defined on that page:
    Error(2,75): variable clientDataList not found in class _standard1Page
    Is this a fundamental problem with JDeveloper not following through the "includes" when doing the project compile, or is there something I can set to make this stuff compile. If not I'm going to have to edit my JSPs in a text editor so I can compile my project.
    Francis The problem is that "standard1page.jsp" is not a JSP page, it is just a text fragment to be included in a real JSP page. As it's just a fragment, it won't compile correctly as a JSP page. If you add it to your project as ".jsp", JDeveloper tries to compile it.
    A common convention for JSP included fragments is to name them with a".jspf" suffix, so it's relatively clear what they are, and to make the IDE not compile them as JSP pages.

  • Integrating Jdeveloper 11.1.1.1.0 & OC4J

    Hi,
    I was previously using Jdeveloper 10.1.3.4 and have current migrated to Jdeveloper 11.1.1.1.0.
    Cool to have new features and the way Jdeveloper crash are handled. :-)
    Am currently trying to create a Web Application and run in a standalone OC4J, but the moment I run the jsp, Jdeveloper trying to start Integrated WLS Server.
    I need to modify this to Standalone OC4J.
    I tried modifying under Tools > Preferences > Run but dint help me out.
    Can someone help me out in getting this done or point to some documentation that deals such setup.
    Regards,
    Prashanth

    Prashanth,
    You could certainly deploy a proper EAR/WAR file to OC4J and use remote debugging, but I don't think you're going to get to the same level of "integration" as Oracle has built with WLS. It may sould counterintuitive, but if I were you (doing simple Java/J2EE development, no ADF involved) and needed to deploy to OC4J / Oracle Application Server 10.x, I would just continue using JDeveloper 10g.
    Best,
    John

  • Attach EIT in iRecruitment using Personalization ?

    Hi
    For attaching custom EIT which is created and registered to candidate details page in iRecruitment, I have following question
    1. How to use personalization to attach it. is it similar as flexfield, if yes what is the view instance name ?
    2. Do I have to create EO, VO for it ?
    Please help !
    Thanks

    Hi Saroj,
    This is Ramesh Ramadass Sr Manager Enterprise Business Systems from Netflix Inc, Los Gatos, California. I found your postings on the forum and and thought it looked like a potential match for a “Senior Lead Software Engineer” (Oracle ERP Apps) position with Netflix Inc in Los Gatos, Ca (description below).
    Please let me know either way if you are interested in exploring this opportunity with us. If so, please respond with a word or pdf file of your resume and link to portfolio. If not, I would welcome any recommendations of colleagues, friends, former classmates, etc. that might be interested and potentially qualified for this role. You may have them contact me directly or if you don't have time, let me know the person(s) name and contact info and I would be happy to make the contact on your behalf
    Thanks, in advance, for your consideration of Netlfix Inc!
    Have a great day and I look forward to hearing back from you soon!
    Ramesh Ramadass
    Sr. Manager, Enterprise Business Systems
    Netflix Inc
    408-540-3817 office
    510-289-6249 cell
    Senior Lead Software Engineer
    Los Gatos, CA
    The Position:
    ABOUT NETFLIX
    Netflix, Inc. (Nasdaq: NFLX) is the world's largest online movie rental service, providing more than seven million subscribers access to more than 90,000 DVD titles plus a growing library of more than 5,000 choices that can be watched instantly on their PCs. The company offers nine subscription plans, starting at only $4.99 per month. There are no due dates and no late fees – ever. All Netflix plans include both DVDs delivered to subscribers' homes and, for no additional fee, movies and TV series that can be started in as little as 30 seconds on subscribers' PCs. DVDs are delivered free to members by first class mail, with a postage-paid return envelope, from over 100 U.S. shipping points. Nearly 95 percent of Netflix subscribers live in areas that can be reached with generally one business day delivery. Netflix offers personalized movie recommendations and has two billion movie ratings. For more information, visit www.netflix.com.
    Reporting Relationship:
    Reports to Enterprise Systems Manager, ERP.
    The Role:
    This is a senior level position in the Netflix IT Applications Department responsible for design, development and support of reports, interfaces, conversions, forms, and extensions in the Financials, Manufacturing and Distribution modules in the Oracle Applications environment (11.i).
    Strong working knowledge of development tools such as Oracle Developer (Forms 6i/9i and Reports 6i/9i), XML Publisher, Java, JSP, JDeveloper, and PL/SQL in the Oracle 11.5.8, 11.5.10 environment.
    The Company needs a team player with strong communication and customer service skills with the ability to stay on task when working independently. Must be able to organize and manage multiple tasks in a fast-paced environment.
    Oracle Application Functional Knowledge:
    Appropriate Oracle Applications functional knowledge in Financials, Order Management/Shipping and Manufacturing is required. Flow manufacturing knowledge is a plus. The applicant should be capable of providing guidance and support for the rollout and support of Oracle Applications. This position will work with the business community to anticipate future information needs and incorporate them into the design process.
    Duties and Responsibilities:
    Software Architecture and Development:
    • Investigates and prototypes technologies and algorithms relating visualization of complex data sets and integration of data from a variety of resources
    • Design and prototype large features and sub-systems of the application
    • Researches, analyzes existing architecture and software to understand the code at both the low-level and higher architectural level in order to make enhancements or resolve defects and performance issues.
    • Write designs and specifications for feature implementation.
    • Establish standards and tools for use by the development team to ensure quality and performance
    • Writes code for feature implementation and unit tests the code with respect to both quality and performance
    • Monitors industry advances for incorporation into the team's efforts.
    Estimating and Scheduling:
    • Track progress with respect to plan and informs manager of delays.
    • Utilizes software estimation process in order to estimate development time and resources necessary for specific functions.
    • May provide assistance to project leadership including: organizing feature projects, establishing timelines, breaking down and assigning tasks, tracking progress and reporting changes.
    Other Major Responsibilities
    • Be a key player in the translation and/or design of functional requirements into technical designs within the Oracle system.
    • Develop/maintain Oracle Financials custom code and interfaces to Oracle Forms-based applications in accordance with business requirements;
    • Develop PL/SQL packages, procedures, and functions, triggered from UI events or database triggers, to implement complex business logic;
    • Utilize and apply other Oracle development tools such as XML, PL/SQL, Java, and JSP, JDeveloper, Developer 6i/9i, Forms 6i/9i, Reports 6i/9i, Workflow Builder, OA Framework, Self Service web forms, Oracle Fusion Middleware, SOA, BPEL
    • Work with Business Analysts and internal customers to identify business requirements;
    • Document all technical designs as well as comment or annotate actual development product (code) according to the company's IT documentation standards.
    • Be responsible for complete unit testing and integration testing with other custom components and the larger Oracle application.
    • Provide the setups in the Oracle application necessary to deploy and maintain developed components.
    • Participate in and adhere to the code management process, including use of source-code control utilities and facilitation of migration of code across multiple Oracle instances.
    • Understand and apply application tuning techniques to improve code performance.
    • Understand and apply System Development Life Cycle methodologies;
    • Understand and apply Change and Configuration Management policies and procedures;
    • Identify design limitations and mitigate technology-based business risk;
    • Perform other duties as may be assigned by management.
    Attributes:
    • Must possess understanding of business processes and ability to solve complex problems
    • Must possess the ability to deliver high quality work products on time with minimal direction
    • Self-starter, “can-do” attitude a must in a fast-moving business environment
    • Contribute insightful thought leadership into IT and business processes
    • Provide innovative solutions that demonstrate out of box thinking to enable business teams to meet their objectives
    • Drive recommendations to business process improvements
    • Assist business areas in solving business problems/challenges that demonstrates IT's value proposition
    Essential Requirements:
    • 10+ years IT experience
    • 5+ years Oracle Applications Development experience.
    • Worked on 2+ Oracle implementations & Oracle 11i experience
    • Strong Oracle Development Tools experience; XML, PL/SQL, Java, and JSP, JDeveloper, Developer 6i/9i, Forms 6i/9i, Reports 6i/9i, Workflow Builder, OA Framework, Self Service web forms, Oracle Fusion Middleware, SOA, BPEL
    • OA Framework and Forms Personalization’s
    • Oracle Fusion Middleware, SOA, BPEL
    • Custom development experience in Reports, Interfaces, Customizations, Conversions and Extensions
    • Implementation and configuration experience with Oracle 11i Apps
    • Participated in all phases of Oracle implementation, including Requirements, Design, Build, Testing, Deployment
    • In depth knowledge Oracle Manufacturing, Oracle Order Management, Oracle Financials Ability to perform Gap and Issue Resolution.
    • Ability to work directly with business partners and end users to generate consensus around technical directions.
    • Ability to analyze complex business problems and evaluate solutions
    • Ability to translate complex technical issue into business terms.
    • Ability to mentor and cross-train team members
    • Excellent analytical, problem solving, and troubleshooting skills
    • Must think ahead strategically and must be able to weigh and decide between implementing new oracle ERP functionality and custom development.
    • Bachelor's degree in Business, Finance, Computer Science, Engineering or related field
    Desired Requirements:
    Experience with the following is desirable but not required
    • Master Scheduling / MRP
    • Project costing / accounting.
    • Oracle Projects, Oracle contracts or similar systems.
    • EDI
    Characteristics of Success at Netflix:
    • Strong customer orientation, both internally and externally.
    • Strategic thinking both technically and business wise.
    • Creative and solutions oriented thinking.
    • Ability to execute successfully on business strategy.
    • Hands-on work style.
    • Personal drive to achieve world class software development.
    • Desire to work in a fast paced, evolving, growing, dynamic environment.
    • Ability to work in a team environment without letting your ego gets in the way.
    • Love of technical challenges and the sense of pride it brings to solve them.
    • High level of integrity and ethics.
    Qualifications
    BS or MS in Information Technology or related field of study

  • JDev 10.1.3 ADF- eliminate XML

    We are evaluating JDeveloper 10.1.3 and OC4J for a critical project. We are committed to moving to EE5 as rapidly as possible. The ADF Faces components are very useful. However, creating the necessary data controls produces too many extraneous XML files. We are trying to reduce source files, not add more. In fact, we would like this application to be entirely free of XML within the enterprise.
    So, back to just plain JSF. My question is, is it possible to do JNDI lookups using the @EJB annotation in the managed bean to the session facade? I can't seem to make it work. Also, how soon before EE5 JDeveloper will be available for Solaris? Please advise on both questions. Thank you.
    Josh Foster

    Thanks kindly for your responses. I should have re-phrased my questions better. What I meant to say was:
    I have the following architecture:
    - JSF on the View/Controller
    - a Business Delegate session bean that calls Session Facades that encapsulate Entity Beans on the Model
    QUESTION 1. I can inject @EJB annotations on my Business Delegate to call Session Facade interfaces just fine. Similarly, I can use an @Resource annotation on the Session Facades to inject an EntityManager to call Entity Beans. No problem.
    But, when I try to inject @EJB(name="ejb/BusinessDelegate") on my JSF backing-beans (or some other JSF managed bean), OC4J just ignores the injection. I have the JNDI name registered in web.xml as <ejb-local-ref>.
    Now, it works fine if I go through the trouble of writing a service locator, using an InitialContext lookup. But I want to avoid writing this ugly code.
    So, my question is, should the @EJB annotation work from View to Model?
    QUESTION 2. I'm not against having a couple of standard XML files such as web.xml and faces-config.xml. I didn't mean to imply that those were troubling. But, when I create a data control on the Business Delegate so that I can use ADF Faces components on my JSPs, JDeveloper insists on creating XML files for ALL of my Session Facades, AND, for each one of my Entity Beans. This literally DOUBLES the number of source files I have to carry around.
    Is it possible this information can be annotated on the bean itself, preferably generated automatically by the IDE?
    3. Will JDeveloper 10.1.3 production work on Solaris? We have many new Solaris workstations on our team. This is imperative if we are going to be able to switch over to Oracle AS from BEA.
    Please kindly advise. And thank you again.
    Josh

  • To Forum Administrator ()

    I see, much messages in this topic.
    Why not divide this in more forums.
    maybe..
    applet.
    servlets
    JSP
    jdeveloper & oas.
    jdeveloper & apache..
    jdeveloper & 8i..
    and
    "Other"
    or maybe make a mail list for this topics...
    think about this,,
    Carlos
    [email protected]
    null

    ... & EJB...

  • Urgent.....Error while running a jsp report from Jdeveloper

    Hi,
    I am getting following error while running a jsp report from Jdeveloper. I am using version 10.1.2.1.0. The same report is working fine when I am running it from report builder. ( Both these tools were installed using Oracle Developer Suite 10g version 10.1.2). I did search in oracle discussion forums and google, but I could not arrive at a resolution of error. Any help in resolving this issue would be grateful.
    Error details:
    Page url : http://<hostipaddress>:8988/Reports-reportproject-context-root/MyReport.jsp
    Reports Error Page
    Wed Oct 17 20:03:22 IST 2007
    javax.servlet.jsp.JspException: REP-51002: Bind to Reports Server myreportserver failed
    javax.servlet.jsp.JspException: REP-51002: Bind to Reports Server myreportserver failed
         at oracle.reports.jsp.ReportTag.doStartTag(ReportTag.java:464)
         at MyReport.jspService(MyReport.jsp:4)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:57)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:350)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:285)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)
    Could anyone help me out in resolving this issue.
    Thanks
    Siva...

    Hi,
    I posted this message in jdeveloper forum yesterday, but there was no response. So I thought of posting it in this forum to check my luck.
    Thanks
    Siva...

  • Urgent...Error while running a jsp report in Jdeveloper

    Hi,
    I am getting following error while running a jsp report from Jdeveloper. I am using version 10.1.2.1.0. The same report is working fine when I am running it from report builder. ( Both these tools were installed using Oracle Developer Suite 10g version 10.1.2). I did search in oracle discussion forums and google, but I could not arrive at a resolution of error. Any help in resolving this issue would be grateful.
    Error details:
    Page url : http://<hostipaddress>:8988/Reports-reportproject-context-root/MyReport.jsp
    Reports Error Page
    Wed Oct 17 20:03:22 IST 2007
    javax.servlet.jsp.JspException: REP-51002: Bind to Reports Server myreportserver failed
    javax.servlet.jsp.JspException: REP-51002: Bind to Reports Server myreportserver failed
    at oracle.reports.jsp.ReportTag.doStartTag(ReportTag.java:464)
    at MyReport.jspService(MyReport.jsp:4)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:57)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:350)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:285)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
    at java.lang.Thread.run(Thread.java:534)
    Could anyone help me out in resolving this issue.
    Thanks
    Siva...

    Hi,
    I posted this message in jdeveloper forum yesterday, but there was no response. So I thought of posting it in this forum to check my luck.
    Thanks
    Siva...

  • Help with customised login JSP on SSO server

    Our customised version of the SSO login page JSP is required to access a database table in order to retrieve a dynamic message to display. This means we will need to create utility java classes in order to connect to the database and retrieve the information. We will also ideally need a data source on the SSO APP Server that we can reference in order to avoid hard-coding environment specific connection data.
    Can anyone help out on where we will need to install the utility classes and where the data source can be created in order for the login JSP to see them. Is there any other configuration we need to consider e.g. classpaths etc?
    The coding we are fine with, it is the actual "what goes where and don't forget to include this" that we are unsure of.

    Hello St***,
    Did you accomplished the cusomized SSO logon page with database access. If yes can you please provide met with some examples and instructions how to accomplish this.
    Regards,
    Dennis

Maybe you are looking for

  • Set background color when condition applied

    hi, Can anybody tell me how to set background color when condition applied. My initial plan was to highlight a specify row(Change color) when the third column of this JTable consists of OK word. int rowCount = table.getRowCount(); for(int i=0 ;i <row

  • Map ID problems

    Hi Folks, I need to create Map IDs to new topics. The ID and updated hm file were provided by the developer. I did the following steps: 1. Under Project, right-click Alias and click New Alias. 2. In the alias box, click type to ID as found in the hh

  • Task execution Log

    Hi Experts, In consolidation monitor for a data collection task we have activated "last log" funtionality at Task level. Please help us to find out the table where the last log stored. Not only the status of the log but the messages that comes in the

  • Button Link Problems .swf

    Hello. I am using Adobe Flash CS6. I am having trouble making 2 separate links for 2 buttons. I have been unsuccessful. I made 2 different buttons and thought i made 2 separate links. But, When both buttons are clicked, they link to the same page. I

  • Oracle Support in Android OS

    Ok, it is a question, I donwload the Oracle Support for android OS, I would like to know what is the account for to access? I can't to access with my oracle account . please explain me