DBA Data[Home] [Help]

APPS.PO_PDOI_GRP dependencies on FND_API

Line 22: -- FND_API.G_TRUE if caller expects PDOI to initialize the message stack

18: --IN:
19: --p_api_version
20: -- API version of the program caller assumes
21: --p_init_msg_list
22: -- FND_API.G_TRUE if caller expects PDOI to initialize the message stack
23: -- maintained by FND_MSG_PUB.
24: -- FND_API.G_FALSE otherwise
25: --p_validation_level
26: -- Currently this parameter has no effect. PDOI always does full validation

Line 24: -- FND_API.G_FALSE otherwise

20: -- API version of the program caller assumes
21: --p_init_msg_list
22: -- FND_API.G_TRUE if caller expects PDOI to initialize the message stack
23: -- maintained by FND_MSG_PUB.
24: -- FND_API.G_FALSE otherwise
25: --p_validation_level
26: -- Currently this parameter has no effect. PDOI always does full validation
27: --p_commit
28: -- Whether PDOI will issue commits

Line 29: -- FND_API.G_TRUE if caller expects PDOI to commit data

25: --p_validation_level
26: -- Currently this parameter has no effect. PDOI always does full validation
27: --p_commit
28: -- Whether PDOI will issue commits
29: -- FND_API.G_TRUE if caller expects PDOI to commit data
30: -- FND_API.G_FALSE otherwise
31: --p_gather_intf_tbl_stat
32: -- Whether PDOI gather table statistics before processing.
33: -- 'Y' if statistics should be gathered. Consider this if a large

Line 30: -- FND_API.G_FALSE otherwise

26: -- Currently this parameter has no effect. PDOI always does full validation
27: --p_commit
28: -- Whether PDOI will issue commits
29: -- FND_API.G_TRUE if caller expects PDOI to commit data
30: -- FND_API.G_FALSE otherwise
31: --p_gather_intf_tbl_stat
32: -- Whether PDOI gather table statistics before processing.
33: -- 'Y' if statistics should be gathered. Consider this if a large
34: -- number of records are being inserted into the interface table

Line 93: -- FND_API.G_RET_STS_SUCCESS if API is successful

89: --IN OUT:
90: --OUT:
91: --x_return_status
92: -- Return status of the API.
93: -- FND_API.G_RET_STS_SUCCESS if API is successful
94: -- FND_API.G_RET_STS_ERR if there are user errors
95: -- FND_API.G_RET_STS_UNEXP_ERR if unexpected error (exception) occurs
96: --End of Comments
97: ------------------------------------------------------------------------

Line 94: -- FND_API.G_RET_STS_ERR if there are user errors

90: --OUT:
91: --x_return_status
92: -- Return status of the API.
93: -- FND_API.G_RET_STS_SUCCESS if API is successful
94: -- FND_API.G_RET_STS_ERR if there are user errors
95: -- FND_API.G_RET_STS_UNEXP_ERR if unexpected error (exception) occurs
96: --End of Comments
97: ------------------------------------------------------------------------
98: PROCEDURE start_process

Line 95: -- FND_API.G_RET_STS_UNEXP_ERR if unexpected error (exception) occurs

