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 95: -- FND_API.G_RET_STS_SUCCESS if API is successful

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

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

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

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

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

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

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

Line 147: IF (NOT FND_API.Compatible_API_Call

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

Line 156: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

152: )
153: ) THEN
154:
155: d_position := 10;
156: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
157: END IF; -- not compatible_api
158:
159: d_position := 20;
160:

Line 163: p_init_msg_list => FND_API.G_FALSE,

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

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

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

Line 223: -- FND_API.G_FALSE otherwise

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

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

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

Line 229: -- FND_API.G_FALSE otherwise

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

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

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

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

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

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

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

Line 322: -- FND_API.G_TRUE if exceeded

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

Line 323: -- FND_API.G_FALSE otherwise

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

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

370: IF (PO_LOG.d_proc) THEN
371: PO_LOG.proc_end(d_module);
372: END IF;
373:
374: IF (p_init_msg_list = FND_API.G_TRUE) THEN
375: FND_MSG_PUB.initialize;
376: END IF;
377:
378: IF (NOT FND_API.Compatible_API_Call

Line 378: IF (NOT FND_API.Compatible_API_Call

374: IF (p_init_msg_list = FND_API.G_TRUE) THEN
375: FND_MSG_PUB.initialize;
376: END IF;
377:
378: IF (NOT FND_API.Compatible_API_Call
379: ( p_current_version_number => d_api_version,
380: p_caller_version_number => p_api_version,
381: p_api_name => d_api_name,
382: p_pkg_name => d_pkg_name

Line 387: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

383: )
384: ) THEN
385:
386: d_position := 10;
387: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
388: END IF; -- not compatible_api
389:
390: d_position := 20;
391:

Line 394: p_init_msg_list => FND_API.G_FALSE,

390: d_position := 20;
391:
392: PO_PDOI_PVT.start_process
393: ( p_api_version => 1.0,
394: p_init_msg_list => FND_API.G_FALSE,
395: p_validation_level => p_validation_level,
396: p_commit => p_commit,
397: x_return_status => x_return_status,
398: p_gather_intf_tbl_stat => p_gather_intf_tbl_stat,

Line 456: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

452: ( p_pkg_name => d_pkg_name,
453: p_procedure_name => d_api_name || '.' || d_position
454: );
455:
456: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
457:
458: END catalog_upload;
459:
460:

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

468: --IN:
469: --p_api_version
470: -- API version of the program caller assumes
471: --p_init_msg_list
472: -- FND_API.G_TRUE if caller expects PDOI to initialize the message stack
473: -- maintained by FND_MSG_PUB.
474: -- FND_API.G_FALSE otherwise
475: --p_validation_level
476: -- Currently this parameter has no effect. PDOI always does full validation

Line 474: -- FND_API.G_FALSE otherwise

470: -- API version of the program caller assumes
471: --p_init_msg_list
472: -- FND_API.G_TRUE if caller expects PDOI to initialize the message stack
473: -- maintained by FND_MSG_PUB.
474: -- FND_API.G_FALSE otherwise
475: --p_validation_level
476: -- Currently this parameter has no effect. PDOI always does full validation
477: --p_commit
478: -- Whether PDOI will issue commits

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

475: --p_validation_level
476: -- Currently this parameter has no effect. PDOI always does full validation
477: --p_commit
478: -- Whether PDOI will issue commits
479: -- FND_API.G_TRUE if caller expects PDOI to commit data
480: -- FND_API.G_FALSE otherwise
481: --p_selected_batch_id
482: -- Batch id parameter. If this is specified, only the records with this batch
483: -- id will be processed.

Line 480: -- FND_API.G_FALSE otherwise

476: -- Currently this parameter has no effect. PDOI always does full validation
477: --p_commit
478: -- Whether PDOI will issue commits
479: -- FND_API.G_TRUE if caller expects PDOI to commit data
480: -- FND_API.G_FALSE otherwise
481: --p_selected_batch_id
482: -- Batch id parameter. If this is specified, only the records with this batch
483: -- id will be processed.
484: --p_document_type

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

495: --IN OUT:
496: --OUT:
497: --x_return_status
498: -- Return status of the API.
499: -- FND_API.G_RET_STS_SUCCESS if API is successful
500: -- FND_API.G_RET_STS_ERR if there are user errors
501: -- FND_API.G_RET_STS_UNEXP_ERR if unexpected error (exception) occurs
502: --End of Comments
503: ------------------------------------------------------------------------

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

496: --OUT:
497: --x_return_status
498: -- Return status of the API.
499: -- FND_API.G_RET_STS_SUCCESS if API is successful
500: -- FND_API.G_RET_STS_ERR if there are user errors
501: -- FND_API.G_RET_STS_UNEXP_ERR if unexpected error (exception) occurs
502: --End of Comments
503: ------------------------------------------------------------------------
504: PROCEDURE handle_price_tolerance_resp

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

497: --x_return_status
498: -- Return status of the API.
499: -- FND_API.G_RET_STS_SUCCESS if API is successful
500: -- FND_API.G_RET_STS_ERR if there are user errors
501: -- FND_API.G_RET_STS_UNEXP_ERR if unexpected error (exception) occurs
502: --End of Comments
503: ------------------------------------------------------------------------
504: PROCEDURE handle_price_tolerance_resp
505: ( p_api_version IN NUMBER,

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

531: IF (PO_LOG.d_proc) THEN
532: PO_LOG.proc_end(d_module);
533: END IF;
534:
535: IF (p_init_msg_list = FND_API.G_TRUE) THEN
536: FND_MSG_PUB.initialize;
537: END IF;
538:
539: IF (NOT FND_API.Compatible_API_Call

Line 539: IF (NOT FND_API.Compatible_API_Call

535: IF (p_init_msg_list = FND_API.G_TRUE) THEN
536: FND_MSG_PUB.initialize;
537: END IF;
538:
539: IF (NOT FND_API.Compatible_API_Call
540: ( p_current_version_number => d_api_version,
541: p_caller_version_number => p_api_version,
542: p_api_name => d_api_name,
543: p_pkg_name => d_pkg_name

Line 548: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

544: )
545: ) THEN
546:
547: d_position := 10;
548: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
549: END IF; -- not compatible_api
550:
551: d_position := 20;
552:

Line 555: p_init_msg_list => FND_API.G_FALSE,

551: d_position := 20;
552:
553: PO_PDOI_PVT.start_process
554: ( p_api_version => 1.0,
555: p_init_msg_list => FND_API.G_FALSE,
556: p_validation_level => p_validation_level,
557: p_commit => p_commit,
558: x_return_status => x_return_status,
559: p_gather_intf_tbl_stat => 'N',

Line 599: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

595: ( p_pkg_name => d_pkg_name,
596: p_procedure_name => d_api_name || '.' || d_position
597: );
598:
599: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
600: END handle_price_tolerance_resp;
601:
602:
603: END PO_PDOI_GRP;