DBA Data[Home] [Help]

APPS.RCV_GAPLESS_NUMBERING dependencies on FND_API

Line 68: x_return_status := fnd_api.G_RET_STS_ERROR;

64: END IF;
65:
66: l_progress := '000';
67:
68: x_return_status := fnd_api.G_RET_STS_ERROR;
69:
70: l_progress := '010';
71:
72: -- Standard call to check for call compatibility

Line 73: IF NOT fnd_api.compatible_api_call (l_api_version,

69:
70: l_progress := '010';
71:
72: -- Standard call to check for call compatibility
73: IF NOT fnd_api.compatible_api_call (l_api_version,
74: p_api_version,
75: l_api_name,
76: g_pkg_name
77: ) THEN

Line 78: RAISE fnd_api.g_exc_unexpected_error;

74: p_api_version,
75: l_api_name,
76: g_pkg_name
77: ) THEN
78: RAISE fnd_api.g_exc_unexpected_error;
79: END IF;
80:
81: -- BugFix 5197828
82: BEGIN

Line 106: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

102: IF (g_asn_debug = 'Y')
103: THEN
104: asn_debug.put_line ( 'Error occured while selecting Vendor_id. Error message is =' || SQLERRM );
105: END IF;
106: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
107: END;
108:
109: BEGIN
110: SELECT name

Line 126: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

122: IF (g_asn_debug = 'Y')
123: THEN
124: asn_debug.put_line ( 'Error occured while selecting Organization Name. Error message is =' || SQLERRM );
125: END IF;
126: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
127: END;
128:
129:
130: BEGIN

Line 153: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

149: IF (g_asn_debug = 'Y')
150: THEN
151: asn_debug.put_line ( 'Error occured while selecting Organization Code. Error message is =' || SQLERRM );
152: END IF;
153: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
154: END;
155:
156: -- End of code BugFix 5197828
157:

Line 199: x_return_status := fnd_api.G_RET_STS_SUCCESS;

195: -- End of code BugFix 5197828
196:
197: IF ( l_gapless_inv_num_flag_org = 'N' and l_gapless_inv_num_flag_sup = 'N' )
198: THEN
199: x_return_status := fnd_api.G_RET_STS_SUCCESS;
200: return;
201: END IF;
202:
203: IF (l_buying_company_identifier is null) THEN

Line 231: RAISE fnd_api.g_exc_unexpected_error;

227: RAISE invoice_exception;
228: END IF;
229:
230: IF (p_invoice_type not in ('ERS','RTS','PPA')) THEN
231: RAISE fnd_api.g_exc_unexpected_error;
232: END IF;
233:
234: l_progress := '020';
235:

Line 318: x_return_status := fnd_api.G_RET_STS_SUCCESS;

314: WHERE ROWID = l_rowid;
315:
316: l_progress := '100';
317:
318: x_return_status := fnd_api.G_RET_STS_SUCCESS;
319: FND_MSG_PUB.get(
320: p_msg_index => FND_MSG_PUB.G_LAST,
321: p_encoded => 'F',
322: p_msg_index_out => x_msg_count,

Line 327: x_return_status := fnd_api.g_ret_sts_error;

323: p_data => x_msg_data );
324:
325: EXCEPTION
326: WHEN invoice_exception THEN
327: x_return_status := fnd_api.g_ret_sts_error;
328: FND_MSG_PUB.add;
329: FND_MSG_PUB.get(
330: p_msg_index => FND_MSG_PUB.G_LAST,
331: p_encoded => 'F',

Line 334: WHEN fnd_api.g_exc_unexpected_error THEN

330: p_msg_index => FND_MSG_PUB.G_LAST,
331: p_encoded => 'F',
332: p_msg_index_out => x_msg_count,
333: p_data => x_msg_data );
334: WHEN fnd_api.g_exc_unexpected_error THEN
335: x_return_status := fnd_api.g_ret_sts_unexp_error;
336: FND_MESSAGE.set_name('PO','RCV_SYSTEM_ERROR');
337: FND_MSG_PUB.add;
338: FND_MSG_PUB.get(

Line 335: x_return_status := fnd_api.g_ret_sts_unexp_error;

331: p_encoded => 'F',
332: p_msg_index_out => x_msg_count,
333: p_data => x_msg_data );
334: WHEN fnd_api.g_exc_unexpected_error THEN
335: x_return_status := fnd_api.g_ret_sts_unexp_error;
336: FND_MESSAGE.set_name('PO','RCV_SYSTEM_ERROR');
337: FND_MSG_PUB.add;
338: FND_MSG_PUB.get(
339: p_msg_index => FND_MSG_PUB.G_LAST,

Line 344: x_return_status := fnd_api.g_ret_sts_unexp_error;

340: p_encoded => 'F',
341: p_msg_index_out => x_msg_count,
342: p_data => x_msg_data );
343: WHEN OTHERS THEN
344: x_return_status := fnd_api.g_ret_sts_unexp_error;
345: FND_MESSAGE.set_name('PO','RCV_SYSTEM_ERROR');
346: FND_MSG_PUB.add;
347:
348: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN