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 248: * the WMS_LICENSE_PLATE_NUMBERS table returning to the caller a uniquely generated LPN_ID.

244: );
245:
246: /*#
247: * This api takes in a brand new container name (License Plate Number) and will create an entry for it in
248: * the WMS_LICENSE_PLATE_NUMBERS table returning to the caller a uniquely generated LPN_ID.
249: *
250: * @ param p_api_version API version number (current version is 1.0)
251: * @ paraminfo {@rep:required}
252: * @ 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 360: -- p_lpn WMS_LICENSE_PLATE_NUMBERS%ROWTYPE - Required Value

356: -- p_validation_level (optional), determines if full validation or
357: -- no validation will be performed
358: -- defaults to FND_API.G_VALID_LEVEL_FULL
359: -- FND_API.G_VALID_LEVEL_NONE is the other value
360: -- p_lpn WMS_LICENSE_PLATE_NUMBERS%ROWTYPE - Required Value
361: -- Stores the information for the fields of the LPN record that
362: -- the user desires to modify
363: -- p_source_type_id Source type ID for the source transaction
364: -- p_source_header_id Source header ID for the source transaction

Line 774: TYPE LPN_Table_Type IS TABLE OF WMS_LICENSE_PLATE_NUMBERS%ROWTYPE

770: p_dest_cont_item_id IN OUT NOCOPY NUMBER ,
771: p_qty_required OUT NOCOPY NUMBER
772: );
773:
774: TYPE LPN_Table_Type IS TABLE OF WMS_LICENSE_PLATE_NUMBERS%ROWTYPE
775: INDEX BY BINARY_INTEGER;
776:
777:
778: /*---------------------------------------------------------------------*/