DBA Data[Home] [Help]

APPS.PO_COMPLEX_WORK_GRP dependencies on FND_API

Line 24: -- FND_API.G_RET_STS_SUCCESS: API completed successfully.

20: -- p_style_id
21: -- ID of the style to get the complex work flags for.
22: --OUT:
23: -- x_return_status
24: -- FND_API.G_RET_STS_SUCCESS: API completed successfully.
25: -- FND_API.G_RET_STS_UNEXP_ERROR: API was not successful; unexpected error.
26: -- x_complex_work_flag
27: -- 'Y': Any document with this style uses progress payments.
28: -- 'N': Any document with this style cannot use progress payments.

Line 25: -- FND_API.G_RET_STS_UNEXP_ERROR: API was not successful; unexpected error.

21: -- ID of the style to get the complex work flags for.
22: --OUT:
23: -- x_return_status
24: -- FND_API.G_RET_STS_SUCCESS: API completed successfully.
25: -- FND_API.G_RET_STS_UNEXP_ERROR: API was not successful; unexpected error.
26: -- x_complex_work_flag
27: -- 'Y': Any document with this style uses progress payments.
28: -- 'N': Any document with this style cannot use progress payments.
29: -- x_financing_payments_flag

Line 92: x_return_status := FND_API.G_RET_STS_SUCCESS;

88: );
89:
90: d_progress := 20;
91:
92: x_return_status := FND_API.G_RET_STS_SUCCESS;
93:
94: IF (PO_LOG.d_proc) THEN
95: PO_LOG.proc_end(d_module, 'x_return_status', x_return_status);
96: PO_LOG.proc_end(d_module, 'x_complex_work_flag', x_complex_work_flag);

Line 112: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

108: IF (PO_LOG.d_exc) THEN
109: PO_LOG.exc(d_module, d_progress, SQLCODE || SQLERRM);
110: PO_LOG.proc_end(d_module);
111: END IF;
112: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
113: END get_payment_style_settings;
114:
115:
116: ------------------------------------------------------------------------------

Line 135: -- FND_API.G_RET_STS_SUCCESS: API completed successfully.

131: -- p_style_id
132: -- ID of the style to get the complex work flag for
133: --OUT:
134: -- x_return_status
135: -- FND_API.G_RET_STS_SUCCESS: API completed successfully.
136: -- FND_API.G_RET_STS_UNEXP_ERROR: API was not successful; unexpected error.
137: -- x_is_complex_flag
138: -- 'Y': Any document with this style uses progress payments
139: -- 'N': Any document with this style cannot use progress payments.

Line 136: -- FND_API.G_RET_STS_UNEXP_ERROR: API was not successful; unexpected error.

132: -- ID of the style to get the complex work flag for
133: --OUT:
134: -- x_return_status
135: -- FND_API.G_RET_STS_SUCCESS: API completed successfully.
136: -- FND_API.G_RET_STS_UNEXP_ERROR: API was not successful; unexpected error.
137: -- x_is_complex_flag
138: -- 'Y': Any document with this style uses progress payments
139: -- 'N': Any document with this style cannot use progress payments.
140: --End of Comments

Line 176: x_return_status := FND_API.G_RET_STS_SUCCESS;

172: END IF;
173:
174: d_progress := 30;
175:
176: x_return_status := FND_API.G_RET_STS_SUCCESS;
177:
178: IF (PO_LOG.d_proc) THEN
179: PO_LOG.proc_end(d_module, 'x_return_status', x_return_status);
180: PO_LOG.proc_end(d_module, 'x_is_complex_flag', x_is_complex_flag);

Line 190: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

186: IF (PO_LOG.d_exc) THEN
187: PO_LOG.exc(d_module, d_progress, SQLCODE || SQLERRM);
188: PO_LOG.proc_end(d_module);
189: END IF;
190: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
191: END is_complex_work_style;
192:
193: ------------------------------------------------------------------------------
194: --Start of Comments

Line 213: -- FND_API.G_RET_STS_SUCCESS: API completed successfully.

209: -- p_style_id
210: -- ID of the style to get the financing flag for
211: --OUT:
212: -- x_return_status
213: -- FND_API.G_RET_STS_SUCCESS: API completed successfully.
214: -- FND_API.G_RET_STS_UNEXP_ERROR: API was not successful; unexpected error.
215: -- x_is_financing_flag
216: -- 'Y': Any document with this style uses financing progress payments
217: -- 'N': Any document with this style does not use financing progress

Line 214: -- FND_API.G_RET_STS_UNEXP_ERROR: API was not successful; unexpected error.

210: -- ID of the style to get the financing flag for
211: --OUT:
212: -- x_return_status
213: -- FND_API.G_RET_STS_SUCCESS: API completed successfully.
214: -- FND_API.G_RET_STS_UNEXP_ERROR: API was not successful; unexpected error.
215: -- x_is_financing_flag
216: -- 'Y': Any document with this style uses financing progress payments
217: -- 'N': Any document with this style does not use financing progress
218: -- payments (other than advances).

