DBA Data[Home] [Help]

APPS.PO_PDOI_PVT dependencies on FND_API

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

68: --IN:
69: --p_api_version
70: -- API version of the program caller assumes
71: --p_init_msg_list
72: -- FND_API.G_TRUE if caller expects PDOI to initialize the message stack
73: -- maintained by FND_MSG_PUB.
74: -- FND_API.G_FALSE otherwise
75: --p_validation_level
76: -- Currently this parameter has no effect. PDOI always does full validation

Line 74: -- FND_API.G_FALSE otherwise

70: -- API version of the program caller assumes
71: --p_init_msg_list
72: -- FND_API.G_TRUE if caller expects PDOI to initialize the message stack
73: -- maintained by FND_MSG_PUB.
74: -- FND_API.G_FALSE otherwise
75: --p_validation_level
76: -- Currently this parameter has no effect. PDOI always does full validation
77: --p_commit
78: -- Whether PDOI will issue commits

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

75: --p_validation_level
76: -- Currently this parameter has no effect. PDOI always does full validation
77: --p_commit
78: -- Whether PDOI will issue commits
79: -- FND_API.G_TRUE if caller expects PDOI to commit data
80: -- FND_API.G_FALSE otherwise
81: --p_gather_intf_tbl_stat
82: -- Whether PDOI gather table statistics before processing.
83: -- 'Y' if statistics should be gathered. Consider this if a large

Line 80: -- FND_API.G_FALSE otherwise

76: -- Currently this parameter has no effect. PDOI always does full validation
77: --p_commit
78: -- Whether PDOI will issue commits
79: -- FND_API.G_TRUE if caller expects PDOI to commit data
80: -- FND_API.G_FALSE otherwise
81: --p_gather_intf_tbl_stat
82: -- Whether PDOI gather table statistics before processing.
83: -- 'Y' if statistics should be gathered. Consider this if a large
84: -- number of records are being inserted into the interface table

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

158: --IN OUT:
159: --OUT:
160: --x_return_status
161: -- Return status of the API.
162: -- FND_API.G_RET_STS_SUCCESS if API is successful
163: -- FND_API.G_RET_STS_ERR if there are user errors
164: -- FND_API.G_RET_STS_UNEXP_ERR if unexpected error (exception) occurs
165: --x_processed_lines_count
166: -- ** Populated for catalog upload only **

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

159: --OUT:
160: --x_return_status
161: -- Return status of the API.
162: -- FND_API.G_RET_STS_SUCCESS if API is successful
163: -- FND_API.G_RET_STS_ERR if there are user errors
164: -- FND_API.G_RET_STS_UNEXP_ERR if unexpected error (exception) occurs
165: --x_processed_lines_count
166: -- ** Populated for catalog upload only **
167: -- Number of lines being processed

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

160: --x_return_status
161: -- Return status of the API.
162: -- FND_API.G_RET_STS_SUCCESS if API is successful
163: -- FND_API.G_RET_STS_ERR if there are user errors
164: -- FND_API.G_RET_STS_UNEXP_ERR if unexpected error (exception) occurs
165: --x_processed_lines_count
166: -- ** Populated for catalog upload only **
167: -- Number of lines being processed
168: --x_rejected_lines_count

Line 174: -- FND_API.G_TRUE if exceeded

170: -- Number of lines being rejected
171: --x_err_tolerance_exceeded
172: -- ** Populated for catalog upload only **
173: -- indicates whether error threshold is exceeded
174: -- FND_API.G_TRUE if exceeded
175: -- FND_API.G_FALSE otherwise
176: --End of Comments
177: ------------------------------------------------------------------------
178: PROCEDURE start_process

Line 175: -- FND_API.G_FALSE otherwise

