Could you point me to a ADF development best practice recommendation doc

Could you point me to a ADF development best practice recommendations document for ADF 11g that could be used as a guideline for developers.
Naming conventions
Usage of Models, Implement validation in BC...
Best practices for the UI with ADF Faces...
Recommendations.
Thanks

The right place to start :
http://groups.google.com/group/adf-methodology
Also you may take a look at this:
http://www.oracle.com/technology/products/jdev/collateral/4gl/papers/Introduction_Best_Practices.pdf
Also
http://groups.google.com/group/adf-methodology/browse_thread/thread/e7c9d557ab03b1cb?hl=en#
There're some interesting tips there.

Similar Messages

  • Hello! Could you tell me which configuration is the best for graphic works, like making large POSTERS or BANNERS (for instance 2800X500 cm)???

    Hello! Could you tell me which configuration is the best for graphic works, like making large POSTERS or BANNERS (for instance 2800X500 cm)???

    scorpiorey wrote:
    I just create file and send it to printer-house.
    Never done that size files (posters) before, so, didn't know it would be such problem.
      Model Name:          MacBook Pro
      Model Identifier:          MacBookPro8,1
      Processor Name:          Intel Core i7
      Processor Speed:          2.8 GHz
      Number of Processors:          1
      Total Number of Cores:          2
      L2 Cache (per Core):          256 KB
      L3 Cache:          4 MB
      Memory:          4 GB
      Boot ROM Version:          MBP81.0047.B24
      SMC Version (system):          1.68f98
    this is what i have. now i know that it's not enough
    If that's what you're using and it actually works, albeit slowly, I'd suggest taking The hatter's advice and go with the 6 core Mac Pro with  24GB of RAM and the 5870 video card. The RAM could come from here: http://eshop.macsales.com/shop/memory/Mac-Pro-Memory#1333-memory

  • OBIEE Report and Dashboard development best practice

    Hi All,
    Is there any best practice available on OBIEE report and dashboard development? Any help would be appreciated.
    Thanks,
    RK

    http://forums.oracle.com/forums/thread.jspa?messageID=2718365
    this might help you
    Thanks

  • Large ADF Applications - Best Practice

    Hi
    We have a single ADF project (one model, one view/controller) with the following model components:
    68 AMs
    387 VOs
    175 EOs
    This project is ever expanding, and we are suffering some well-known performance problems when open JDeveloper or open the view/controller project.
    Are there any best-practice guidelines on how to structure your ADF projects?
    e.g. what is the maximum recommended number of AMs/VOs/EOs in a single project?
    We have kept everything in a single project after some advice from Oracle to help us to re-use common modules easily.
    We use JDeveloper v10.1.3 and use JHeadstart v10.1.3 SU 1 to generate our view/controller layer, using multiple faces-config files.
    Thanks
    Denis

    Hi Denis,
    We have exactly the same problem in expanding our application but we have a single AM and less EOs, VOs than you right now. There are some threads discussing this issue but I haven't found a complete and standard solution yet. The only thing I know is that almost every thing can be segmented in ADF like projects, application module, faces-config.xml, ...
    Another thing which is very important is that segmenting an application is a tradeoff, it has some advantaes but problems in SCM, security, ...
    S/\EE|)

  • Looking for team development best practices

    We are new to Flex and have a team of five developers with
    JEE background. My question is how to best organize a flex project,
    so it's efficient for everyone to work together. Coming from
    typical JEE Web application development, it's quite straightforward
    to break up features into separate Java classes and JSP pages. It
    reduces chances of multiple people working on the same file and the
    merging hassle. I am looking for best practices for breaking up
    flex code especially for MXML, so it is easy for a team of
    developers to work on the project.

    We are new to Flex and have a team of five developers with
    JEE background. My question is how to best organize a flex project,
    so it's efficient for everyone to work together. Coming from
    typical JEE Web application development, it's quite straightforward
    to break up features into separate Java classes and JSP pages. It
    reduces chances of multiple people working on the same file and the
    merging hassle. I am looking for best practices for breaking up
    flex code especially for MXML, so it is easy for a team of
    developers to work on the project.

  • Could you point me to?

    Hello,
    I'm just learning scripting in Designer and am using the Adobe XML Form Object Model Reference to learn the various objects and methods available.
    When I move from the document over to Designer and try things out, I've noticed certain things the docs say should be there and are not. I've also found things in the editor not documented.
    Is there a resource for learning about the discrepancies, or a more up-to-date document? Mine is from October 2005.
    Thank you

    Hi Mike,
    Actually, I figured it out. I spaced out I have an object hierarchy and the editor was dutifully showing me methods and properties from superclasses.
    Also, the editor doesn't always have the context information, so it appears some things aren't there, but running the script works fine.
    Thanks,
    Jeff

  • How do you center dialogs with multiple monitors. code, best practices

    My existing code will take the pixel size of the java app, and using the size of the dialog, it will center dialogs perfectly in the center of the application. This is great for single monitors, but when multiple monitors are introduced it is a problem. With dual monitor, the dialog is split in half between the two monitors.
    I should be able to determine which pixel/frame initiated the user's action; and then i am hoping to get some code or direction on:
    1. how to determine which monitor the user initiated the action on (knowing the px or frame location, how would i do this)
    2. how to center dialog on that monitor
    if possible, it would be appreciated if you can provide some code; i cant find anything on determing pixel size of monitors and this seems to be a little bit of a project to do from scratch. open source, 3rd party, insight, guidance, all is appreciated. thanks !

    This code may help:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class OptionPaneDemo {
        ActionListener al = new ActionListener() {
            public void actionPerformed(ActionEvent evt) {
                Component comp = (Component) evt.getSource();
                JFrame f = (JFrame) SwingUtilities.windowForComponent(comp);
                showDialogInUpperRightCorner(f);
        public static void main(String[] args) {
            EventQueue.invokeLater(new Runnable(){
                public void run() {
                    new OptionPaneDemo().go();
        void go() {
            GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
            for(GraphicsDevice gd: ge.getScreenDevices()) {
                JButton showDialogButton = new JButton("show the dialog");
                showDialogButton.addActionListener(al);
                JFrame f = new JFrame(gd.getDefaultConfiguration());
                f.getContentPane().add(showDialogButton, BorderLayout.NORTH);
                f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                f.pack();
                centerWindow(f);
                f.setVisible(true);
        void centerWindow(Window w) {
            Rectangle windowBounds = w.getBounds();
            GraphicsConfiguration gc = w.getGraphicsConfiguration();
            Rectangle screenBounds = gc.getBounds();
            int x = screenBounds.x + (screenBounds.width - windowBounds.width)/2;
            int y = screenBounds.y + (screenBounds.height - windowBounds.height)/2;
            w.setLocation(x, y);
        void showDialogInUpperRightCorner(JFrame f) {
            JOptionPane pane = new JOptionPane("Hello, world!");
            JDialog dialog = pane.createDialog(f, "title");
            Rectangle dialogBounds = dialog.getBounds();
            GraphicsConfiguration gc = dialog.getGraphicsConfiguration();
            Rectangle screenBounds = gc.getBounds();
            //int x = screenBounds.x + screenBounds.width - dialogBounds.width;
            //int y = screenBounds.y == 0 ? 1 : screenBounds.y;
            int x = screenBounds.x;
            int y = screenBounds.y + screenBounds.height - dialogBounds.height-1;
            System.out.format("(%d,%d)%n", x, y);
            dialog.setLocation(x, y);
            dialog.setVisible(true);
    }

  • Could you please recommend a book or two about data warehouse designing?

    Want to read some books about data warehouse and how to build or deal with the problems during the data warehousing process.
    Anyone could recommend any book regard to this?
    I want the book to mainly talk about the common case scenarios in data warehouse area and the general solutions to those scenarios.
    I am quite new in this area, so any recommendation would be highly appreciated.
    Thanks.

    Perhaps also these resources, if you've not already seen them
    DW Best Practices Whitepaper
    http://www.oracle.com/technetwork/database/features/bi-datawarehousing/twp-dw-best-practies-11g11-2008-09-132076.pdf
    Greg Rahn on the core performance fundamentals of Oracle data warehousing
    http://structureddata.org/2009/12/14/the-core-performance-fundamentals-of-oracle-data-warehousing-introduction/

  • Development System Backup - Best Practice / Policy for offsite backups

    Hi, I have not found any recommendations from SAP on best practices/recommendations on backing up Development systems offsite and so would appreciate some input on what policies other companies have for backing up Development systems. We continuously make enhancements to our SAP systems and perform daily backups; however, we do not send any Development system backups offsite which I feel is a risk (losing development work, losing transport & change logs...).
    Does anyone know whether SAP have any recommendations on backuping up Development systems offsite? What policies does your company have?
    Thanks,
    Thomas

    Thomas,
    Your question does not mention consideration of both sides of the equation - you have mentioned the risk only.  What about the incremental cost of frequent backups stored offsite?  Shouldn't the question be how the 'frequent backup' cost matches up with the risk cost?
    I have never worked on an SAP system where the developers had so much unique work in progress that they could not reproduce their efforts in an acceptable amount of time, at a acceptable cost.  There is typically nothing in dev that is so valuable as to be irreplaceable (unlike production, where the loss of 'yesterday's' data is extremely costly).  Given the frequency that an offsite dev backup is actually required for a restore (seldom), and given that the value of the daily backed-up data is already so low, the actual risk cost is virtually zero.
    I have never seen SAP publish a 'best practice' in this area.  Every business is different; and I don't see how SAP could possibly make a meaningful recommendation that would fit yours.  In your business, the risk (the pro-rata cost of infrequently  needing to use offsite storage to replace or rebuild 'lost' low cost development work) may in fact outweigh the ongoing incremental costs of creating and maintaining offsite daily recovery media. Your company will have to perform that calculation to make the business decision.  I personally have never seen a situation where daily offsite backup storage of dev was even close to making  any kind of economic sense. 
    Best Regards,
    DB49

  • Best practices for "designer - developer" interaction in Flex Mobile

    Hi,
    I'm starting development of a mobile software application and Flex Mobile is the platform I've chosen for that.
    What is the best practice / recommended workflow for designer-developer interaction? For example in web application the designer provides HTML/CSS templates to the developer which integrates them in the Web Application. What is the analogue in Flex Mobile? What should I request as input from the designer?
    I'll appreciate any hints, links, advises or previous experience on the topic.
    Thanks!
    Best Regards,
    Dinko

    If you're using Adaptive Web Design (CSS3 media queries), you can maintain one site with CSS Layouts optimized for different device widths.
    http://www.adobe.com/devnet/dreamweaver/articles/introducing-media-queries.html
    jQuery Mobile
    http://jquerymobile.com/
    If you're actually running separate web sites for mobile and non-mobile devices, have a look at this recent discussion:
    http://forums.adobe.com/message/4177360#4177360
    IMO, there is nothing wrong with providing links for mobile and non-mobile users to choose which site they would prefer to use -- especially for tablets who may have an interest in both.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Best Practices in SharePoint 2010 ( Out of the box feature vs Custom Web Part, development )

    Hi
    How do we differentiate on when to allow custom web parts and when to use out of the box.
    What are the performance issues involved when we deploy a custom web part into the SharePoint server. 
    Why do some companies prefer to allow only out of the box features, and no custom work is done?

    SharePoint is a powerful, flexible server product that can provide a wealth collaboration environment right out of box.
    Best answer for your question is depend upon your requirement. Sometime Out of Box features will solve all the problem with little designing. But sometime your requirement need a Custom Web part / solution.
    With OOTB implementation the big advantage is easy to trouble shoot & fix the issues. You will also found tons of blogs on internet for OOTB features. In custom development, its hard to troubleshoot & identifying whether its SharePoint issue or Custom
    code issue.
    check the below article for more ideas.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/1e7845ef-61e0-4d01-bb6c-92519e6d7139/sharepoint-2010-outofbox-best-practices?forum=sharepointgeneralprevious
    http://www.cdh.com/media/articles/Pages/SharePoint-out-of-the-box---To-customize-or-not-to-customize.aspx
    Master List of SharePoint 2010 On-Premises Custom Development Best Practices
    http://i.zdnet.com/whitepapers/Quest_WPW_SharepointDev_Custom_US_KS_v3.pdf
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Is there any Best Practice Document for OEDQ development?Please share.

    Is there any Best Practice Document for OEDQ development?Please share.

    Hello, Please check the below projects, you would get better idea on the best practices like Naming Standards, which processors to use, how to bundle the jobs, external tasks etc.,
    edq-cds-data-quality-health-check-9.0.4.(645).dxi
    edq-cds-initialize-reference-data-9.0.4.(645).dxi
    Regards,
    Bala Govi

  • What is SAP Best Practices?Could it be installed to my IDES ECC6?

    Hi,
    Could the SAP best practices be installed to my IDES ECC6?
    And how to??
    Let's take example for High-Tech industry.
    Thank you very much.

    Dear Hoo,
    In the best Practices there will be different release versions so based on that you need to prepare the system with the help of BASIS people.
    You have to apply some notes and patches before installing the specific industry version.
    High tech Industry installation guide
    Go to http://help.sap.com here you select SAP Best Practices >Click on Industry packages>Click on High Tech in this page you can able to find the Installation & Upgradation guide from this you can down lode the installation steps based on that you can install.
    I hope it will help you,
    Regards,
    Murali.

  • Please could you help my iphone 5 is stuck while in recovery mode, there is a USB sign and an arrow is pointing to itunes symbol, with the Itune red logo symbol

    Please could you help my iphone 5 is stuck while in recovery mode, there is a USB sign and an arrow is pointing to itunes symbol, with the Itune red logo symbol

    Hi Turn iPhone off Connect lead to USB on your PC Press & hold power button down on iPhone  don't let go Connect lead to iPhone keep button pressed until PC sees iPhone then wait for restore . Cheers Brian

  • I purchased the ExportPDF but I can't convert to Power Point. Could you tell me what I need in order to convert from PDF to Power Point?

    I purchased the ExportPDF but I can't convert to Power Point. Could you tell me what I need in order to convert from PDF to Power Point?

    You will need PDF Pack to convert to PowerPoint.
    Contact Customer Care - they may be able to help you to change your subscription.
    [topic moved to PDF Pack forum]

Maybe you are looking for

  • Instant Search not working on local mailbox in Outlook 2007 on Windows Server 2008 R2 Terminal Server

    Sometime last week Instant Search stopped working on a Terminal Server we have deployed. I don't use Outlook on the server so I didn't notice it myself but users started complaining several days ago. When I checked instant search settings everything

  • Zen touch - dection is

    hi, i have a creative zen touch and i installed it on my home computer, and it's worked great. but, i have some christmas songs on my laptop that i wanted to put on it as well. so i installed it on to my laptop. when i plug it in, it recognizes it, b

  • [i3] urxvt has black borders...

    Hi there I'm trying out the i3 window manager and it seems to be quite nice except for one little thing that is driving me mad. urxvt always appears with some black borders around it and I don't know how to remove them. I really can't understand if t

  • How to set the ToolTipText to the titlebar of the JInternalFrame.

    Hi I have the requirement to set the ToolTipText on the Title Bar of the JInternalFrame. When the internal frame is minimized when we keep the mouse on the top of the Title Bar of the internal frame the tool tip should come. Please suggest me how to

  • Display Distinct Values

    Hello Gurus, I have a table with 3 Cols No , Id , Name where ( No , ID ) is a compsite key and the data looks like this No , Id , Name 1 2 A 1 3 B 1 4 C i want a SQL Query which displays data like this No Id Name 1 2 A 3 B 4 C Help will be really app