Difference between revisions of "HowTo Guides"
imported>Aeric |
imported>Aeric |
||
Line 24: | Line 24: | ||
===Customize Your Interface=== | ===Customize Your Interface=== | ||
:* Future:Create a custom [[Dashboard]] (Home Page) to see things at a glance. | :* Future Tutorial:Create a custom [[Dashboard]] (Home Page) to see things at a glance. | ||
:* Future:Filter a Record [[View]] | :* Future Tutorial:Filter a Record [[View]] | ||
:* Future:Modify a [[Report]] | :* Future Tutorial:Modify a [[Report]] | ||
:* Future:Customize Your [[Workspace]] | :* Future Tutorial:Customize Your [[Workspace]] | ||
===Manage Your Data=== | ===Manage Your Data=== | ||
:* Future:[[Import]] Data | :* Future Tutorial:[[Import]] Data | ||
:* Future:Remove Recently Imported Records | :* Future Tutorial:Remove Recently Imported Records | ||
:* Future:Send an email when a record is created or updated, using a [[Data Policy]] | :* Future Tutorial:Send an email when a record is created or updated, using a [[Data Policy]] | ||
==For Application Designers== | ==For Application Designers== | ||
Line 39: | Line 39: | ||
===Customize the Application Interface=== | ===Customize the Application Interface=== | ||
:* [[HowTo:Create a Custom Sidebar Using Graphic Images|Create a Custom Sidebar Using Graphic Images]] | :* [[HowTo:Create a Custom Sidebar Using Graphic Images|Create a Custom Sidebar Using Graphic Images]] | ||
:* Future:Use a Custom Web [[Page]] to make a Personalized [[Widget]] | :* Future Tutorial:Use a Custom Web [[Page]] to make a Personalized [[Widget]] | ||
::* Future:Display the Widget in the [[Home Page]] / [[Dashboard]] | ::* Future Tutorial:Display the Widget in the [[Home Page]] / [[Dashboard]] | ||
::* Future:Display the Widget in the [[Sidebar]] | ::* Future Tutorial:Display the Widget in the [[Sidebar]] | ||
:* Future:Create a Custom Print Button <!--email--> | :* Future Tutorial:Create a Custom Print Button <!--email--> | ||
:* Future:Collect Data from an External Web Site using [[Web Forms]] | :* Future Tutorial:Collect Data from an External Web Site using [[Web Forms]] | ||
:* Future:Create a [[Site]] that anyone can access without logging into the platform | :* Future Tutorial:Create a [[Site]] that anyone can access without logging into the platform | ||
=== 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]] | :* Future Tutorial: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]] | ||
:* [[HowTo:Display Customer Data in an Order as a Read-Only Field|Display Customer Data in an Order as a Read-Only Field]] | :* [[HowTo:Display Customer Data in an Order as a Read-Only Field|Display Customer Data in an Order as a Read-Only Field]] | ||
<!--Revise to add the Source Object: Internet, Store, Catalog, ... (many to many)--> | <!--Revise to add the Source Object: Internet, Store, Catalog, ... (many to many)--> | ||
:* Future:Aggregate values for multiple [[Related Record|Related Records]] displayed a [[Subform]] | :* Future Tutorial:Aggregate values for multiple [[Related Record|Related Records]] displayed a [[Subform]] | ||
:* Future:Automate a standard business process by creating a [[Workflow]] | :* Future Tutorial:Automate a standard business process by creating a [[Workflow]] | ||
:* Future:Automatically take action when Object data changes (event-Based [[Data Policy]]) | :* Future Tutorial:Automatically take action when Object data changes (event-Based [[Data Policy]]) | ||
:* Future:Automatically take action on specified dates (calendar-Based [[Data Policy]]) | :* Future Tutorial:Automatically take action on specified dates (calendar-Based [[Data Policy]]) | ||
=== Build Custom Web Pages === | === Build Custom Web Pages === | ||
Line 65: | Line 65: | ||
===Set up Your Environment=== | ===Set up Your Environment=== | ||
:* Future:Develop using the [[Eclipse Plug-In]] | :* Future Tutorial:Develop using the [[Eclipse Plug-In]] | ||
:* Future:Use the [[Debug Log]] effectively | :* Future Tutorial:Use the [[Debug Log]] effectively | ||
<!-- | <!-- | ||
Marina wrote: | Marina wrote: | ||
Line 82: | Line 82: | ||
- Add XML pretty printing. | - Add XML pretty printing. | ||
--> | --> | ||
:* Future:Use the Platform's [[Unit Test Framework]] | :* Future Tutorial:Use the Platform's [[Unit Test Framework]] | ||
:* Future:Debug using Eclipse | :* Future Tutorial:Debug using Eclipse | ||
:* Future:Develop Safely Using [[Sandboxes]] (and use them for backups) | :* Future Tutorial:Develop Safely Using [[Sandboxes]] (and use them for backups) | ||
:* Future:Deploy Your Work Using [[Packages]] (and use them for backups) | :* Future Tutorial:Deploy Your Work Using [[Packages]] (and use them for backups) | ||
:* Future:Develop in Teams Using a Version Control System | :* Future Tutorial:Develop in Teams Using a Version Control System | ||
===Customize Application Pages=== | ===Customize Application Pages=== | ||
:* Future:Create a Simple JSP [[Page]] using Java | :* Future Tutorial:Create a Simple JSP [[Page]] using Java | ||
:* Future:Create an HTML [[Page]] using [[JavaScript Functions]] and the [[REST API]] | :* Future Tutorial:Create an HTML [[Page]] using [[JavaScript Functions]] and the [[REST API]] | ||
::* Future:Make a JSP Page into a [[Web Tab]] | ::* Future Tutorial:Make a JSP Page into a [[Web Tab]] | ||
::* Future:Make a JSP Page into a [[Widget]] | ::* Future Tutorial:Make a JSP Page into a [[Widget]] | ||
::* Future:Use a JSP Page to Create a Custom [[Action]] Button <!--email--> | ::* Future Tutorial:Use a JSP Page to Create a Custom [[Action]] Button <!--email--> | ||
:* [[HowTo:Create a JSP page and Java Controller|Create a JSP page and Java Controller]] | :* [[HowTo:Create a JSP page and Java Controller|Create a JSP page and Java Controller]] | ||
:* Future:Create a [[Component]] and a Java Controller | :* Future Tutorial:Create a [[Component]] and a Java Controller | ||
:* Future:Create an external [[Site]] wired to a Java Controller | :* Future Tutorial:Create an external [[Site]] wired to a Java Controller | ||
:* [[HowTo:Use a SQL Query to List Records in a Custom Page|Use a SQL Query to List Records in a Custom Page]] | :* [[HowTo:Use a SQL Query to List Records in a Custom Page|Use a SQL Query to List Records in a Custom Page]] | ||
:Future:Use SQL Queries and Java Sets to Get the Inverse of a Complex Query | :Future Tutorial:Use SQL Queries and Java Sets to Get the Inverse of a Complex Query | ||
:: Notes: | :: Notes: | ||
::* E.g. All orders last month that do ''not'' include product X. (No related OrderItems point to that product.) | ::* E.g. All orders last month that do ''not'' include product X. (No related OrderItems point to that product.) | ||
Line 111: | Line 111: | ||
:* [[HowTo:Create a Data Handler to Add Data to a Package|Create a Data Handler to Add Data to a Package]] | :* [[HowTo:Create a Data Handler to Add Data to a Package|Create a Data Handler to Add Data to a Package]] | ||
:* [[HowTo:Write Java Code for Data Policies|Write Java Code for Data Policies]] | :* [[HowTo:Write Java Code for Data Policies|Write Java Code for Data Policies]] | ||
:* Future:Write Programs using the [[REST API]]s | :* Future Tutorial:Write Programs using the [[REST API]]s | ||
:* Future:Use the HTTPConnection class to access a web service | :* Future Tutorial:Use the HTTPConnection class to access a web service | ||
<!-- | <!-- | ||
Marina wrote: | Marina wrote: | ||
Line 118: | Line 118: | ||
E.g. A customer has some information that it don’t want/can’t keep on PaaS. The access to that information is via a gateway server that the company has (e.g. http get, SOAP, json, …). How do I access that gateway from PaaS? | E.g. A customer has some information that it don’t want/can’t keep on PaaS. The access to that information is via a gateway server that the company has (e.g. http get, SOAP, json, …). How do I access that gateway from PaaS? | ||
--> | --> | ||
:* Future: | :* Future Tutorial:Programatically Add Activities and Notes to records | ||
<!--{{#if: {{ShowIsvInfo}} | | <!--{{#if: {{ShowIsvInfo}} | | ||
==For ISVs== | ==For ISVs== | ||
:* ... | :* ... | ||
}}--> | }}--> |
Revision as of 02:24, 20 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.
Platform Access
Basic Operations
Perform Specialized Operations
Customize Your Interface
Manage Your Data
- Future Tutorial:Import Data
- Future Tutorial:Remove Recently Imported Records
- Future Tutorial: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 Tutorial: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 Tutorial:Use the Application Wizard to Build a Sample Order Processing System
- Create an Object
- Display Customer Data in an Order as a Read-Only Field
- Future Tutorial:Aggregate values for multiple Related Records displayed a Subform
- Future Tutorial:Automate a standard business process by creating a Workflow
- Future Tutorial:Automatically take action when Object data changes (event-Based Data Policy)
- Future Tutorial: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 Tutorial:Develop using the Eclipse Plug-In
- Future Tutorial:Use the Debug Log effectively
- Future Tutorial:Use the Platform's Unit Test Framework
- Future Tutorial:Debug using Eclipse
Customize Application Pages
- Future Tutorial:Create a Simple JSP Page using Java
- Future Tutorial:Create an HTML Page using JavaScript Functions and the REST API
- Create a JSP page and Java Controller
- Future Tutorial:Create a Component and a Java Controller
- Future Tutorial:Create an external Site wired to a Java Controller
- Future Tutorial: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 Tutorial:Write Programs using the REST APIs
- Future Tutorial:Use the HTTPConnection class to access a web service
- Future Tutorial:Programatically Add Activities and Notes to records