171: --x_err_tolerance_exceeded
172: -- ** Populated for catalog upload only **
173: -- indicates whether error threshold is exceeded
174: -- FND_API.G_TRUE if exceeded
175: -- FND_API.G_FALSE otherwise
176: --End of Comments
177: ------------------------------------------------------------------------
178: PROCEDURE start_process
179: ( p_api_version IN NUMBER,

Line 222: x_return_status := FND_API.G_RET_STS_SUCCESS;

218: l_validation_level VARCHAR2(10);
219: l_org_id PO_HEADERS_ALL.org_id%TYPE;
220: BEGIN
221:
222: x_return_status := FND_API.G_RET_STS_SUCCESS;
223:
224: d_position := 0;
225:
226: IF (PO_LOG.d_proc) THEN

Line 261: IF (NOT FND_API.Compatible_API_Call

257:
258: -- put down information about how to get logging messages
259: log_audsid;
260:
261: IF (NOT FND_API.Compatible_API_Call
262: ( p_current_version_number => d_api_version
263: , p_caller_version_number => p_api_version
264: , p_api_name => d_api_name
265: , p_pkg_name => d_pkg_name

Line 269: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

265: , p_pkg_name => d_pkg_name
266: )
267: ) THEN
268: d_position := 10;
269: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
270: END IF; -- not compatible_api
271:
272: IF (p_init_msg_list = FND_API.G_TRUE) THEN
273: FND_MSG_PUB.initialize;

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

268: d_position := 10;
269: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
270: END IF; -- not compatible_api
271:
272: IF (p_init_msg_list = FND_API.G_TRUE) THEN
273: FND_MSG_PUB.initialize;
274: END IF;
275:
276: d_position := 20;

Line 340: EXIT WHEN l_all_headers_processed = FND_API.G_TRUE;

336: ( x_all_headers_processed => l_all_headers_processed
337: );
338:
339: d_position := 100;
340: EXIT WHEN l_all_headers_processed = FND_API.G_TRUE;
341:
342: d_position := 110;
343: PO_PDOI_MAINPROC_PVT.process; -- main processing
344:

Line 382: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

378: ( p_pkg_name => d_pkg_name,
379: p_procedure_name => d_api_name || '.' || d_position
380: );
381:
382: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
383:
384: PO_TIMING_UTL.stop_time (PO_PDOI_CONSTANTS.g_T_PDOI_ALL);
385:
386: wrap_up;

Line 546: PO_PDOI_PARAMS.g_original_doc_processed := FND_API.G_FALSE;

542: END IF;
543:
544: d_position := 50;
545: -- initializing tracking variables for PDOI
546: PO_PDOI_PARAMS.g_original_doc_processed := FND_API.G_FALSE;
547: PO_PDOI_PARAMS.g_current_round_num := 0;
548:
549: -- setup g_out
550: PO_PDOI_PARAMS.g_out.processed_lines_count := 0;

Line 552: PO_PDOI_PARAMS.g_out.err_tolerance_exceeded := FND_API.G_FALSE;

548:
549: -- setup g_out
550: PO_PDOI_PARAMS.g_out.processed_lines_count := 0;
551: PO_PDOI_PARAMS.g_out.rejected_lines_count := 0;
552: PO_PDOI_PARAMS.g_out.err_tolerance_exceeded := FND_API.G_FALSE;
553:
554: IF (PO_LOG.d_proc) THEN
555: PO_LOG.proc_end (d_module);
556: END IF;

Line 916: PO_PDOI_PARAMS.g_product.wip_installed := FND_API.G_TRUE;

912: PO_LOG.proc_begin (d_module);
913: END IF;
914:
915: IF (PO_CORE_S.get_product_install_status('WIP') = 'I') THEN
916: PO_PDOI_PARAMS.g_product.wip_installed := FND_API.G_TRUE;
917: ELSE
918: PO_PDOI_PARAMS.g_product.wip_installed := FND_API.G_FALSE;
919: END IF;
920:

Line 918: PO_PDOI_PARAMS.g_product.wip_installed := FND_API.G_FALSE;

914:
915: IF (PO_CORE_S.get_product_install_status('WIP') = 'I') THEN
916: PO_PDOI_PARAMS.g_product.wip_installed := FND_API.G_TRUE;
917: ELSE
918: PO_PDOI_PARAMS.g_product.wip_installed := FND_API.G_FALSE;
919: END IF;
920:
921: IF (PO_CORE_S.get_product_install_status('INV') = 'I') THEN
922: PO_PDOI_PARAMS.g_product.inv_installed := FND_API.G_TRUE;

Line 922: PO_PDOI_PARAMS.g_product.inv_installed := FND_API.G_TRUE;

918: PO_PDOI_PARAMS.g_product.wip_installed := FND_API.G_FALSE;
919: END IF;
920:
921: IF (PO_CORE_S.get_product_install_status('INV') = 'I') THEN
922: PO_PDOI_PARAMS.g_product.inv_installed := FND_API.G_TRUE;
923: ELSE
924: PO_PDOI_PARAMS.g_product.inv_installed := FND_API.G_FALSE;
925: END IF;
926:

Line 924: PO_PDOI_PARAMS.g_product.inv_installed := FND_API.G_FALSE;

920:
921: IF (PO_CORE_S.get_product_install_status('INV') = 'I') THEN
922: PO_PDOI_PARAMS.g_product.inv_installed := FND_API.G_TRUE;
923: ELSE
924: PO_PDOI_PARAMS.g_product.inv_installed := FND_API.G_FALSE;
925: END IF;
926:
927: IF (PA_PO_INTEGRATION.is_pjc_11i10_enabled <> 'N') THEN
928: PO_PDOI_PARAMS.g_product.project_11510_installed := FND_API.G_TRUE;

Line 928: PO_PDOI_PARAMS.g_product.project_11510_installed := FND_API.G_TRUE;

924: PO_PDOI_PARAMS.g_product.inv_installed := FND_API.G_FALSE;
925: END IF;
926:
927: IF (PA_PO_INTEGRATION.is_pjc_11i10_enabled <> 'N') THEN
928: PO_PDOI_PARAMS.g_product.project_11510_installed := FND_API.G_TRUE;
929: ELSE
930: PO_PDOI_PARAMS.g_product.project_11510_installed := FND_API.G_FALSE;
931: END IF;
932:

Line 930: PO_PDOI_PARAMS.g_product.project_11510_installed := FND_API.G_FALSE;

926:
927: IF (PA_PO_INTEGRATION.is_pjc_11i10_enabled <> 'N') THEN
928: PO_PDOI_PARAMS.g_product.project_11510_installed := FND_API.G_TRUE;
929: ELSE
930: PO_PDOI_PARAMS.g_product.project_11510_installed := FND_API.G_FALSE;
931: END IF;
932:
933: IF (PO_CORE_S.get_product_install_status('PA') = 'I') THEN
934: PO_PDOI_PARAMS.g_product.pa_installed := FND_API.G_TRUE;

Line 934: PO_PDOI_PARAMS.g_product.pa_installed := FND_API.G_TRUE;

930: PO_PDOI_PARAMS.g_product.project_11510_installed := FND_API.G_FALSE;
931: END IF;
932:
933: IF (PO_CORE_S.get_product_install_status('PA') = 'I') THEN
934: PO_PDOI_PARAMS.g_product.pa_installed := FND_API.G_TRUE;
935: ELSE
936: PO_PDOI_PARAMS.g_product.pa_installed := FND_API.G_FALSE;
937: END IF;
938:

Line 936: PO_PDOI_PARAMS.g_product.pa_installed := FND_API.G_FALSE;

932:
933: IF (PO_CORE_S.get_product_install_status('PA') = 'I') THEN
934: PO_PDOI_PARAMS.g_product.pa_installed := FND_API.G_TRUE;
935: ELSE
936: PO_PDOI_PARAMS.g_product.pa_installed := FND_API.G_FALSE;
937: END IF;
938:
939: IF (GMS_PO_API_GRP.gms_enabled) THEN
940: PO_PDOI_PARAMS.g_product.gms_enabled := FND_API.G_TRUE;

Line 940: PO_PDOI_PARAMS.g_product.gms_enabled := FND_API.G_TRUE;

936: PO_PDOI_PARAMS.g_product.pa_installed := FND_API.G_FALSE;
937: END IF;
938:
939: IF (GMS_PO_API_GRP.gms_enabled) THEN
940: PO_PDOI_PARAMS.g_product.gms_enabled := FND_API.G_TRUE;
941: ELSE
942: PO_PDOI_PARAMS.g_product.gms_enabled := FND_API.G_FALSE;
943: END IF;
944:

Line 942: PO_PDOI_PARAMS.g_product.gms_enabled := FND_API.G_FALSE;

938:
939: IF (GMS_PO_API_GRP.gms_enabled) THEN
940: PO_PDOI_PARAMS.g_product.gms_enabled := FND_API.G_TRUE;
941: ELSE
942: PO_PDOI_PARAMS.g_product.gms_enabled := FND_API.G_FALSE;
943: END IF;
944:
945: IF (PA_PO_INTEGRATION.is_pjc_po_cwk_intg_enab <> 'N') THEN
946: PO_PDOI_PARAMS.g_product.project_cwk_installed := FND_API.G_TRUE;

Line 946: PO_PDOI_PARAMS.g_product.project_cwk_installed := FND_API.G_TRUE;

942: PO_PDOI_PARAMS.g_product.gms_enabled := FND_API.G_FALSE;
943: END IF;
944:
945: IF (PA_PO_INTEGRATION.is_pjc_po_cwk_intg_enab <> 'N') THEN
946: PO_PDOI_PARAMS.g_product.project_cwk_installed := FND_API.G_TRUE;
947: ELSE
948: PO_PDOI_PARAMS.g_product.project_cwk_installed := FND_API.G_FALSE;
949: END IF;
950:

Line 948: PO_PDOI_PARAMS.g_product.project_cwk_installed := FND_API.G_FALSE;

944:
945: IF (PA_PO_INTEGRATION.is_pjc_po_cwk_intg_enab <> 'N') THEN
946: PO_PDOI_PARAMS.g_product.project_cwk_installed := FND_API.G_TRUE;
947: ELSE
948: PO_PDOI_PARAMS.g_product.project_cwk_installed := FND_API.G_FALSE;
949: END IF;
950:
951: IF (PO_LOG.d_stmt) THEN
952: PO_LOG.stmt (d_module, d_position, 'wip_installed', PO_PDOI_PARAMS.g_product.wip_installed);

Line 1216: ( p_cleanup => FND_API.G_TRUE,

1212:
1213: d_position := 20;
1214:
1215: PO_TIMING_UTL.get_formatted_timing_info
1216: ( p_cleanup => FND_API.G_TRUE,
1217: x_timing_info => l_timing_info_tbl
1218: );
1219:
1220: d_position := 30;