DBA Data[Home] [Help]

APPS.ARI_PRINT_REQUEST_NOTIFICATION dependencies on STANDARD

Line 72: arp_standard.debug('Max Wait Time : '||p_max_wait_time);

68: ----------------------------------------------------------------------------------------
69: l_debug_info := 'Get the first Request Id to be polled for';
70: -----------------------------------------------------------------------------------------
71: IF (PG_DEBUG = 'Y') THEN
72: arp_standard.debug('Max Wait Time : '||p_max_wait_time);
73: arp_standard.debug('No of requests: '||p_requests);
74: arp_standard.debug('User Name : '||p_user_name);
75: arp_standard.debug(l_debug_info);
76: END IF;

Line 73: arp_standard.debug('No of requests: '||p_requests);

69: l_debug_info := 'Get the first Request Id to be polled for';
70: -----------------------------------------------------------------------------------------
71: IF (PG_DEBUG = 'Y') THEN
72: arp_standard.debug('Max Wait Time : '||p_max_wait_time);
73: arp_standard.debug('No of requests: '||p_requests);
74: arp_standard.debug('User Name : '||p_user_name);
75: arp_standard.debug(l_debug_info);
76: END IF;
77:

Line 74: arp_standard.debug('User Name : '||p_user_name);

70: -----------------------------------------------------------------------------------------
71: IF (PG_DEBUG = 'Y') THEN
72: arp_standard.debug('Max Wait Time : '||p_max_wait_time);
73: arp_standard.debug('No of requests: '||p_requests);
74: arp_standard.debug('User Name : '||p_user_name);
75: arp_standard.debug(l_debug_info);
76: END IF;
77:
78: IF (p_requests = 1) THEN

Line 75: arp_standard.debug(l_debug_info);

71: IF (PG_DEBUG = 'Y') THEN
72: arp_standard.debug('Max Wait Time : '||p_max_wait_time);
73: arp_standard.debug('No of requests: '||p_requests);
74: arp_standard.debug('User Name : '||p_user_name);
75: arp_standard.debug(l_debug_info);
76: END IF;
77:
78: IF (p_requests = 1) THEN
79: l_request_id := p_requests_list;

Line 88: arp_standard.debug('Polling Request Id: '||l_request_id);