Line 256: x_return_status := FND_API.G_RET_STS_SUCCESS;

252: END IF;
253:
254: d_progress := 30;
255:
256: x_return_status := FND_API.G_RET_STS_SUCCESS;
257:
258: IF (PO_LOG.d_proc) THEN
259: PO_LOG.proc_end(d_module, 'x_return_status', x_return_status);
260: PO_LOG.proc_end(d_module, 'x_is_financing_flag', x_is_financing_flag);

Line 270: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

266: IF (PO_LOG.d_exc) THEN
267: PO_LOG.exc(d_module, d_progress, SQLCODE || SQLERRM);
268: PO_LOG.proc_end(d_module);
269: END IF;
270: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
271: END is_financing_payment_style;
272:
273:
274:

Line 294: -- FND_API.G_RET_STS_SUCCESS: API completed successfully.

290: -- p_po_header_id
291: -- Header ID of the PO to check whether or not it's a complex work PO
292: --OUT:
293: -- x_return_status
294: -- FND_API.G_RET_STS_SUCCESS: API completed successfully.
295: -- FND_API.G_RET_STS_UNEXP_ERROR: API was not successful; unexpected error.
296: -- x_is_complex_flag
297: -- 'Y': This PO uses progress payments
298: -- 'N': This PO cannot use progress payments

Line 295: -- FND_API.G_RET_STS_UNEXP_ERROR: API was not successful; unexpected error.

291: -- Header ID of the PO to check whether or not it's a complex work PO
292: --OUT:
293: -- x_return_status
294: -- FND_API.G_RET_STS_SUCCESS: API completed successfully.
295: -- FND_API.G_RET_STS_UNEXP_ERROR: API was not successful; unexpected error.
296: -- x_is_complex_flag
297: -- 'Y': This PO uses progress payments
298: -- 'N': This PO cannot use progress payments
299: --End of Comments

Line 333: x_return_status := FND_API.G_RET_STS_SUCCESS;

329: ELSE
330: x_is_complex_flag := 'N';
331: END IF;
332:
333: x_return_status := FND_API.G_RET_STS_SUCCESS;
334:
335: IF (PO_LOG.d_proc) THEN
336: PO_LOG.proc_end(d_module, 'x_return_status', x_return_status);
337: PO_LOG.proc_end(d_module, 'x_is_complex_flag', x_is_complex_flag);

Line 347: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

343: IF (PO_LOG.d_exc) THEN
344: PO_LOG.exc(d_module, d_progress, SQLCODE || SQLERRM);
345: PO_LOG.proc_end(d_module);
346: END IF;
347: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
348: END is_complex_work_po;
349:
350:
351: ------------------------------------------------------------------------------

Line 370: -- FND_API.G_RET_STS_SUCCESS: API completed successfully.

366: -- p_po_header_id
367: -- Header ID of the PO to check whether or not PO uses financing pay items
368: --OUT:
369: -- x_return_status
370: -- FND_API.G_RET_STS_SUCCESS: API completed successfully.
371: -- FND_API.G_RET_STS_UNEXP_ERROR: API was not successful; unexpected error.
372: -- x_is_complex_flag
373: -- 'Y': This PO uses financing pay items
374: -- 'N': This PO does not use financing pay items, other than for advances

Line 371: -- FND_API.G_RET_STS_UNEXP_ERROR: API was not successful; unexpected error.

367: -- Header ID of the PO to check whether or not PO uses financing pay items
368: --OUT:
369: -- x_return_status
370: -- FND_API.G_RET_STS_SUCCESS: API completed successfully.
371: -- FND_API.G_RET_STS_UNEXP_ERROR: API was not successful; unexpected error.
372: -- x_is_complex_flag
373: -- 'Y': This PO uses financing pay items
374: -- 'N': This PO does not use financing pay items, other than for advances
375: --End of Comments

Line 409: x_return_status := FND_API.G_RET_STS_SUCCESS;

405: ELSE
406: x_is_financing_flag := 'N';
407: END IF;
408:
409: x_return_status := FND_API.G_RET_STS_SUCCESS;
410:
411: IF (PO_LOG.d_proc) THEN
412: PO_LOG.proc_end(d_module, 'x_return_status', x_return_status);
413: PO_LOG.proc_end(d_module, 'x_is_financing_flag', x_is_financing_flag);

Line 423: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

419: IF (PO_LOG.d_exc) THEN
420: PO_LOG.exc(d_module, d_progress, SQLCODE || SQLERRM);
421: PO_LOG.proc_end(d_module);
422: END IF;
423: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
424: END is_financing_po;
425:
426:
427: