DBA Data[Home] [Help]

APPS.OKL_COPY_CONTRACT_PVT dependencies on OKC_COPY_CONTRACT_PUB

Line 1760: -- Notes : just calls OKC_COPY_CONTRACT_PUB.copy_components.

1756: -- published
1757: -- Business Rules :
1758: -- Parameters :
1759: -- Version : 1.0
1760: -- Notes : just calls OKC_COPY_CONTRACT_PUB.copy_components.
1761: -- End of comments
1762: --------------------------------------------------------------------------------
1763: Procedure Catchup_okl_contract_line(
1764: p_api_version IN NUMBER,

Line 1859: RETURN(OKC_COPY_CONTRACT_PUB.is_copy_allowed(p_chr_id,p_sts_code));

1855: p_api_type => g_api_type);
1856: End CatchUp_okl_Contract_Line;
1857: FUNCTION is_copy_allowed(p_chr_id IN NUMBER,p_sts_code IN VARCHAR2 DEFAULT NULL) RETURN BOOLEAN IS
1858: BEGIN
1859: RETURN(OKC_COPY_CONTRACT_PUB.is_copy_allowed(p_chr_id,p_sts_code));
1860: END is_copy_allowed;
1861: -------
1862: FUNCTION is_subcontract_allowed(p_chr_id IN NUMBER,p_sts_code IN VARCHAR2) RETURN BOOLEAN IS
1863: BEGIN

Line 1864: RETURN(OKC_COPY_CONTRACT_PUB.is_subcontract_allowed(p_chr_id,p_sts_code));

1860: END is_copy_allowed;
1861: -------
1862: FUNCTION is_subcontract_allowed(p_chr_id IN NUMBER,p_sts_code IN VARCHAR2) RETURN BOOLEAN IS
1863: BEGIN
1864: RETURN(OKC_COPY_CONTRACT_PUB.is_subcontract_allowed(p_chr_id,p_sts_code));
1865: END is_subcontract_allowed;
1866: -----
1867: FUNCTION update_target_contract(p_chr_id IN NUMBER) RETURN BOOLEAN IS
1868: BEGIN

Line 1869: RETURN(OKC_COPY_CONTRACT_PUB.update_target_contract(p_chr_id));