84:
85: FOR l_requests_number IN 1..p_requests LOOP
86:
87: IF (PG_DEBUG = 'Y') THEN
88: arp_standard.debug('Polling Request Id: '||l_request_id);
89: END IF;
90:
91: l_request_status := FND_CONCURRENT.wait_for_request(
92: request_id => l_request_id,

Line 106: arp_standard.debug(l_debug_info);

102: ----------------------------------------------------------------------------------------
103: l_debug_info := 'Get the next Request Id to be polled for';
104: -----------------------------------------------------------------------------------------
105: IF (PG_DEBUG = 'Y') THEN
106: arp_standard.debug(l_debug_info);
107: END IF;
108:
109: IF (l_requests_number = p_requests-1) THEN
110: l_request_id := SUBSTR(p_requests_list, INSTR(p_requests_list,',',1,p_requests-1)+1,

Line 125: arp_standard.debug(l_debug_info);

121: ----------------------------------------------------------------------------------------
122: l_debug_info := 'Send Workflow notification';
123: -----------------------------------------------------------------------------------------
124: IF (PG_DEBUG = 'Y') THEN
125: arp_standard.debug(l_debug_info);
126: END IF;
127:
128: ARI_UTILITIES.send_notification(
129: p_user_name => p_user_name,

Line 140: arp_standard.debug('Unexpected Exception in ' || G_PKG_NAME || l_procedure_name);

136:
137: EXCEPTION
138: WHEN OTHERS THEN
139: IF (PG_DEBUG = 'Y') THEN
140: arp_standard.debug('Unexpected Exception in ' || G_PKG_NAME || l_procedure_name);
141: arp_standard.debug(' - Max Wait Time : '||p_max_wait_time);
142: arp_standard.debug(' - No of requests: '||p_requests);
143: arp_standard.debug(' - User Name : '||p_user_name);
144: arp_standard.debug(' - Customer Name : '||p_customer_name);

Line 141: arp_standard.debug(' - Max Wait Time : '||p_max_wait_time);

137: EXCEPTION
138: WHEN OTHERS THEN
139: IF (PG_DEBUG = 'Y') THEN
140: arp_standard.debug('Unexpected Exception in ' || G_PKG_NAME || l_procedure_name);
141: arp_standard.debug(' - Max Wait Time : '||p_max_wait_time);
142: arp_standard.debug(' - No of requests: '||p_requests);
143: arp_standard.debug(' - User Name : '||p_user_name);
144: arp_standard.debug(' - Customer Name : '||p_customer_name);
145: arp_standard.debug(' - Requests List : '||p_requests_list);

Line 142: arp_standard.debug(' - No of requests: '||p_requests);

138: WHEN OTHERS THEN
139: IF (PG_DEBUG = 'Y') THEN
140: arp_standard.debug('Unexpected Exception in ' || G_PKG_NAME || l_procedure_name);
141: arp_standard.debug(' - Max Wait Time : '||p_max_wait_time);
142: arp_standard.debug(' - No of requests: '||p_requests);
143: arp_standard.debug(' - User Name : '||p_user_name);
144: arp_standard.debug(' - Customer Name : '||p_customer_name);
145: arp_standard.debug(' - Requests List : '||p_requests_list);
146: arp_standard.debug('ERROR =>'|| SQLERRM);

Line 143: arp_standard.debug(' - User Name : '||p_user_name);

139: IF (PG_DEBUG = 'Y') THEN
140: arp_standard.debug('Unexpected Exception in ' || G_PKG_NAME || l_procedure_name);
141: arp_standard.debug(' - Max Wait Time : '||p_max_wait_time);
142: arp_standard.debug(' - No of requests: '||p_requests);
143: arp_standard.debug(' - User Name : '||p_user_name);
144: arp_standard.debug(' - Customer Name : '||p_customer_name);
145: arp_standard.debug(' - Requests List : '||p_requests_list);
146: arp_standard.debug('ERROR =>'|| SQLERRM);
147: END IF;

Line 144: arp_standard.debug(' - Customer Name : '||p_customer_name);

140: arp_standard.debug('Unexpected Exception in ' || G_PKG_NAME || l_procedure_name);
141: arp_standard.debug(' - Max Wait Time : '||p_max_wait_time);
142: arp_standard.debug(' - No of requests: '||p_requests);
143: arp_standard.debug(' - User Name : '||p_user_name);
144: arp_standard.debug(' - Customer Name : '||p_customer_name);
145: arp_standard.debug(' - Requests List : '||p_requests_list);
146: arp_standard.debug('ERROR =>'|| SQLERRM);
147: END IF;
148:

Line 145: arp_standard.debug(' - Requests List : '||p_requests_list);

141: arp_standard.debug(' - Max Wait Time : '||p_max_wait_time);
142: arp_standard.debug(' - No of requests: '||p_requests);
143: arp_standard.debug(' - User Name : '||p_user_name);
144: arp_standard.debug(' - Customer Name : '||p_customer_name);
145: arp_standard.debug(' - Requests List : '||p_requests_list);
146: arp_standard.debug('ERROR =>'|| SQLERRM);
147: END IF;
148:
149: FND_MESSAGE.SET_NAME ('AR','ARI_REG_DISPLAY_UNEXP_ERROR');

Line 146: arp_standard.debug('ERROR =>'|| SQLERRM);

142: arp_standard.debug(' - No of requests: '||p_requests);
143: arp_standard.debug(' - User Name : '||p_user_name);
144: arp_standard.debug(' - Customer Name : '||p_customer_name);
145: arp_standard.debug(' - Requests List : '||p_requests_list);
146: arp_standard.debug('ERROR =>'|| SQLERRM);
147: END IF;
148:
149: FND_MESSAGE.SET_NAME ('AR','ARI_REG_DISPLAY_UNEXP_ERROR');
150: FND_MESSAGE.SET_TOKEN('PROCEDURE', G_PKG_NAME || l_procedure_name);

Line 205: arp_standard.debug(l_debug_info);

201: ----------------------------------------------------------------------------------------
202: l_debug_info := 'Submit the iReceivables Print Notification Concurrent Program';
203: -----------------------------------------------------------------------------------------
204: IF (PG_DEBUG = 'Y') THEN
205: arp_standard.debug(l_debug_info);
206: END IF;
207:
208: m_request_id := FND_REQUEST.SUBMIT_REQUEST(
209: application => 'AR'

Line 228: arp_standard.debug('Unexpected Exception in ' || G_PKG_NAME || l_procedure_name);

224:
225: EXCEPTION
226: WHEN OTHERS THEN
227: IF (PG_DEBUG = 'Y') THEN
228: arp_standard.debug('Unexpected Exception in ' || G_PKG_NAME || l_procedure_name);
229: arp_standard.debug(' - Max Wait Time : '||p_max_wait_time);
230: arp_standard.debug(' - No of requests: '||p_requests);
231: arp_standard.debug(' - User Name : '||p_user_name);
232: arp_standard.debug(' - Customer Name : '||p_customer_name);

Line 229: arp_standard.debug(' - Max Wait Time : '||p_max_wait_time);

225: EXCEPTION
226: WHEN OTHERS THEN
227: IF (PG_DEBUG = 'Y') THEN
228: arp_standard.debug('Unexpected Exception in ' || G_PKG_NAME || l_procedure_name);
229: arp_standard.debug(' - Max Wait Time : '||p_max_wait_time);
230: arp_standard.debug(' - No of requests: '||p_requests);
231: arp_standard.debug(' - User Name : '||p_user_name);
232: arp_standard.debug(' - Customer Name : '||p_customer_name);
233: arp_standard.debug(' - Requests List : '||p_requests_list);

Line 230: arp_standard.debug(' - No of requests: '||p_requests);

226: WHEN OTHERS THEN
227: IF (PG_DEBUG = 'Y') THEN
228: arp_standard.debug('Unexpected Exception in ' || G_PKG_NAME || l_procedure_name);
229: arp_standard.debug(' - Max Wait Time : '||p_max_wait_time);
230: arp_standard.debug(' - No of requests: '||p_requests);
231: arp_standard.debug(' - User Name : '||p_user_name);
232: arp_standard.debug(' - Customer Name : '||p_customer_name);
233: arp_standard.debug(' - Requests List : '||p_requests_list);
234: arp_standard.debug('ERROR =>'|| SQLERRM);

Line 231: arp_standard.debug(' - User Name : '||p_user_name);

227: IF (PG_DEBUG = 'Y') THEN
228: arp_standard.debug('Unexpected Exception in ' || G_PKG_NAME || l_procedure_name);
229: arp_standard.debug(' - Max Wait Time : '||p_max_wait_time);
230: arp_standard.debug(' - No of requests: '||p_requests);
231: arp_standard.debug(' - User Name : '||p_user_name);
232: arp_standard.debug(' - Customer Name : '||p_customer_name);
233: arp_standard.debug(' - Requests List : '||p_requests_list);
234: arp_standard.debug('ERROR =>'|| SQLERRM);
235: END IF;

Line 232: arp_standard.debug(' - Customer Name : '||p_customer_name);

228: arp_standard.debug('Unexpected Exception in ' || G_PKG_NAME || l_procedure_name);
229: arp_standard.debug(' - Max Wait Time : '||p_max_wait_time);
230: arp_standard.debug(' - No of requests: '||p_requests);
231: arp_standard.debug(' - User Name : '||p_user_name);
232: arp_standard.debug(' - Customer Name : '||p_customer_name);
233: arp_standard.debug(' - Requests List : '||p_requests_list);
234: arp_standard.debug('ERROR =>'|| SQLERRM);
235: END IF;
236:

Line 233: arp_standard.debug(' - Requests List : '||p_requests_list);

229: arp_standard.debug(' - Max Wait Time : '||p_max_wait_time);
230: arp_standard.debug(' - No of requests: '||p_requests);
231: arp_standard.debug(' - User Name : '||p_user_name);
232: arp_standard.debug(' - Customer Name : '||p_customer_name);
233: arp_standard.debug(' - Requests List : '||p_requests_list);
234: arp_standard.debug('ERROR =>'|| SQLERRM);
235: END IF;
236:
237: FND_MESSAGE.SET_NAME ('AR','ARI_REG_DISPLAY_UNEXP_ERROR');

Line 234: arp_standard.debug('ERROR =>'|| SQLERRM);

230: arp_standard.debug(' - No of requests: '||p_requests);
231: arp_standard.debug(' - User Name : '||p_user_name);
232: arp_standard.debug(' - Customer Name : '||p_customer_name);
233: arp_standard.debug(' - Requests List : '||p_requests_list);
234: arp_standard.debug('ERROR =>'|| SQLERRM);
235: END IF;
236:
237: FND_MESSAGE.SET_NAME ('AR','ARI_REG_DISPLAY_UNEXP_ERROR');
238: FND_MESSAGE.SET_TOKEN('PROCEDURE', G_PKG_NAME || l_procedure_name);