DBA Data[Home] [Help]

APPS.ECE_AP_PAYMENT dependencies on FND_API

Line 47: /* IF NOT fnd_api.Compatible_API_Call(l_api_version,

43:
44: i_Transaction_Type := 'PYO';
45:
46: ec_debug.pl (3, 'comes here');
47: /* IF NOT fnd_api.Compatible_API_Call(l_api_version,
48: p_api_version,
49: l_api_name,
50: G_PKG_NAME)
51: THEN

Line 53: RAISE fnd_api.g_exc_unexpected_error;

49: l_api_name,
50: G_PKG_NAME)
51: THEN
52: ec_debug.pl (3, 'comes here');
53: RAISE fnd_api.g_exc_unexpected_error;
54: END IF;
55:
56: IF fnd_api.to_Boolean(p_init_msg_list) THEN
57: fnd_msg_pub.initialize;

Line 56: IF fnd_api.to_Boolean(p_init_msg_list) THEN

52: ec_debug.pl (3, 'comes here');
53: RAISE fnd_api.g_exc_unexpected_error;
54: END IF;
55:
56: IF fnd_api.to_Boolean(p_init_msg_list) THEN
57: fnd_msg_pub.initialize;
58: END IF;
59:
60: x_return_status := fnd_api.g_ret_sts_success;

Line 60: x_return_status := fnd_api.g_ret_sts_success;

56: IF fnd_api.to_Boolean(p_init_msg_list) THEN
57: fnd_msg_pub.initialize;
58: END IF;
59:
60: x_return_status := fnd_api.g_ret_sts_success;
61: ec_debug.pl (3, 'comes here');*/
62:
63: x_return_status := fnd_api.g_ret_sts_success; -- bug:5512623
64:

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

59:
60: x_return_status := fnd_api.g_ret_sts_success;
61: ec_debug.pl (3, 'comes here');*/
62:
63: x_return_status := fnd_api.g_ret_sts_success; -- bug:5512623
64:
65: xProgress := 'PYO-10-1004';
66:
67: -- Derive output filename

Line 118: if fnd_api.to_Boolean(p_commit) then

114: );
115:
116:
117: -- Standard check of p_commit
118: if fnd_api.to_Boolean(p_commit) then
119: COMMIT WORK;
120: end if;
121:
122: -- Standard call to get message count and if count is 1, get message info.

Line 135: WHEN fnd_api.g_exc_error THEN

131:
132: ec_debug.pop ( 'ECE_AP_TRANSACTION.Extract_PYO_Outbound' );
133: ec_debug.disable_debug;
134: EXCEPTION
135: WHEN fnd_api.g_exc_error THEN
136: ROLLBACK;
137: x_return_status := fnd_api.g_ret_sts_error;
138: fnd_msg_pub.count_and_get(p_count => x_msg_count,
139: p_data => x_msg_data);

Line 137: x_return_status := fnd_api.g_ret_sts_error;

133: ec_debug.disable_debug;
134: EXCEPTION
135: WHEN fnd_api.g_exc_error THEN
136: ROLLBACK;
137: x_return_status := fnd_api.g_ret_sts_error;
138: fnd_msg_pub.count_and_get(p_count => x_msg_count,
139: p_data => x_msg_data);
140: ec_debug.disable_debug;
141: WHEN fnd_api.g_exc_unexpected_error THEN

Line 141: WHEN fnd_api.g_exc_unexpected_error THEN

137: x_return_status := fnd_api.g_ret_sts_error;
138: fnd_msg_pub.count_and_get(p_count => x_msg_count,
139: p_data => x_msg_data);
140: ec_debug.disable_debug;
141: WHEN fnd_api.g_exc_unexpected_error THEN
142: ROLLBACK;
143: x_return_status := fnd_api.g_ret_sts_unexp_error;
144: fnd_msg_pub.count_and_get(p_count => x_msg_count,
145: p_data => x_msg_data);

Line 143: x_return_status := fnd_api.g_ret_sts_unexp_error;

139: p_data => x_msg_data);
140: ec_debug.disable_debug;
141: WHEN fnd_api.g_exc_unexpected_error THEN
142: ROLLBACK;
143: x_return_status := fnd_api.g_ret_sts_unexp_error;
144: fnd_msg_pub.count_and_get(p_count => x_msg_count,
145: p_data => x_msg_data);
146: ec_debug.disable_debug;
147: WHEN OTHERS THEN

Line 149: x_return_status := fnd_api.g_ret_sts_unexp_error;

145: p_data => x_msg_data);
146: ec_debug.disable_debug;
147: WHEN OTHERS THEN
148: ROLLBACK;
149: x_return_status := fnd_api.g_ret_sts_unexp_error;
150: IF fnd_msg_pub.Check_Msg_Level
151: (fnd_msg_pub.G_MSG_LVL_UNEXP_ERROR) THEN
152: fnd_msg_pub.add_exc_msg(G_PKG_NAME, l_api_name);
153: END IF;