DBA Data[Home] [Help]

APPS.WMS_ENGINE_PVT dependencies on FND_API

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

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

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

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

Line 93: p_init_msg_list IN VARCHAR2 DEFAULT fnd_api.g_false,

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

Line 94: p_commit IN VARCHAR2 DEFAULT fnd_api.g_false,

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

Line 95: p_validation_level IN NUMBER DEFAULT fnd_api.g_valid_level_none,

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

Line 101: p_suggest_serial IN VARCHAR2 DEFAULT fnd_api.g_false,

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