Difference between revisions of "HowTo Guides"

From AgileApps Support Wiki
imported>Aeric
imported>Aeric
Line 101: Line 101:


:* [[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 Tutorial: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:
<!--
::* 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.)
::* Easier to query for orders that do, set-subtract from all orders using <tt>HashSet(HashMap)</tt> constructors and the <tt>set.removeAll(set)</tt> method.
:* Easier to query for orders that do, set-subtract from all orders using <tt>HashSet(HashMap)</tt> constructors and the <tt>set.removeAll(set)</tt> method.
::* Similarly: Use Set Intersection to find all orders that include product X and product Y, using the <tt>set.retainAll(set)</tt> method.
:* Similarly: Use Set Intersection to find all orders that include product X and product Y, using the <tt>set.retainAll(set)</tt> method.
-->


===Tackle Advanced Projects===
===Tackle Advanced Projects===

Revision as of 02:25, 20 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.

Platform Access

Basic Operations

Perform Specialized Operations

Customize Your Interface

  • Future Tutorial:Create a custom Dashboard (Home Page) to see things at a glance.
  • Future Tutorial:Filter a Record View
  • Future Tutorial:Modify a Report
  • Future Tutorial:Customize Your Workspace

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

  • Future Tutorial:Create a Custom Print Button
  • Future Tutorial:Collect Data from an External Web Site using Web Forms
  • Future Tutorial:Create a Site that anyone can access without logging into the platform

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.

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

Customize Application Pages

  • Future Tutorial:Make a JSP Page into a Web Tab
  • Future Tutorial:Make a JSP Page into a Widget
  • Future Tutorial:Use a JSP Page to Create a Custom Action Button

Tackle Advanced Projects