DBA Data[Home] [Help]

APPS.INV_RESERVATIONS_INTERFACE dependencies on FND_API

Line 61: * @param p_init_msg_lst Whether initialize the error message list or not. Should be fnd_api.g_false or fnd_api.g_true

57: * batch processor, processes records from MTL_RESERVATIONS_INTERFACE table into MTL_RESERVATIONS table
58: * @param x_errbuf mandatory concurrent program parameter. Contains the error message from the error stack.
59: * @param x_retcode mandatory concurrent program parameter. Returns the error code; 0-Success, 1-Warning, 2-Error.
60: * @param p_api_version_number API version number (current version is 1.0)
61: * @param p_init_msg_lst Whether initialize the error message list or not. Should be fnd_api.g_false or fnd_api.g_true
62: * @param p_form_mode Indicates whether this program is called from the form or not. 'Y' is from the form & 'N is not through the form
63: * @rep:scope public
64: * @rep:lifecycle active
65: * @rep:displayname Reservation Interface Manger

Line 71: , p_init_msg_lst IN VARCHAR2 DEFAULT fnd_api.g_false

67: PROCEDURE rsv_interface_manager(
68: x_errbuf OUT NOCOPY VARCHAR2
69: , x_retcode OUT NOCOPY NUMBER
70: , p_api_version_number IN NUMBER DEFAULT 1.0
71: , p_init_msg_lst IN VARCHAR2 DEFAULT fnd_api.g_false
72: , p_form_mode IN VARCHAR2 DEFAULT 'N');
73:
74: /*
75: ** ===========================================================================

Line 136: , p_init_msg_lst IN VARCHAR2 DEFAULT fnd_api.g_false

132: */
133:
134: PROCEDURE rsv_interface_batch_processor (
135: p_api_version_number IN NUMBER
136: , p_init_msg_lst IN VARCHAR2 DEFAULT fnd_api.g_false
137: , p_reservation_batches IN VARCHAR2
138: , p_process_mode IN NUMBER DEFAULT 1
139: , p_partial_batch_process_flag IN NUMBER DEFAULT 1
140: , p_commit_flag IN VARCHAR2 DEFAULT 'Y'

Line 195: , p_init_msg_lst IN VARCHAR2 DEFAULT fnd_api.g_false

191: */
192:
193: PROCEDURE rsv_interface_line_processor (
194: p_api_version_number IN NUMBER
195: , p_init_msg_lst IN VARCHAR2 DEFAULT fnd_api.g_false
196: , p_reservation_interface_id IN NUMBER
197: , p_form_mode IN VARCHAR2 DEFAULT 'N'
198: , x_error_code OUT NOCOPY NUMBER
199: , x_error_text OUT NOCOPY VARCHAR2