1865: END is_subcontract_allowed;
1866: -----
1867: FUNCTION update_target_contract(p_chr_id IN NUMBER) RETURN BOOLEAN IS
1868: BEGIN
1869: RETURN(OKC_COPY_CONTRACT_PUB.update_target_contract(p_chr_id));
1870: END update_target_contract;
1871: -----
1872: PROCEDURE derive_line_style(p_old_lse_id IN NUMBER,
1873: p_old_jtot_code IN VARCHAR2,

Line 1896: -- Notes : just calls OKC_COPY_CONTRACT_PUB.copy_components.

1892: -- published in OKL_COPY_CONTRACTS_PUB
1893: -- Business Rules :
1894: -- Parameters :
1895: -- Version : 1.0
1896: -- Notes : just calls OKC_COPY_CONTRACT_PUB.copy_components.
1897: -- End of comments
1898: --------------------------------------------------------------------------------
1899: PROCEDURE copy_components(
1900: p_api_version IN NUMBER,

Line 1944: OKC_COPY_CONTRACT_PUB.copy_components(

1940:
1941: l_components_tbl := migrate_components_tbl(p_components_tbl);
1942: l_lines_tbl := migrate_lines_tbl(p_lines_tbl);
1943: --Call OKC_CONTRACT_PUB.copy_components
1944: OKC_COPY_CONTRACT_PUB.copy_components(
1945: p_api_version => p_api_version,
1946: p_init_msg_list => p_init_msg_list,
1947: x_return_status => l_return_status,
1948: x_msg_count => x_msg_count,

Line 2979: --Call OKC_COPY_CONTRACT_PUB.Copy_Contract

2975: RAISE OKL_API.G_EXCEPTION_UNEXPECTED_ERROR;
2976: ELSIF (l_return_status = OKL_API.G_RET_STS_ERROR) THEN
2977: RAISE OKL_API.G_EXCEPTION_ERROR;
2978: END IF;
2979: --Call OKC_COPY_CONTRACT_PUB.Copy_Contract
2980: --dbms_output.put_line('before okc_copy p_chr_id '||to_char(p_chr_id));
2981: OKC_COPY_CONTRACT_PUB.copy_contract(
2982: p_api_version => p_api_version,
2983: p_init_msg_list => p_init_msg_list,

Line 2981: OKC_COPY_CONTRACT_PUB.copy_contract(

2977: RAISE OKL_API.G_EXCEPTION_ERROR;
2978: END IF;
2979: --Call OKC_COPY_CONTRACT_PUB.Copy_Contract
2980: --dbms_output.put_line('before okc_copy p_chr_id '||to_char(p_chr_id));
2981: OKC_COPY_CONTRACT_PUB.copy_contract(
2982: p_api_version => p_api_version,
2983: p_init_msg_list => p_init_msg_list,
2984: x_return_status => l_return_status,
2985: x_msg_count => x_msg_count,

Line 3182: --Call OKC_COPY_CONTRACT_PUB.Copy_Components

3178:
3179: IF (l_return_status <> OKC_API.G_RET_STS_SUCCESS) THEN
3180: RAISE OKL_API.G_EXCEPTION_ERROR;
3181: END IF;
3182: --Call OKC_COPY_CONTRACT_PUB.Copy_Components
3183: -- do not do this again as this might already be done as part of OKC_COPY_CONTRACT
3184: /*
3185: OKC_COPY_CONTRACT_PUB.Copy_Components(
3186: p_api_version => p_api_version,

Line 3185: OKC_COPY_CONTRACT_PUB.Copy_Components(

3181: END IF;
3182: --Call OKC_COPY_CONTRACT_PUB.Copy_Components
3183: -- do not do this again as this might already be done as part of OKC_COPY_CONTRACT
3184: /*
3185: OKC_COPY_CONTRACT_PUB.Copy_Components(
3186: p_api_version => p_api_version,
3187: p_init_msg_list => p_init_msg_list,
3188: x_return_status => l_return_status,
3189: x_msg_count => x_msg_count,

Line 3482: --Call OKC_COPY_CONTRACT_PUB.copy_contract_lines

3478: RAISE OKL_API.G_EXCEPTION_UNEXPECTED_ERROR;
3479: ELSIF (l_return_status = OKL_API.G_RET_STS_ERROR) THEN
3480: RAISE OKL_API.G_EXCEPTION_ERROR;
3481: END IF;
3482: --Call OKC_COPY_CONTRACT_PUB.copy_contract_lines
3483: OKC_COPY_CONTRACT_PUB.copy_contract_lines(p_api_version => P_api_version,
3484: p_init_msg_list => p_init_msg_list,
3485: x_return_status => l_return_status,
3486: x_msg_count => x_msg_count,

Line 3483: OKC_COPY_CONTRACT_PUB.copy_contract_lines(p_api_version => P_api_version,

3479: ELSIF (l_return_status = OKL_API.G_RET_STS_ERROR) THEN
3480: RAISE OKL_API.G_EXCEPTION_ERROR;
3481: END IF;
3482: --Call OKC_COPY_CONTRACT_PUB.copy_contract_lines
3483: OKC_COPY_CONTRACT_PUB.copy_contract_lines(p_api_version => P_api_version,
3484: p_init_msg_list => p_init_msg_list,
3485: x_return_status => l_return_status,
3486: x_msg_count => x_msg_count,
3487: x_msg_data => x_msg_data,

Line 3812: --call OKC_COPY_CONTRACT_PUB.copy_rules

3808: RAISE OKL_API.G_EXCEPTION_UNEXPECTED_ERROR;
3809: ELSIF (l_return_status = OKL_API.G_RET_STS_ERROR) THEN
3810: RAISE OKL_API.G_EXCEPTION_ERROR;
3811: END IF;
3812: --call OKC_COPY_CONTRACT_PUB.copy_rules
3813: OKC_COPY_CONTRACT_PUB.copy_rules(
3814: p_api_version => p_api_version,
3815: p_init_msg_list => p_init_msg_list,
3816: x_return_status => x_return_status,

Line 3813: OKC_COPY_CONTRACT_PUB.copy_rules(

3809: ELSIF (l_return_status = OKL_API.G_RET_STS_ERROR) THEN
3810: RAISE OKL_API.G_EXCEPTION_ERROR;
3811: END IF;
3812: --call OKC_COPY_CONTRACT_PUB.copy_rules
3813: OKC_COPY_CONTRACT_PUB.copy_rules(
3814: p_api_version => p_api_version,
3815: p_init_msg_list => p_init_msg_list,
3816: x_return_status => x_return_status,
3817: x_msg_count => x_msg_count,

Line 3934: OKC_COPY_CONTRACT_PUB.copy_party_roles(

3930: ELSIF (l_return_status = OKL_API.G_RET_STS_ERROR) THEN
3931: RAISE OKL_API.G_EXCEPTION_ERROR;
3932: END IF;
3933:
3934: OKC_COPY_CONTRACT_PUB.copy_party_roles(
3935: p_api_version => p_api_version,
3936: p_init_msg_list => p_init_msg_list,
3937: x_return_status => x_return_status,
3938: x_msg_count => x_msg_count,

Line 4085: OKC_COPY_CONTRACT_PUB.copy_articles(

4081: ELSIF (l_return_status = OKL_API.G_RET_STS_ERROR) THEN
4082: RAISE OKL_API.G_EXCEPTION_ERROR;
4083: END IF;
4084:
4085: OKC_COPY_CONTRACT_PUB.copy_articles(
4086: p_api_version => p_api_version,
4087: p_init_msg_list => p_init_msg_list,
4088: x_return_status => x_return_status,
4089: x_msg_count => x_msg_count,

Line 4174: OKC_COPY_CONTRACT_PUB.copy_latest_articles(

4170: ELSIF (l_return_status = OKL_API.G_RET_STS_ERROR) THEN
4171: RAISE OKL_API.G_EXCEPTION_ERROR;
4172: END IF;
4173:
4174: OKC_COPY_CONTRACT_PUB.copy_latest_articles(
4175: p_api_version => p_api_version,
4176: p_init_msg_list => p_init_msg_list,
4177: x_return_status => x_return_status,
4178: x_msg_count => x_msg_count,