Difference between revisions of "HowTo Guides"

From AgileApps Support Wiki
imported>Aeric
imported>Aeric
Line 8: Line 8:
:* HowTo:Modify a Report
:* HowTo:Modify a Report
:* HowTo:Customize Your Workspace
:* HowTo:Customize Your Workspace
:* HowTo:Display a Widget in the Home Page
:* HowTo:Display a Widget in the Sidebar


===Manage Your Data===
===Manage Your Data===
Line 16: Line 18:
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 familiar with the [[Platform Interface]].
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 familiar with the [[Platform Interface]].


===Customize Platform Features===
===Customize the Application Interface===
:* HowTo:Create a Custom Sidebar
:* HowTo:Create a Custom Sidebar
:* HowTo:Build a Site that Anyone can Access
:* HowTo:Collect Data from an External Web Site using [[Web Forms]]
:* HowTo:Collect Data from an External Web Site
:* HowTo:Create a [[Site]] that anyone can access without logging into the platform


=== Build and Customize Applications===
=== Build and Customize Applications===
Line 30: Line 32:
:* HowTo:Automatically take action when Object data changes? ([[Data Policy]])
:* HowTo:Automatically take action when Object data changes? ([[Data Policy]])
:* HowTo:Automatically take action on specified calendar dates? ([[Data Policy]])
:* HowTo:Automatically take action on specified calendar dates? ([[Data Policy]])
:* HowTo:Create a [[Site]] that anyone can access


==For Platform Developers==
==For Platform Developers==
Line 40: Line 41:
:* HowTo:Do Unit Testing in the Platform
:* HowTo:Do Unit Testing in the Platform


===Tackle Development Projects===
===Customize Application Pages===
:* [[HowTo:Handle Incoming Emails Programmatically|Handle Incoming Emails Programmatically]]
:* HowTo:Create a JSP Page using Java, or JavaScript and REST
::* HowTo:Make a JSP Page into a Web Tab
::* HowTo:Make a JSP Page into a Widget
:* HowTo: Create a Back-end Controller for a JSP Page
:* [[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]]
:* HowTo:Use SQL Queries and Java Sets to Get the Inverse of a Complex Query
:* HowTo:Use SQL Queries and Java Sets to Get the Inverse of a Complex Query
Line 50: Line 54:


===Do Advanced Development===
===Do Advanced Development===
:* [[HowTo:Handle Incoming Emails Programmatically|Handle Incoming Emails Programmatically]]
:* HowTo:Develop in Eclipse
:* HowTo:Develop in Eclipse
:* HowTo:Develop in Teams Using a Version Control System
:* HowTo:Develop in Teams Using a Version Control System

Revision as of 00:28, 13 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.

Customize Your Interface

  • HowTo:Create a Dashboard
  • 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

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 familiar with the Platform Interface.

Customize the Application Interface

  • HowTo:Create a Custom Sidebar
  • 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

Notes:
  • DONE FOR YOU: List view of records, forms to add and update data, basic reports
  • HowTo:Calculate values using data in Related Records (grid sections)
  • HowTo:Automate a standard business process by creating a Workflow
  • HowTo:Send an email when a record is created or updated (Data Policy)
  • HowTo:Automatically take action when Object data changes? (Data Policy)
  • HowTo:Automatically take action on specified calendar dates? (Data Policy)

For Platform Developers

These guides tell you how to take advantage of advanced platform features, by doing a little programming. You should be familiar with one or more of Java, JavaScript, or REST.

Set up a Basic Environment

  • HowTo:Develop Safely Using Sandboxes (and use them for backups)
  • HowTo:Deploy Your Work Using Packages (and use them for backups)
  • HowTo:Do Unit Testing in the Platform

Customize Application Pages

  • HowTo:Create a JSP Page using Java, or JavaScript and REST
  • HowTo:Make a JSP Page into a Web Tab
  • HowTo:Make a JSP Page into a Widget
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.

Do Advanced Development