DBA Data[Home] [Help]

APPS.INV_AUTODETAIL dependencies on FND_API

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

26: --
27: -- 2. Serial Number Detailing in Picking
28: -- Currently the serial number detailing is quite simple. If the caller
29: -- gives a range (start, and end) serial numbers in the move order line
30: -- and pass p_suggest_serial as fnd_api.true, the engine will filter
31: -- the locations found from a rule, and suggest unused serial numbers
32: -- in the locator. If p_suggest_serial is passed as fnd_api.g_false
33: -- (default), the engine will not give serial numbers in the output.
34: --

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

28: -- Currently the serial number detailing is quite simple. If the caller
29: -- gives a range (start, and end) serial numbers in the move order line
30: -- and pass p_suggest_serial as fnd_api.true, the engine will filter
31: -- the locations found from a rule, and suggest unused serial numbers
32: -- in the locator. If p_suggest_serial is passed as fnd_api.g_false
33: -- (default), the engine will not give serial numbers in the output.
34: --
35: -- Input Parameters
36: -- p_api_version_number standard input parameter

Line 55: p_init_msg_list IN VARCHAR2 DEFAULT fnd_api.g_false,

51: -- x_msg_data standard output parameters
52: --
53: PROCEDURE create_suggestions
54: (p_api_version IN NUMBER,
55: p_init_msg_list IN VARCHAR2 DEFAULT fnd_api.g_false,
56: p_commit IN VARCHAR2 DEFAULT fnd_api.g_false,
57: p_validation_level IN NUMBER DEFAULT fnd_api.g_valid_level_none,
58: x_return_status OUT NOCOPY VARCHAR2,
59: x_msg_count OUT NOCOPY NUMBER,

Line 56: p_commit IN VARCHAR2 DEFAULT fnd_api.g_false,

52: --
53: PROCEDURE create_suggestions
54: (p_api_version IN NUMBER,
55: p_init_msg_list IN VARCHAR2 DEFAULT fnd_api.g_false,
56: p_commit IN VARCHAR2 DEFAULT fnd_api.g_false,
57: p_validation_level IN NUMBER DEFAULT fnd_api.g_valid_level_none,
58: x_return_status OUT NOCOPY VARCHAR2,
59: x_msg_count OUT NOCOPY NUMBER,
60: x_msg_data OUT NOCOPY VARCHAR2,

Line 57: p_validation_level IN NUMBER DEFAULT fnd_api.g_valid_level_none,

53: PROCEDURE create_suggestions
54: (p_api_version IN NUMBER,
55: p_init_msg_list IN VARCHAR2 DEFAULT fnd_api.g_false,
56: p_commit IN VARCHAR2 DEFAULT fnd_api.g_false,
57: p_validation_level IN NUMBER DEFAULT fnd_api.g_valid_level_none,
58: x_return_status OUT NOCOPY VARCHAR2,
59: x_msg_count OUT NOCOPY NUMBER,
60: x_msg_data OUT NOCOPY VARCHAR2,
61: p_transaction_temp_id IN NUMBER,

Line 63: p_suggest_serial IN VARCHAR2 DEFAULT fnd_api.g_false

59: x_msg_count OUT NOCOPY NUMBER,
60: x_msg_data OUT NOCOPY VARCHAR2,
61: p_transaction_temp_id IN NUMBER,
62: p_reservations IN inv_reservation_global.mtl_reservation_tbl_type,
63: p_suggest_serial IN VARCHAR2 DEFAULT fnd_api.g_false
64: );
65: END inv_autodetail;