AfterSubLotInsert
Problem to be solved
How can an external application be notified that a new sublot has been created?
This insertion point is a signal that a new sublot has been created and has been inserted into the database. Customers can code any notifications they need to their own applications within this insertion point.
For example, an application that could use this insertion point is a service that monitors inventory levels and characteristics and adjusts container selection priorities. A new sublot added to a container is a trigger to reevaluate the current priorities.
Specifics about this routine
This insertion interface is called after the insertion of a new sublot into the database. These are the parameters to this function:
Param Name | Data Type | Description |
---|---|---|
Area | String | Area Name |
ProcessCell | String | Process Cell Name |
Unit | String | Unit Name |
MaterialID | Long | Material ID of the Material this SubLot is derived from |
ContainerID | Long | Container ID of the Container this SubLot is stored in |
SubLotID | Long | Pkid of the SubLot record in the database This is provided so the customer can retrieve the record by ID for further processing. |
The values Area, ProcessCell, and Unit will not be attainable in every instance from which these insertion calls are made. If these values are not available, a wildcard value (represented by
%ALL%
) is substituted for any solid value.Related insertion points
Other insertion points that could work with this function include:
- AfterSublotDelete
Provide Feedback