DBA Data[Home] [Help]

APPS.WMS_ENGINE_PVT dependencies on FND_API

Line 54: -- and pass p_suggest_serial as fnd_api.true, the engine will filter

50: --
51: -- 2. Serial Number Detailing in Picking
52: -- Currently the serial number detailing is quite simple. If the caller
53: -- gives a range (start, and end) serial numbers in the move order line
54: -- and pass p_suggest_serial as fnd_api.true, the engine will filter
55: -- the locations found from a rule, and suggest unused serial numbers
56: -- in the locator. If p_suggest_serial is passed as fnd_api.g_false
57: -- (default), the engine will not give serial numbers in the output.
58: --

Line 56: -- in the locator. If p_suggest_serial is passed as fnd_api.g_false

52: -- Currently the serial number detailing is quite simple. If the caller
53: -- gives a range (start, and end) serial numbers in the move order line
54: -- and pass p_suggest_serial as fnd_api.true, the engine will filter
55: -- the locations found from a rule, and suggest unused serial numbers
56: -- in the locator. If p_suggest_serial is passed as fnd_api.g_false
57: -- (default), the engine will not give serial numbers in the output.
58: --
59: -- Input Parameters
60: -- p_api_version_number standard input parameter

Line 92: p_init_msg_list IN VARCHAR2 DEFAULT fnd_api.g_false,

88: --
89: -- Version : Current version 1.0
90: PROCEDURE create_suggestions
91: (p_api_version IN NUMBER,
92: p_init_msg_list IN VARCHAR2 DEFAULT fnd_api.g_false,
93: p_commit IN VARCHAR2 DEFAULT fnd_api.g_false,
94: p_validation_level IN NUMBER DEFAULT fnd_api.g_valid_level_none,
95: x_return_status OUT NOCOPY VARCHAR2,
96: x_msg_count OUT NOCOPY NUMBER,

Line 93: p_commit IN VARCHAR2 DEFAULT fnd_api.g_false,

89: -- Version : Current version 1.0
90: PROCEDURE create_suggestions
91: (p_api_version IN NUMBER,
92: p_init_msg_list IN VARCHAR2 DEFAULT fnd_api.g_false,
93: p_commit IN VARCHAR2 DEFAULT fnd_api.g_false,
94: p_validation_level IN NUMBER DEFAULT fnd_api.g_valid_level_none,
95: x_return_status OUT NOCOPY VARCHAR2,
96: x_msg_count OUT NOCOPY NUMBER,
97: x_msg_data OUT NOCOPY VARCHAR2,

Line 94: p_validation_level IN NUMBER DEFAULT fnd_api.g_valid_level_none,

90: PROCEDURE create_suggestions
91: (p_api_version IN NUMBER,
92: p_init_msg_list IN VARCHAR2 DEFAULT fnd_api.g_false,
93: p_commit IN VARCHAR2 DEFAULT fnd_api.g_false,
94: p_validation_level IN NUMBER DEFAULT fnd_api.g_valid_level_none,
95: x_return_status OUT NOCOPY VARCHAR2,
96: x_msg_count OUT NOCOPY NUMBER,
97: x_msg_data OUT NOCOPY VARCHAR2,
98: p_transaction_temp_id IN NUMBER,

Line 100: p_suggest_serial IN VARCHAR2 DEFAULT fnd_api.g_false,

96: x_msg_count OUT NOCOPY NUMBER,
97: x_msg_data OUT NOCOPY VARCHAR2,
98: p_transaction_temp_id IN NUMBER,
99: p_reservations IN inv_reservation_global.mtl_reservation_tbl_type,
100: p_suggest_serial IN VARCHAR2 DEFAULT fnd_api.g_false,
101: p_simulation_mode IN NUMBER DEFAULT -1,
102: p_simulation_id IN NUMBER DEFAULT NULL,
103: p_plan_tasks IN BOOLEAN DEFAULT FALSE,
104: p_quick_pick_flag IN VARCHAR2 DEFAULT 'N'