UseInputRelatedSchedules
Use this command to allow the use of input-related schedules, such as the Line Item Details schedule, the Comments schedule, and the File Attachments schedule.
When this command is ON, the following commands take line item details, comments, and attachments into account:
Note: You can also set UseInputRelatedSchedules to LineItemDetails, Comments, and/or Attachments. For more information, see Syntax.
Command | Effect of UseInputRelatedSchedules |
---|---|
If UseInputRelatedSchedules is in use, when you created the DataArea, three additional DataAreas are created for line item details, comments, and attachments. | |
If UseInputRelatedSchedules is in use, when you created a lock on the DataArea, three additional locks are created on the DataAreas for line item details, comments, and attachments. | |
If UseInputRelatedSchedules is in use, when you delete the lock for the DataArea, three additional locks on the DataAreas for line item details, comments, and attachments are also deleted. |
If you want users to be able to access line item details, comments, and attachments in a Longview Data Grid, you must set this command to ON or to the appropriate keyword in the related procedure. You can use multiple USEINPUTRELATEDSCHEDULES commands in the same procedure.
where:
- Option is one of the following:
Value Description ON
Allows users to access line item details, comments, and attachments in Data Grids.
Note: File Attachments must be selected on the Application page of the Server Configuration dialog in Longview Server Manager to allow users to access attachments in Data Grids. For more information, see the Longview Server Manager Guide.
OFF
Does not allow users to access line item details, comments, or attachments. This is the default if you do not specify USEINPUTRELATEDSCHEDULES in your procedure.
Comments
Allows users to access comments.
LineItemDetails
Allows users to access line item details.
Attachments
Allows users to access attachments.
Note: File Attachments must be selected on the Application page of the Server Configuration dialog in Longview Server Manager to allow users to access attachments in Data Grids. For more information, see the Longview Server Manager Guide.
The following code uses a singular USEINPUTRELATEDSCHEDULES command for the first DataArea and multiple USEINPUTRELATEDSCHEDULES commands for the second DataArea in a procedure document:
Example
// Create, lock, and download first DataArea with Comments, LineItemDetails, and Attachments schedules
USEINPUTRELATEDSCHEDULES ON
Create DATAAREA SampleDA1 USING "Sample1.lvdsp"
Create LOCK USER USING "Sample1.lvdsp"
Download SampleDA StandardALL
// Create, lock, and download second DataArea with Comments and LineItemDetails schedules
USEINPUTRELATEDSCHEDULES OFF
USEINPUTRELATEDSCHEDULES Comments
USEINPUTRELATEDSCHEDULES LineItemDetails
Create DATAAREA SampleDA2 USING "Sample2.lvdsp"
Create LOCK USER USING "Sample2.lvdsp"
Download SampleDA2 StandardALL
// Show the two DataAreas with different input-related schedule settings in a tabbed Data Grid
SHOW UI using Sample.lvui