DBA Data[Home] [Help]

APPS.OKS_BILL_UTIL_PUB dependencies on OKC_CONTRACT_ITEM_PUB

Line 1617: l_cimv_rec_in OKC_CONTRACT_ITEM_PUB.cimv_rec_type;

1613: x_status OUT NOCOPY VARCHAR2) IS
1614: l_api_version NUMBER := 1.0;
1615: l_msg_count NUMBER;
1616: l_msg_data VARCHAR2(2000);
1617: l_cimv_rec_in OKC_CONTRACT_ITEM_PUB.cimv_rec_type;
1618: l_cimv_rec_out OKC_CONTRACT_ITEM_PUB.cimv_rec_type;
1619: cursor item_cur is
1620: select id
1621: from okc_k_items_v

Line 1618: l_cimv_rec_out OKC_CONTRACT_ITEM_PUB.cimv_rec_type;

1614: l_api_version NUMBER := 1.0;
1615: l_msg_count NUMBER;
1616: l_msg_data VARCHAR2(2000);
1617: l_cimv_rec_in OKC_CONTRACT_ITEM_PUB.cimv_rec_type;
1618: l_cimv_rec_out OKC_CONTRACT_ITEM_PUB.cimv_rec_type;
1619: cursor item_cur is
1620: select id
1621: from okc_k_items_v
1622: where cle_id = p_cle_id;

Line 1628: OKC_CONTRACT_ITEM_PUB.update_contract_item(

1624: open item_cur;
1625: fetch item_cur into l_cimv_rec_in.id;
1626: close item_cur;
1627: l_cimv_rec_in.object1_id1 := p_item_id;
1628: OKC_CONTRACT_ITEM_PUB.update_contract_item(
1629: p_api_version => l_api_version,
1630: x_return_status => x_status,
1631: x_msg_count => l_msg_count,
1632: x_msg_data => l_msg_data,