DBA Data[Home] [Help]

APPS.PO_PDOI_PVT dependencies on FND_API

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

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

Line 73: -- FND_API.G_FALSE otherwise

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

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

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

Line 79: -- FND_API.G_FALSE otherwise

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

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

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

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

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

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

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

Line 173: -- FND_API.G_TRUE if exceeded

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

Line 174: -- FND_API.G_FALSE otherwise

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

Line 220: x_return_status := FND_API.G_RET_STS_SUCCESS;

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

Line 258: IF (NOT FND_API.Compatible_API_Call

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

Line 266: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

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

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

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

Line 335: EXIT WHEN l_all_headers_processed = FND_API.G_TRUE;

331: ( x_all_headers_processed => l_all_headers_processed
332: );
333:
334: d_position := 100;
335: EXIT WHEN l_all_headers_processed = FND_API.G_TRUE;
336:
337: d_position := 110;
338: PO_PDOI_MAINPROC_PVT.process; -- main processing
339:

Line 377: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

373: ( p_pkg_name => d_pkg_name,
374: p_procedure_name => d_api_name || '.' || d_position
375: );
376:
377: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
378:
379: PO_TIMING_UTL.stop_time (PO_PDOI_CONSTANTS.g_T_PDOI_ALL);
380:
381: wrap_up;

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

535: END IF;
536:
537: d_position := 50;
538: -- initializing tracking variables for PDOI
539: PO_PDOI_PARAMS.g_original_doc_processed := FND_API.G_FALSE;
540: PO_PDOI_PARAMS.g_current_round_num := 0;
541:
542: -- setup g_out
543: PO_PDOI_PARAMS.g_out.processed_lines_count := 0;

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

541:
542: -- setup g_out
543: PO_PDOI_PARAMS.g_out.processed_lines_count := 0;
544: PO_PDOI_PARAMS.g_out.rejected_lines_count := 0;
545: PO_PDOI_PARAMS.g_out.err_tolerance_exceeded := FND_API.G_FALSE;
546:
547: IF (PO_LOG.d_proc) THEN
548: PO_LOG.proc_end (d_module);
549: END IF;

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

905: PO_LOG.proc_begin (d_module);
906: END IF;
907:
908: IF (PO_CORE_S.get_product_install_status('WIP') = 'I') THEN
909: PO_PDOI_PARAMS.g_product.wip_installed := FND_API.G_TRUE;
910: ELSE
911: PO_PDOI_PARAMS.g_product.wip_installed := FND_API.G_FALSE;
912: END IF;
913:

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

907:
908: IF (PO_CORE_S.get_product_install_status('WIP') = 'I') THEN
909: PO_PDOI_PARAMS.g_product.wip_installed := FND_API.G_TRUE;
910: ELSE
911: PO_PDOI_PARAMS.g_product.wip_installed := FND_API.G_FALSE;
912: END IF;
913:
914: IF (PO_CORE_S.get_product_install_status('INV') = 'I') THEN
915: PO_PDOI_PARAMS.g_product.inv_installed := FND_API.G_TRUE;

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

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

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

913:
914: IF (PO_CORE_S.get_product_install_status('INV') = 'I') THEN
915: PO_PDOI_PARAMS.g_product.inv_installed := FND_API.G_TRUE;
916: ELSE
917: PO_PDOI_PARAMS.g_product.inv_installed := FND_API.G_FALSE;
918: END IF;
919:
920: IF (PA_PO_INTEGRATION.is_pjc_11i10_enabled <> 'N') THEN
921: PO_PDOI_PARAMS.g_product.project_11510_installed := FND_API.G_TRUE;

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

917: PO_PDOI_PARAMS.g_product.inv_installed := FND_API.G_FALSE;
918: END IF;
919:
920: IF (PA_PO_INTEGRATION.is_pjc_11i10_enabled <> 'N') THEN
921: PO_PDOI_PARAMS.g_product.project_11510_installed := FND_API.G_TRUE;
922: ELSE
923: PO_PDOI_PARAMS.g_product.project_11510_installed := FND_API.G_FALSE;
924: END IF;
925:

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

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

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

923: PO_PDOI_PARAMS.g_product.project_11510_installed := FND_API.G_FALSE;
924: END IF;
925:
926: IF (PO_CORE_S.get_product_install_status('PA') = 'I') THEN
927: PO_PDOI_PARAMS.g_product.pa_installed := FND_API.G_TRUE;
928: ELSE
929: PO_PDOI_PARAMS.g_product.pa_installed := FND_API.G_FALSE;
930: END IF;
931:

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

925:
926: IF (PO_CORE_S.get_product_install_status('PA') = 'I') THEN
927: PO_PDOI_PARAMS.g_product.pa_installed := FND_API.G_TRUE;
928: ELSE
929: PO_PDOI_PARAMS.g_product.pa_installed := FND_API.G_FALSE;
930: END IF;
931:
932: IF (GMS_PO_API_GRP.gms_enabled) THEN
933: PO_PDOI_PARAMS.g_product.gms_enabled := FND_API.G_TRUE;

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

929: PO_PDOI_PARAMS.g_product.pa_installed := FND_API.G_FALSE;
930: END IF;
931:
932: IF (GMS_PO_API_GRP.gms_enabled) THEN
933: PO_PDOI_PARAMS.g_product.gms_enabled := FND_API.G_TRUE;
934: ELSE
935: PO_PDOI_PARAMS.g_product.gms_enabled := FND_API.G_FALSE;
936: END IF;
937:

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

931:
932: IF (GMS_PO_API_GRP.gms_enabled) THEN
933: PO_PDOI_PARAMS.g_product.gms_enabled := FND_API.G_TRUE;
934: ELSE
935: PO_PDOI_PARAMS.g_product.gms_enabled := FND_API.G_FALSE;
936: END IF;
937:
938: IF (PA_PO_INTEGRATION.is_pjc_po_cwk_intg_enab <> 'N') THEN
939: PO_PDOI_PARAMS.g_product.project_cwk_installed := FND_API.G_TRUE;

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

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

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

937:
938: IF (PA_PO_INTEGRATION.is_pjc_po_cwk_intg_enab <> 'N') THEN
939: PO_PDOI_PARAMS.g_product.project_cwk_installed := FND_API.G_TRUE;
940: ELSE
941: PO_PDOI_PARAMS.g_product.project_cwk_installed := FND_API.G_FALSE;
942: END IF;
943:
944: IF (PO_LOG.d_stmt) THEN
945: PO_LOG.stmt (d_module, d_position, 'wip_installed', PO_PDOI_PARAMS.g_product.wip_installed);

Line 1209: ( p_cleanup => FND_API.G_TRUE,

1205:
1206: d_position := 20;
1207:
1208: PO_TIMING_UTL.get_formatted_timing_info
1209: ( p_cleanup => FND_API.G_TRUE,
1210: x_timing_info => l_timing_info_tbl
1211: );
1212:
1213: d_position := 30;