DBA Data[Home] [Help]

APPS.OKS_RENEW_CONTRACT_PVT dependencies on OKC_CONDITION_HEADERS_B

Line 794: from okc_condition_headers_b

790: l_error_text VARCHAR2(512);
791:
792: cursor c_condition_headers(cp_chr_id in number) is
793: select id, date_active, date_inactive
794: from okc_condition_headers_b
795: where dnz_chr_id = cp_chr_id;
796:
797: type cond_rec is record(
798: id number,

Line 845: update okc_condition_headers_b set

841: end if;
842: end loop;
843:
844: forall i in l_id_tbl.first..l_id_tbl.last
845: update okc_condition_headers_b set
846: date_active = p_new_start_date,
847: date_inactive = l_date_inactive_tbl(i),
848: object_version_number = (object_version_number +1)
849: where id = l_id_tbl(i);