DBA Data[Home] [Help]

APPS.CLN_INV_REJECT_NOTIF_PVT dependencies on AR_CONFIRMATION

Line 129: -- Function : Calls 'ar_confirmation.initiate_confirmation_process' to send the notification

125: -- Start of comments
126: -- API name : CALL_AR_API
127: -- Type : Private.
128: -- Pre-reqs : None.
129: -- Function : Calls 'ar_confirmation.initiate_confirmation_process' to send the notification
130: -- Version : Current version 1.0
131: -- Initial version 1.0
132: -- Notes :
133: -- End of comments

Line 149: cln_debug_pub.Add('Calling the -----ar_confirmation.initiate_confirmation_process----API with the parameter' ||

145: cln_debug_pub.Add('Entering the procedure CLN_INV_REJECT_NOTIF_PVT.CALL_AR_API', 2);
146: END IF;
147:
148: IF (l_debug_level <= 2) THEN
149: cln_debug_pub.Add('Calling the -----ar_confirmation.initiate_confirmation_process----API with the parameter' ||
150: p_reason_code ,2);
151: END IF;
152:
153: BEGIN

Line 154: ar_confirmation.initiate_confirmation_process(p_status =>'10',

150: p_reason_code ,2);
151: END IF;
152:
153: BEGIN
154: ar_confirmation.initiate_confirmation_process(p_status =>'10',
155: p_id => p_id,
156: p_reason_code => p_reason_code,
157: p_description => p_description,
158: p_int_ctr_num => p_internal_control_number);

Line 161: cln_debug_pub.Add('Exting the --ar_confirmation.initiate_confirmation_process----API',2);

157: p_description => p_description,
158: p_int_ctr_num => p_internal_control_number);
159:
160: IF (l_debug_level <= 2) THEN
161: cln_debug_pub.Add('Exting the --ar_confirmation.initiate_confirmation_process----API',2);
162: cln_debug_pub.Add('Exiting the procedure CLN_INV_REJECT_NOTIF_PVT.CALL_AR_API', 2);
163: END IF;
164:
165: EXCEPTION

Line 172: ar_confirmation.initiate_confirmation_process--:'||l_error_code || ':' || l_errmsg,5);

168: l_errmsg := SQLERRM;
169:
170: IF (l_debug_level <= 5) THEN
171: cln_debug_pub.Add('Exception in calling the procedure----
172: ar_confirmation.initiate_confirmation_process--:'||l_error_code || ':' || l_errmsg,5);
173: END IF;
174: END;
175: END CALL_AR_API;
176:

Line 184: -- 'p_reason_code' and calls the ar_confirmation.initiate_confirmation_process'

180: -- Type : Private.
181: -- Pre-reqs : None.
182: -- Function : This procedure
183: -- (1). Separates individual reason codes from the value of the parameter
184: -- 'p_reason_code' and calls the ar_confirmation.initiate_confirmation_process'
185: -- API the number of times as the number of times the reason codes are.
186: -- (2). Updates the Collaboration History
187: -- Version : Current version 1.0
188: -- Initial version 1.0