DBA Data[Home] [Help]

APPS.ECE_AP_PAYMENT dependencies on FND_API

Line 67: IF NOT fnd_api.Compatible_API_Call(l_api_version,

63:
64: ec_debug.pl (3, 'comes here');
65:
66: /*
67: IF NOT fnd_api.Compatible_API_Call(l_api_version,
68: p_api_version,
69: l_api_name,
70: G_PKG_NAME)
71: THEN

Line 73: RAISE fnd_api.g_exc_unexpected_error;

69: l_api_name,
70: G_PKG_NAME)
71: THEN
72: ec_debug.pl (3, 'comes here');
73: RAISE fnd_api.g_exc_unexpected_error;
74: END IF;
75:
76: IF fnd_api.to_Boolean(p_init_msg_list) THEN
77: fnd_msg_pub.initialize;

Line 76: IF fnd_api.to_Boolean(p_init_msg_list) THEN

72: ec_debug.pl (3, 'comes here');
73: RAISE fnd_api.g_exc_unexpected_error;
74: END IF;
75:
76: IF fnd_api.to_Boolean(p_init_msg_list) THEN
77: fnd_msg_pub.initialize;
78: END IF;
79:
80: x_return_status := fnd_api.g_ret_sts_success;

Line 80: x_return_status := fnd_api.g_ret_sts_success;

76: IF fnd_api.to_Boolean(p_init_msg_list) THEN
77: fnd_msg_pub.initialize;
78: END IF;
79:
80: x_return_status := fnd_api.g_ret_sts_success;
81: ec_debug.pl (3, 'comes here');
82: */
83:
84: x_return_status := fnd_api.g_ret_sts_success; -- bug:5512623

Line 84: x_return_status := fnd_api.g_ret_sts_success; -- bug:5512623

80: x_return_status := fnd_api.g_ret_sts_success;
81: ec_debug.pl (3, 'comes here');
82: */
83:
84: x_return_status := fnd_api.g_ret_sts_success; -- bug:5512623
85:
86: xProgress := 'PYO-10-1004';
87:
88: -- Derive output filename

Line 149: if fnd_api.to_Boolean(p_commit) then

145: fnd_file.put_line(fnd_file.log, 'Calling EC Process Outbound :: END ::'||systimestamp);
146:
147:
148: -- Standard check of p_commit
149: if fnd_api.to_Boolean(p_commit) then
150: COMMIT WORK;
151: end if;
152:
153: -- Standard call to get message count and if count is 1, get message info.

Line 167: WHEN fnd_api.g_exc_error THEN

163: delete_from_gt;
164: ec_debug.pop ( 'ECE_AP_TRANSACTION.Extract_PYO_Outbound' );
165: ec_debug.disable_debug;
166: EXCEPTION
167: WHEN fnd_api.g_exc_error THEN
168: ROLLBACK;
169: fnd_file.put_line(fnd_file.log, 'EXCEPTION :: END ::'||systimestamp);
170: x_return_status := fnd_api.g_ret_sts_error;
171: fnd_msg_pub.count_and_get(p_count => x_msg_count,

Line 170: x_return_status := fnd_api.g_ret_sts_error;

166: EXCEPTION
167: WHEN fnd_api.g_exc_error THEN
168: ROLLBACK;
169: fnd_file.put_line(fnd_file.log, 'EXCEPTION :: END ::'||systimestamp);
170: x_return_status := fnd_api.g_ret_sts_error;
171: fnd_msg_pub.count_and_get(p_count => x_msg_count,
172: p_data => x_msg_data);
173: ec_debug.disable_debug;
174: WHEN fnd_api.g_exc_unexpected_error THEN

Line 174: WHEN fnd_api.g_exc_unexpected_error THEN

170: x_return_status := fnd_api.g_ret_sts_error;
171: fnd_msg_pub.count_and_get(p_count => x_msg_count,
172: p_data => x_msg_data);
173: ec_debug.disable_debug;
174: WHEN fnd_api.g_exc_unexpected_error THEN
175: ROLLBACK;
176: fnd_file.put_line(fnd_file.log, 'EXCEPTION :: END ::'||systimestamp);
177: x_return_status := fnd_api.g_ret_sts_unexp_error;
178: fnd_msg_pub.count_and_get(p_count => x_msg_count,

Line 177: x_return_status := fnd_api.g_ret_sts_unexp_error;

173: ec_debug.disable_debug;
174: WHEN fnd_api.g_exc_unexpected_error THEN
175: ROLLBACK;
176: fnd_file.put_line(fnd_file.log, 'EXCEPTION :: END ::'||systimestamp);
177: x_return_status := fnd_api.g_ret_sts_unexp_error;
178: fnd_msg_pub.count_and_get(p_count => x_msg_count,
179: p_data => x_msg_data);
180: ec_debug.disable_debug;
181: WHEN OTHERS THEN

Line 184: x_return_status := fnd_api.g_ret_sts_unexp_error;

180: ec_debug.disable_debug;
181: WHEN OTHERS THEN
182: ROLLBACK;
183: fnd_file.put_line(fnd_file.log, 'EXCEPTION :: END ::'||systimestamp);
184: x_return_status := fnd_api.g_ret_sts_unexp_error;
185: IF fnd_msg_pub.Check_Msg_Level
186: (fnd_msg_pub.G_MSG_LVL_UNEXP_ERROR) THEN
187: fnd_msg_pub.add_exc_msg(G_PKG_NAME, l_api_name);
188: END IF;