To create the order line table, follow these steps:
- Create a new table named ConVMSVehicleServiceLine.
- Drag the following EDTs onto the table:
- ConVMSVehicleServiceId (set Ignore EDT relation to Yes)
- LineNum
- ItemId (set Ignore EDT relation to Yes)
- ItemName
- ConVMSVehicleServiceStatus
- Remove the ConVMSVehicle prefixes.
- The ServiceId and LineNum fields are usually controlled from code, so make them read-only and mandatory (this ensures that the code that sets them has run before the user saves the line).
The LineNum field is usually used to order the lines, and can be made not visible if it isn't to be displayed in the user interface. All visible (non-system) fields should either be in a field group or made not visible. ...