DBA Data[Home] [Help]

APPS.WMS_CONTAINER_PUB dependencies on WMS_LICENSE_PLATE_NUMBERS

Line 12: /* Defined ROW Type variable for WMS_LICENSE_PLATE_NUMBERS entity */

8: * @rep:displayname License Plate Number APIs for WMS
9: * @rep:category BUSINESS_ENTITY WMS_CONTAINER
10: */
11:
12: /* Defined ROW Type variable for WMS_LICENSE_PLATE_NUMBERS entity */
13:
14:
15: /*----------------------------------------------------------------*
16: * Global constants representing all possible LPN context values

Line 49: SUBTYPE LPN IS WMS_LICENSE_PLATE_NUMBERS%ROWTYPE;

45: /*----------------------------------------------------------------*
46: * Global data structures
47: *----------------------------------------------------------------*/
48:
49: SUBTYPE LPN IS WMS_LICENSE_PLATE_NUMBERS%ROWTYPE;
50:
51: TYPE ChangeWeightVolumeRecType is RECORD
52: ( lpn_id NUMBER,
53: gross_weight_change NUMBER,

Line 287: * the WMS_LICENSE_PLATE_NUMBERS table returning to the caller a uniquely generated LPN_ID.

283: );
284:
285: /*#
286: * This api takes in a brand new container name (License Plate Number) and will create an entry for it in
287: * the WMS_LICENSE_PLATE_NUMBERS table returning to the caller a uniquely generated LPN_ID.
288: *
289: * @ param p_api_version API version number (current version is 1.0)
290: * @ paraminfo {@rep:required}
291: * @ param p_init_msg_list default FND_API.G_FALSE Valid values: FND_API.G_FALSE or FND_API.G_TRUE. if set to FND_API.G_TRUE initialize error message list if set to FND_API.G_FALSE - not initialize error message list

Line 399: -- p_lpn WMS_LICENSE_PLATE_NUMBERS%ROWTYPE - Required Value

395: -- p_validation_level (optional), determines if full validation or
396: -- no validation will be performed
397: -- defaults to FND_API.G_VALID_LEVEL_FULL
398: -- FND_API.G_VALID_LEVEL_NONE is the other value
399: -- p_lpn WMS_LICENSE_PLATE_NUMBERS%ROWTYPE - Required Value
400: -- Stores the information for the fields of the LPN record that
401: -- the user desires to modify
402: -- p_source_type_id Source type ID for the source transaction
403: -- p_source_header_id Source header ID for the source transaction

Line 814: TYPE LPN_Table_Type IS TABLE OF WMS_LICENSE_PLATE_NUMBERS%ROWTYPE

810: p_dest_cont_item_id IN OUT NOCOPY NUMBER ,
811: p_qty_required OUT NOCOPY NUMBER
812: );
813:
814: TYPE LPN_Table_Type IS TABLE OF WMS_LICENSE_PLATE_NUMBERS%ROWTYPE
815: INDEX BY BINARY_INTEGER;
816:
817:
818: /*---------------------------------------------------------------------*/