DBA Data[Home] [Help]

APPS.OKC_REP_UTIL_PVT dependencies on OKC_REP_IMP_ERRORS_T

Line 2781: --Function : Populate the okc_rep_imp_errors_t table with error messages

2777:
2778: -- Start of comments
2779: --API name : populate_import_errors
2780: --Type : Private.
2781: --Function : Populate the okc_rep_imp_errors_t table with error messages
2782: --Pre-reqs : None
2783: --Parameters :
2784: --IN : p_api_version IN NUMBER Required
2785: -- : p_init_msg_list IN VARCHAR2 Optional

Line 2828: SELECT OKC_REP_IMP_ERRORS_T_S.NEXTVAL

2824:
2825: l_imp_error_id NUMBER;
2826:
2827: CURSOR ERROR_ID_CSR IS
2828: SELECT OKC_REP_IMP_ERRORS_T_S.NEXTVAL
2829: FROM DUAL;
2830:
2831: BEGIN
2832:

Line 2882: INSERT INTO OKC_REP_IMP_ERRORS_T(

2878: fnd_log.string(FND_LOG.LEVEL_EXCEPTION, g_module || l_api_name,
2879: 'l_imp_error_id: '||l_imp_error_id);
2880: END IF;
2881:
2882: INSERT INTO OKC_REP_IMP_ERRORS_T(
2883: IMP_ERROR_ID,
2884: IMP_CONTRACT_ID,
2885: ERROR_OBJECT_TYPE,
2886: ERROR_OBJECT_ID,

Line 6391: -- (3) Insert an error message in okc_rep_imp_errors_t

6387: --Type : Private.
6388: --Function : (1) Delete the imported contract and its parties
6389: -- by calling okc_rep_contract_process_pvt.delete_contract
6390: -- (2) Set the contract's valid_flag to 'N' in okc_rep_imp_contracts_t
6391: -- (3) Insert an error message in okc_rep_imp_errors_t
6392: -- This procedure does the cleanup due to an error adding attachments
6393: -- in the Java layer during repository import
6394: --Pre-reqs : None
6395: --Parameters :

Line 6520: 'Inserted error into okc_rep_imp_errors_t');

6516: x_msg_data => x_msg_data);
6517:
6518: IF ( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
6519: FND_LOG.STRING( FND_LOG.LEVEL_STATEMENT,G_MODULE||l_api_name,
6520: 'Inserted error into okc_rep_imp_errors_t');
6521: END IF;
6522:
6523:
6524: IF(p_commit = FND_API.G_TRUE) THEN

Line 6746: FROM OKC_REP_IMP_ERRORS_T

6742:
6743: CURSOR IMP_ERRORS_CSR IS
6744: SELECT
6745: ERROR_MESSAGE
6746: FROM OKC_REP_IMP_ERRORS_T
6747: WHERE IMP_CONTRACT_ID = p_imp_contract_id;
6748:
6749: l_imp_errors_rec IMP_ERRORS_CSR%ROWTYPE;
6750: