Difference between revisions of "HowTo Guides"
imported>Aeric |
imported>Aeric |
||
Line 46: | Line 46: | ||
=== Build and Customize Applications=== | === Build and Customize Applications=== | ||
When you create an application, much is done ''for'' you. The platform automatically constructs record views, forms for adding and updating data, and basic reports. From there, you can begin to customize the application. | When you create an application, much is done ''for'' you. The platform automatically constructs record views, forms for adding and updating data, and basic reports. From there, you can begin to customize the application. | ||
:* | :* Future:Use the [[Application Wizard]] to Build a [[Sample Order Processing System]] | ||
:* [[HowTo:Create an Object|Create an Object]] | :* [[HowTo:Create an Object|Create an Object]] | ||
:* | :* Future:Calculate values using data in [[Related Record|''Related'' Records]] ([[Subform]]s) | ||
:* | :* Future:Automate a standard business process by creating a [[Workflow]] | ||
:* | :* Future:Automatically take action when Object data changes (event-Based [[Data Policy]]) | ||
:* | :* Future:Automatically take action on specified dates (calendar-Based [[Data Policy]]) | ||
=== Build Custom Web Pages === | === Build Custom Web Pages === |
Revision as of 19:42, 19 January 2012
Bookmark this page: https://agileappscloud.info/aadev-src/HowTo
For Users
These guides tell you how to get the most out of the platform. You should be familiar with Navigating the User Interface.
Perform Basic Operations
Perform Specialized Operations
Customize Your Interface
Manage Your Data
- Future:Import Data
- Future:Remove Recently Imported Records
- Future:Send an email when a record is created or updated, using a Data Policy
For Application Designers
These guides tell you how to create and customize applications. You should be familiar with one or more of HTML coding, CSS formatting, or JavaScript, and be adept at Navigating the User Interface.
Customize the Application Interface
- Create a Custom Sidebar Using Graphic Images
- Future:Use a Custom Web Page to make a Personalized Widget
Build and Customize Applications
When you create an application, much is done for you. The platform automatically constructs record views, forms for adding and updating data, and basic reports. From there, you can begin to customize the application.
- Future:Use the Application Wizard to Build a Sample Order Processing System
- Create an Object
- Future:Calculate values using data in Related Records (Subforms)
- Future:Automate a standard business process by creating a Workflow
- Future:Automatically take action when Object data changes (event-Based Data Policy)
- Future:Automatically take action on specified dates (calendar-Based Data Policy)
Build Custom Web Pages
For Platform Developers
These guides tell you how to program the platform APIs to take advantage of advanced platform features. You should be familiar with one or more of Java, JavaScript, AJAX, SQL, or REST.
Set up Your Environment
- Future:Develop using the Eclipse Plug-In
- Future:Use the debug log
- Future:Use the Logger class
- Future:Use the Platform's Unit Test Framework
- Future:Debug using Eclipse
Customize Application Pages
- Future:Create a Simple JSP Page using Java
- Future:Create an HTML Page using JavaScript Functions and the REST API
- Create a JSP page and Java Controller
- Future:Create a Component and a Java Controller
- Future:Create an external Site wired to a Java Controller
- Future:Use SQL Queries and Java Sets to Get the Inverse of a Complex Query
- Notes:
- E.g. All orders last month that do not include product X. (No related OrderItems point to that product.)
- Easier to query for orders that do, set-subtract from all orders using HashSet(HashMap) constructors and the set.removeAll(set) method.
- Similarly: Use Set Intersection to find all orders that include product X and product Y, using the set.retainAll(set) method.
- Notes:
Tackle Advanced Projects
- Handle Incoming Emails Programmatically
- Create a Data Handler to Add Data to a Package
- Write Java Code for Data Policies
- Future:Write Programs using the REST APIs
- Future:Use the HTTPConnection class to access a web service
- Future:Programmatically Add Activities and Notes to records