Difference between revisions of "HowTo Guides"

From AgileApps Support Wiki
imported>Aeric
imported>Aeric
Line 94: Line 94:
:* [[HowTo:Handle Incoming Emails Programmatically|Handle Incoming Emails Programmatically]]
:* [[HowTo:Handle Incoming Emails Programmatically|Handle Incoming Emails Programmatically]]
:* [[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 Programs using the [[REST API]]s
:* [[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:Use the HTTPConnection class to access a web service
:* Future:Adding Actions/Notes to the records programmatically
<!--{{#if: {{ShowIsvInfo}} |
<!--{{#if: {{ShowIsvInfo}} |
==For ISVs==
==For ISVs==
:* ...
:* ...
}}-->
}}-->

Revision as of 23:24, 18 January 2012

Bookmark this page: https://agileappscloud.info/aawiki-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

  • HowTo:Create a Dashboard to see things at a glance
  • HowTo:Filter a Record View
  • HowTo:Modify a Report
  • HowTo:Customize Your Workspace
  • HowTo:Display a Widget in the Home Page
  • HowTo:Display a Widget in the Sidebar

Manage Your Data

  • HowTo:Import Data
  • HowTo:Remove Recently Imported Records
  • HowTo: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

  • Display the Widget in the Home Page
  • Display the Widget in the Sidebar
  • HowTo:Create a Custom Print Button
  • HowTo:Collect Data from an External Web Site using Web Forms
  • HowTo:Create a Site that anyone can access without logging into the platform

Build and Customize Applications

Note: DONE FOR YOU: List view of records, forms to add and update data, basic reports

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 Safely Using Sandboxes (and use them for backups)
  • Future:Deploy Your Work Using Packages (and use them for backups)
  • Future:Develop in Teams Using a Version Control System

Customize Application Pages

  • Future:Make a JSP Page into a Web Tab
  • Future:Make a JSP Page into a Widget
  • Future:Use a JSP Page to Create a Custom Action Button
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.

Tackle Advanced Projects