DBA Data[Home] [Help]

APPS.PON_PO_INTEGRATION_GRP dependencies on FND_API

Line 21: -- FND_API.G_TRUE: initialize the message list

17: --IN:
18: --p_api_version
19: -- Version of the api the caller is assuming
20: --p_init_msg_list
21: -- FND_API.G_TRUE: initialize the message list
22: -- FND_API.G_FALSE: do not initialize the message list
23: --p_commit
24: -- FND_API.G_TRUE: procedure should commit
25: -- FND_API.G_FALSE: procedure should not commit

Line 22: -- FND_API.G_FALSE: do not initialize the message list

18: --p_api_version
19: -- Version of the api the caller is assuming
20: --p_init_msg_list
21: -- FND_API.G_TRUE: initialize the message list
22: -- FND_API.G_FALSE: do not initialize the message list
23: --p_commit
24: -- FND_API.G_TRUE: procedure should commit
25: -- FND_API.G_FALSE: procedure should not commit
26: --p_in_rec

Line 24: -- FND_API.G_TRUE: procedure should commit

20: --p_init_msg_list
21: -- FND_API.G_TRUE: initialize the message list
22: -- FND_API.G_FALSE: do not initialize the message list
23: --p_commit
24: -- FND_API.G_TRUE: procedure should commit
25: -- FND_API.G_FALSE: procedure should not commit
26: --p_in_rec
27: -- A structure that holds PO information
28: -- p_in_rec.entity_name will expect 'PO_HEADERS', while p_in_rec.entity_ids

Line 25: -- FND_API.G_FALSE: procedure should not commit

21: -- FND_API.G_TRUE: initialize the message list
22: -- FND_API.G_FALSE: do not initialize the message list
23: --p_commit
24: -- FND_API.G_TRUE: procedure should commit
25: -- FND_API.G_FALSE: procedure should not commit
26: --p_in_rec
27: -- A structure that holds PO information
28: -- p_in_rec.entity_name will expect 'PO_HEADERS', while p_in_rec.entity_ids
29: -- will be a table of all document header ids that PO are about to be purged

Line 73: x_return_status := fnd_api.g_ret_sts_unexp_error;

69: l_references NUMBER;
70:
71: BEGIN
72: -- initialize return for unexpected error
73: x_return_status := fnd_api.g_ret_sts_unexp_error;
74:
75: l_progress := 100;
76:
77: -- Standard call to check for call compatibility.

Line 78: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version,

74:
75: l_progress := 100;
76:
77: -- Standard call to check for call compatibility.
78: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version,
79: l_api_name, l_api_name) THEN
80: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
81: END IF;
82:

Line 80: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

76:
77: -- Standard call to check for call compatibility.
78: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version,
79: l_api_name, l_api_name) THEN
80: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
81: END IF;
82:
83: l_progress := 150;
84:

Line 86: IF FND_API.to_Boolean(p_init_msg_list) THEN

82:
83: l_progress := 150;
84:
85: -- Initialize message list if p_init_msg_list is set to TRUE.
86: IF FND_API.to_Boolean(p_init_msg_list) THEN
87: FND_MSG_PUB.initialize();
88: END IF;
89:
90: l_progress := 200;

Line 176: if (p_commit = fnd_api.g_true) then

172: end if; -- entity_name
173:
174: l_progress := 500;
175:
176: if (p_commit = fnd_api.g_true) then
177: commit;
178: end if;
179:
180: x_return_status := fnd_api.g_ret_sts_success;

Line 180: x_return_status := fnd_api.g_ret_sts_success;

176: if (p_commit = fnd_api.g_true) then
177: commit;
178: end if;
179:
180: x_return_status := fnd_api.g_ret_sts_success;
181: x_msg_count := 0;
182: x_msg_data := null;
183:
184: EXCEPTION

Line 186: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

182: x_msg_data := null;
183:
184: EXCEPTION
185: WHEN OTHERS THEN
186: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
187: FND_MSG_PUB.add_exc_msg
188: ( p_pkg_name => g_pkg_name,
189: p_procedure_name => l_api_name || '.' || l_progress
190: );

