DBA Data[Home] [Help]

APPS.OKC_XPRT_CZ_INT_PVT dependencies on CZ_DB_LOGS

Line 144: -- error details in cz_db_logs

140:
141: -- Add Error Handling routine to check if all the records were successfully imported
142: -- check if for the x_run_id all the records in the import tables have status = 'OK'
143: -- also check the cz_xfr_run_results table for the entity
144: -- error details in cz_db_logs
145:
146:
147: -- Standard call to get message count and if count is 1, get message info.
148: FND_MSG_PUB.Count_And_Get(p_encoded=>'F', p_count => x_msg_count, p_data => x_msg_data );

Line 615: FROM cz_db_logs

611: CURSOR csr_db_logs(p_run_id IN NUMBER) IS
612: SELECT logtime,
613: caller,
614: message
615: FROM cz_db_logs
616: WHERE run_id = p_run_id
617: ORDER BY logtime;
618:
619: BEGIN

Line 670: from cz_db_logs

666: -- Call the CZ Generic Import API
667: /*
668: CZ will return Success for generate_logic if there were warnings
669: In case of warnings x_run_id will NOT be 0 and x_msg_data will have data
670: from cz_db_logs
671: */
672: CZ_CONTRACTS_API_GRP.generate_logic
673: (
674: p_api_version => l_api_version,

Line 1851: FROM cz_db_logs

1847: CURSOR csr_db_logs(p_run_id IN NUMBER) IS
1848: SELECT logtime,
1849: caller,
1850: message
1851: FROM cz_db_logs
1852: WHERE run_id = p_run_id
1853: ORDER BY logtime;
1854:
1855: BEGIN

Line 1906: from cz_db_logs

1902: -- Call the CZ Generic Import API
1903: /*
1904: CZ will return Success for publish_model if there were warnings
1905: In case of warnings x_run_id will NOT be 0 and x_msg_data will have data
1906: from cz_db_logs
1907: */
1908: CZ_CONTRACTS_API_GRP.publish_model
1909: (
1910: p_api_version => l_api_version,