91: --x_return_status
92: -- Return status of the API.
93: -- FND_API.G_RET_STS_SUCCESS if API is successful
94: -- FND_API.G_RET_STS_ERR if there are user errors
95: -- FND_API.G_RET_STS_UNEXP_ERR if unexpected error (exception) occurs
96: --End of Comments
97: ------------------------------------------------------------------------
98: PROCEDURE start_process
99: ( p_api_version IN NUMBER,

Line 140: IF (p_init_msg_list = FND_API.G_TRUE) THEN

136: IF (PO_LOG.d_proc) THEN
137: PO_LOG.proc_end(d_module);
138: END IF;
139:
140: IF (p_init_msg_list = FND_API.G_TRUE) THEN
141: FND_MSG_PUB.initialize;
142: END IF;
143:
144: IF (NOT FND_API.Compatible_API_Call

Line 144: IF (NOT FND_API.Compatible_API_Call

140: IF (p_init_msg_list = FND_API.G_TRUE) THEN
141: FND_MSG_PUB.initialize;
142: END IF;
143:
144: IF (NOT FND_API.Compatible_API_Call
145: ( p_current_version_number => d_api_version,
146: p_caller_version_number => p_api_version,
147: p_api_name => d_api_name,
148: p_pkg_name => d_pkg_name

Line 153: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

149: )
150: ) THEN
151:
152: d_position := 10;
153: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
154: END IF; -- not compatible_api
155:
156: d_position := 20;
157:

Line 160: p_init_msg_list => FND_API.G_FALSE,

156: d_position := 20;
157:
158: PO_PDOI_PVT.start_process
159: ( p_api_version => 1.0,
160: p_init_msg_list => FND_API.G_FALSE,
161: p_validation_level => p_validation_level,
162: p_commit => p_commit,
163: x_return_status => x_return_status,
164: p_gather_intf_tbl_stat => p_gather_intf_tbl_stat,

Line 217: -- FND_API.G_TRUE if caller expects PDOI to initialize the message stack

213: --IN:
214: --p_api_version
215: -- API version of the program caller assumes
216: --p_init_msg_list
217: -- FND_API.G_TRUE if caller expects PDOI to initialize the message stack
218: -- maintained by FND_MSG_PUB.
219: -- FND_API.G_FALSE otherwise
220: --p_validation_level
221: -- Currently this parameter has no effect. PDOI always does full validation

Line 219: -- FND_API.G_FALSE otherwise

215: -- API version of the program caller assumes
216: --p_init_msg_list
217: -- FND_API.G_TRUE if caller expects PDOI to initialize the message stack
218: -- maintained by FND_MSG_PUB.
219: -- FND_API.G_FALSE otherwise
220: --p_validation_level
221: -- Currently this parameter has no effect. PDOI always does full validation
222: --p_commit
223: -- Whether PDOI will issue commits

Line 224: -- FND_API.G_TRUE if caller expects PDOI to commit data

220: --p_validation_level
221: -- Currently this parameter has no effect. PDOI always does full validation
222: --p_commit
223: -- Whether PDOI will issue commits
224: -- FND_API.G_TRUE if caller expects PDOI to commit data
225: -- FND_API.G_FALSE otherwise
226: --p_gather_intf_tbl_stat
227: -- Whether PDOI gather table statistics before processing.
228: -- 'Y' if statistics should be gathered. Consider this if a large

Line 225: -- FND_API.G_FALSE otherwise

221: -- Currently this parameter has no effect. PDOI always does full validation
222: --p_commit
223: -- Whether PDOI will issue commits
224: -- FND_API.G_TRUE if caller expects PDOI to commit data
225: -- FND_API.G_FALSE otherwise
226: --p_gather_intf_tbl_stat
227: -- Whether PDOI gather table statistics before processing.
228: -- 'Y' if statistics should be gathered. Consider this if a large
229: -- number of records are being inserted into the interface table

Line 304: -- FND_API.G_RET_STS_SUCCESS if API is successful

300: --IN OUT:
301: --OUT:
302: --x_return_status
303: -- Return status of the API.
304: -- FND_API.G_RET_STS_SUCCESS if API is successful
305: -- FND_API.G_RET_STS_ERR if there are user errors
306: -- FND_API.G_RET_STS_UNEXP_ERR if unexpected error (exception) occurs
307: --x_error_message
308: -- Concatenation of error in case an error exists

Line 305: -- FND_API.G_RET_STS_ERR if there are user errors

301: --OUT:
302: --x_return_status
303: -- Return status of the API.
304: -- FND_API.G_RET_STS_SUCCESS if API is successful
305: -- FND_API.G_RET_STS_ERR if there are user errors
306: -- FND_API.G_RET_STS_UNEXP_ERR if unexpected error (exception) occurs
307: --x_error_message
308: -- Concatenation of error in case an error exists
309: --x_processed_lines_count

Line 306: -- FND_API.G_RET_STS_UNEXP_ERR if unexpected error (exception) occurs

302: --x_return_status
303: -- Return status of the API.
304: -- FND_API.G_RET_STS_SUCCESS if API is successful
305: -- FND_API.G_RET_STS_ERR if there are user errors
306: -- FND_API.G_RET_STS_UNEXP_ERR if unexpected error (exception) occurs
307: --x_error_message
308: -- Concatenation of error in case an error exists
309: --x_processed_lines_count
310: -- ** Populated for catalog upload only **

Line 318: -- FND_API.G_TRUE if exceeded

314: -- Number of lines being rejected
315: --x_err_tolerance_exceeded
316: -- ** Populated for catalog upload only **
317: -- indicates whether error threshold is exceeded
318: -- FND_API.G_TRUE if exceeded
319: -- FND_API.G_FALSE otherwise
320: --End of Comments
321: ------------------------------------------------------------------------
322: PROCEDURE catalog_upload

Line 319: -- FND_API.G_FALSE otherwise

315: --x_err_tolerance_exceeded
316: -- ** Populated for catalog upload only **
317: -- indicates whether error threshold is exceeded
318: -- FND_API.G_TRUE if exceeded
319: -- FND_API.G_FALSE otherwise
320: --End of Comments
321: ------------------------------------------------------------------------
322: PROCEDURE catalog_upload
323: ( p_api_version IN NUMBER,

Line 369: IF (p_init_msg_list = FND_API.G_TRUE) THEN

365: IF (PO_LOG.d_proc) THEN
366: PO_LOG.proc_end(d_module);
367: END IF;
368:
369: IF (p_init_msg_list = FND_API.G_TRUE) THEN
370: FND_MSG_PUB.initialize;
371: END IF;
372:
373: IF (NOT FND_API.Compatible_API_Call

Line 373: IF (NOT FND_API.Compatible_API_Call

369: IF (p_init_msg_list = FND_API.G_TRUE) THEN
370: FND_MSG_PUB.initialize;
371: END IF;
372:
373: IF (NOT FND_API.Compatible_API_Call
374: ( p_current_version_number => d_api_version,
375: p_caller_version_number => p_api_version,
376: p_api_name => d_api_name,
377: p_pkg_name => d_pkg_name

Line 382: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

378: )
379: ) THEN
380:
381: d_position := 10;
382: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
383: END IF; -- not compatible_api
384:
385: d_position := 20;
386:

Line 389: p_init_msg_list => FND_API.G_FALSE,

385: d_position := 20;
386:
387: PO_PDOI_PVT.start_process
388: ( p_api_version => 1.0,
389: p_init_msg_list => FND_API.G_FALSE,
390: p_validation_level => p_validation_level,
391: p_commit => p_commit,
392: x_return_status => x_return_status,
393: p_gather_intf_tbl_stat => p_gather_intf_tbl_stat,

Line 450: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

446: ( p_pkg_name => d_pkg_name,
447: p_procedure_name => d_api_name || '.' || d_position
448: );
449:
450: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
451:
452: END catalog_upload;
453:
454:

Line 466: -- FND_API.G_TRUE if caller expects PDOI to initialize the message stack

462: --IN:
463: --p_api_version
464: -- API version of the program caller assumes
465: --p_init_msg_list
466: -- FND_API.G_TRUE if caller expects PDOI to initialize the message stack
467: -- maintained by FND_MSG_PUB.
468: -- FND_API.G_FALSE otherwise
469: --p_validation_level
470: -- Currently this parameter has no effect. PDOI always does full validation

Line 468: -- FND_API.G_FALSE otherwise

464: -- API version of the program caller assumes
465: --p_init_msg_list
466: -- FND_API.G_TRUE if caller expects PDOI to initialize the message stack
467: -- maintained by FND_MSG_PUB.
468: -- FND_API.G_FALSE otherwise
469: --p_validation_level
470: -- Currently this parameter has no effect. PDOI always does full validation
471: --p_commit
472: -- Whether PDOI will issue commits

Line 473: -- FND_API.G_TRUE if caller expects PDOI to commit data

469: --p_validation_level
470: -- Currently this parameter has no effect. PDOI always does full validation
471: --p_commit
472: -- Whether PDOI will issue commits
473: -- FND_API.G_TRUE if caller expects PDOI to commit data
474: -- FND_API.G_FALSE otherwise
475: --p_selected_batch_id
476: -- Batch id parameter. If this is specified, only the records with this batch
477: -- id will be processed.

Line 474: -- FND_API.G_FALSE otherwise

470: -- Currently this parameter has no effect. PDOI always does full validation
471: --p_commit
472: -- Whether PDOI will issue commits
473: -- FND_API.G_TRUE if caller expects PDOI to commit data
474: -- FND_API.G_FALSE otherwise
475: --p_selected_batch_id
476: -- Batch id parameter. If this is specified, only the records with this batch
477: -- id will be processed.
478: --p_document_type

Line 493: -- FND_API.G_RET_STS_SUCCESS if API is successful

489: --IN OUT:
490: --OUT:
491: --x_return_status
492: -- Return status of the API.
493: -- FND_API.G_RET_STS_SUCCESS if API is successful
494: -- FND_API.G_RET_STS_ERR if there are user errors
495: -- FND_API.G_RET_STS_UNEXP_ERR if unexpected error (exception) occurs
496: --End of Comments
497: ------------------------------------------------------------------------

Line 494: -- FND_API.G_RET_STS_ERR if there are user errors

490: --OUT:
491: --x_return_status
492: -- Return status of the API.
493: -- FND_API.G_RET_STS_SUCCESS if API is successful
494: -- FND_API.G_RET_STS_ERR if there are user errors
495: -- FND_API.G_RET_STS_UNEXP_ERR if unexpected error (exception) occurs
496: --End of Comments
497: ------------------------------------------------------------------------
498: PROCEDURE handle_price_tolerance_resp

Line 495: -- FND_API.G_RET_STS_UNEXP_ERR if unexpected error (exception) occurs

491: --x_return_status
492: -- Return status of the API.
493: -- FND_API.G_RET_STS_SUCCESS if API is successful
494: -- FND_API.G_RET_STS_ERR if there are user errors
495: -- FND_API.G_RET_STS_UNEXP_ERR if unexpected error (exception) occurs
496: --End of Comments
497: ------------------------------------------------------------------------
498: PROCEDURE handle_price_tolerance_resp
499: ( p_api_version IN NUMBER,

Line 528: IF (p_init_msg_list = FND_API.G_TRUE) THEN

524: IF (PO_LOG.d_proc) THEN
525: PO_LOG.proc_end(d_module);
526: END IF;
527:
528: IF (p_init_msg_list = FND_API.G_TRUE) THEN
529: FND_MSG_PUB.initialize;
530: END IF;
531:
532: IF (NOT FND_API.Compatible_API_Call

Line 532: IF (NOT FND_API.Compatible_API_Call

528: IF (p_init_msg_list = FND_API.G_TRUE) THEN
529: FND_MSG_PUB.initialize;
530: END IF;
531:
532: IF (NOT FND_API.Compatible_API_Call
533: ( p_current_version_number => d_api_version,
534: p_caller_version_number => p_api_version,
535: p_api_name => d_api_name,
536: p_pkg_name => d_pkg_name

Line 541: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

537: )
538: ) THEN
539:
540: d_position := 10;
541: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
542: END IF; -- not compatible_api
543:
544: d_position := 20;
545:

Line 548: p_init_msg_list => FND_API.G_FALSE,

544: d_position := 20;
545:
546: PO_PDOI_PVT.start_process
547: ( p_api_version => 1.0,
548: p_init_msg_list => FND_API.G_FALSE,
549: p_validation_level => p_validation_level,
550: p_commit => p_commit,
551: x_return_status => x_return_status,
552: p_gather_intf_tbl_stat => 'N',

Line 591: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

587: ( p_pkg_name => d_pkg_name,
588: p_procedure_name => d_api_name || '.' || d_position
589: );
590:
591: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
592: END handle_price_tolerance_resp;
593:
594:
595: END PO_PDOI_GRP;