Line 214: -- FND_API.G_TRUE: initialize the message list

210: --IN:
211: --p_api_version
212: -- Version of the api the caller is assuming
213: --p_init_msg_list
214: -- FND_API.G_TRUE: initialize the message list
215: -- FND_API.G_FALSE: do not initialize the message list
216: --p_commit
217: -- FND_API.G_TRUE: procedure should commit
218: -- FND_API.G_FALSE: procedure should not commit

Line 215: -- FND_API.G_FALSE: do not initialize the message list

211: --p_api_version
212: -- Version of the api the caller is assuming
213: --p_init_msg_list
214: -- FND_API.G_TRUE: initialize the message list
215: -- FND_API.G_FALSE: do not initialize the message list
216: --p_commit
217: -- FND_API.G_TRUE: procedure should commit
218: -- FND_API.G_FALSE: procedure should not commit
219: --p_in_rec

Line 217: -- FND_API.G_TRUE: procedure should commit

213: --p_init_msg_list
214: -- FND_API.G_TRUE: initialize the message list
215: -- FND_API.G_FALSE: do not initialize the message list
216: --p_commit
217: -- FND_API.G_TRUE: procedure should commit
218: -- FND_API.G_FALSE: procedure should not commit
219: --p_in_rec
220: -- A structure that holds PO information
221: -- p_in_rec.entity_name will expect 'PO_HEADERS', while p_in_rec.entity_ids

Line 218: -- FND_API.G_FALSE: procedure should not commit

214: -- FND_API.G_TRUE: initialize the message list
215: -- FND_API.G_FALSE: do not initialize the message list
216: --p_commit
217: -- FND_API.G_TRUE: procedure should commit
218: -- FND_API.G_FALSE: procedure should not commit
219: --p_in_rec
220: -- A structure that holds PO information
221: -- p_in_rec.entity_name will expect 'PO_HEADERS', while p_in_rec.entity_ids
222: -- will be a table of all document header ids that PO are about to be purged

Line 254: x_return_status := fnd_api.g_ret_sts_unexp_error;

250: l_progress NUMBER;
251:
252: BEGIN
253: -- initialize return for unexpected error
254: x_return_status := fnd_api.g_ret_sts_unexp_error;
255:
256: l_progress := 100;
257:
258: -- Standard call to check for call compatibility.

Line 259: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version,

255:
256: l_progress := 100;
257:
258: -- Standard call to check for call compatibility.
259: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version,
260: l_api_name, l_api_name) THEN
261: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
262: END IF;
263:

Line 261: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

257:
258: -- Standard call to check for call compatibility.
259: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version,
260: l_api_name, l_api_name) THEN
261: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
262: END IF;
263:
264: l_progress := 150;
265:

Line 267: IF FND_API.to_Boolean(p_init_msg_list) THEN

263:
264: l_progress := 150;
265:
266: -- Initialize message list if p_init_msg_list is set to TRUE.
267: IF FND_API.to_Boolean(p_init_msg_list) THEN
268: FND_MSG_PUB.initialize();
269: END IF;
270:
271: l_progress := 200;

Line 273: if (p_commit = fnd_api.g_true) then

269: END IF;
270:
271: l_progress := 200;
272:
273: if (p_commit = fnd_api.g_true) then
274: commit;
275: end if;
276:
277: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 277: x_return_status := FND_API.G_RET_STS_SUCCESS;

273: if (p_commit = fnd_api.g_true) then
274: commit;
275: end if;
276:
277: x_return_status := FND_API.G_RET_STS_SUCCESS;
278:
279: EXCEPTION
280: WHEN OTHERS THEN
281: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 281: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

277: x_return_status := FND_API.G_RET_STS_SUCCESS;
278:
279: EXCEPTION
280: WHEN OTHERS THEN
281: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
282: FND_MSG_PUB.add_exc_msg
283: ( p_pkg_name => g_pkg_name,
284: p_procedure_name => l_api_name || '.' || l_progress
285: );