DBA Data[Home] [Help]

APPS.IBY_PAYMENT_DOC_PUB_PKG dependencies on FND_API

Line 110: x_return_status := FND_API.G_RET_STS_SUCCESS;

106: print_debuginfo(l_module_name, 'From Document Number::'||p_from_doc_num,G_LEVEL_STATEMENT);
107: print_debuginfo(l_module_name, 'To Document Number::'||p_to_doc_num,G_LEVEL_STATEMENT);
108: print_debuginfo(l_module_name, 'Void Date::'||p_void_date,G_LEVEL_STATEMENT);
109:
110: x_return_status := FND_API.G_RET_STS_SUCCESS;
111: /* Initializing Message Stack */
112: FND_MSG_PUB.initialize;
113:
114: BEGIN

Line 133: RAISE fnd_api.g_exc_error;

129: fnd_msg_pub.add;
130:
131: print_debuginfo(l_module_name, 'Error:: Invalid Payment Document',G_LEVEL_STATEMENT);
132:
133: RAISE fnd_api.g_exc_error;
134:
135: END;
136:
137: print_debuginfo(l_module_name, 'Payment Instruction Id::'||l_pmt_instruction_id,G_LEVEL_STATEMENT);

Line 151: RAISE fnd_api.g_exc_error;

147:
148: print_debuginfo(l_module_name, 'Payment Document '||p_payment_document_id ||
149: 'is locked by Instruction -'||l_pmt_instruction_id,G_LEVEL_STATEMENT);
150:
151: RAISE fnd_api.g_exc_error;
152: end if;
153:
154: if(p_from_doc_num 155: p_to_doc_num>l_last_avail_num) then

Line 162: RAISE fnd_api.g_exc_error;

158: fnd_msg_pub.add;
159:
160: print_debuginfo(l_module_name, 'Provided document numbers are OUT OF RANGE',G_LEVEL_STATEMENT);
161:
162: RAISE fnd_api.g_exc_error;
163: end if;
164:
165: BEGIN
166: select 1

Line 182: RAISE fnd_api.g_exc_error;

178: fnd_msg_pub.add;
179:
180: print_debuginfo(l_module_name, 'USED DOCS: One or more document numbers are already used',G_LEVEL_STATEMENT);
181:
182: RAISE fnd_api.g_exc_error;
183: end if;
184: EXCEPTION
185: WHEN NO_DATA_FOUND THEN
186: l_used:=0;

Line 214: RAISE fnd_api.g_exc_error;

210: fnd_msg_pub.add;
211:
212: print_debuginfo(l_module_name, 'PMTS: One or more document numbers are already used',G_LEVEL_STATEMENT);
213:
214: RAISE fnd_api.g_exc_error;
215: end if;
216: EXCEPTION
217: WHEN NO_DATA_FOUND THEN
218: l_used:=0;

Line 298: x_return_status := fnd_api.g_ret_sts_error;

294:
295: print_debuginfo(l_module_name, 'EXIT',G_LEVEL_STATEMENT);
296: EXCEPTION
297: WHEN OTHERS THEN
298: x_return_status := fnd_api.g_ret_sts_error;
299:
300: print_debuginfo('Exception : ' || SQLERRM,G_LEVEL_STATEMENT);
301:
302: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false,

Line 302: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false,

298: x_return_status := fnd_api.g_ret_sts_error;
299:
300: print_debuginfo('Exception : ' || SQLERRM,G_LEVEL_STATEMENT);
301:
302: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false,
303: p_count => x_msg_count,
304: p_data => x_msg_data);
305:
306: END void_pmt_doc_numbers;