The purpose of this function is to allow the user to update the details of entries on the TODO table.
This form is accessed by selecting entries in the List ToDo screen before pressing the 'UPDATE' button in the navigation bar.
For a complete description of how this type of form works please see Transaction Pattern UPDATE 1.
Field Name | Type | Description |
---|---|---|
User ID | String | Required. Must be unique. As this is the primary key it cannot be changed. |
Seq No | Integer | Required. Generated by the system. As this is the primary key it cannot be changed. |
Name | String | Required. Free format text |
Description | Text | Optional. Additional notes for the item. |
Due Date | Date | This identifies the date by which this item should be completed. |
Visibility | number | This identifies the number of days before due date when this item will first become visible on the HOME page. This will prevent any items which are not due until far into the future from appearing on that screen. |
Completed? | Boolean | When set to YES it will cause the item to disappear from the screen of outstanding items. |
Repeat Interval | number | If this is set then when this task is marked as completed a new one will be generated with a due date which will be interval/units in the future. |
Repeat Unit | string | This identifies whether the repeat interval is expressed in days, weeks or months. |
Task | string | Links to an entry on the MNU_TASK table. This cannot be set manually, it can only be set programmatically. |
Task Context | string | This identifies the primary key of the associated database record which will be passed to the task when it is activated. |