DBA Data[Home] [Help]

APPS.OKL_IRK_PVT dependencies on OKL_UTIL

Line 535: x_return_status := Okl_Util.check_from_to_date_range(trunc(sysdate), p_date_from ); --Fix for bug 3924176

531:
532:
533: ELSIF(p_object_version_number < 2 ) THEN
534:
535: x_return_status := Okl_Util.check_from_to_date_range(trunc(sysdate), p_date_from ); --Fix for bug 3924176
536: -- store the highest degree of error
537: IF (x_return_status <> Okc_Api.G_RET_STS_SUCCESS) THEN
538: Okc_Api.set_message(
539: p_app_name => g_app_name,

Line 886: l_return_status:= OKL_UTIL.check_from_to_date_range(p_from_date => p_irkv_rec.date_from

882: l_db_irkv_rec irkv_rec_type := get_rec(p_irkv_rec);
883: BEGIN
884: --Validate whether start date is less than the end date only if enddate is not null
885: IF (p_irkv_rec.date_to IS NOT NULL)THEN
886: l_return_status:= OKL_UTIL.check_from_to_date_range(p_from_date => p_irkv_rec.date_from
887: ,p_to_date => p_irkv_rec.date_to );
888: END IF;
889: IF (l_return_status <> Okc_Api.G_RET_STS_SUCCESS) THEN
890: Okc_Api.set_message(

Line 908: l_return_status:= OKL_UTIL.check_from_to_date_range(p_from_date => trunc(SYSDATE) -- Fix for Bug 3924176.

904: --Validate whether end date is less than the SYSDATE
905:
906:
907: IF (p_irkv_rec.date_to IS NOT NULL OR p_irkv_rec.date_to <> OKC_API.G_MISS_DATE )THEN
908: l_return_status:= OKL_UTIL.check_from_to_date_range(p_from_date => trunc(SYSDATE) -- Fix for Bug 3924176.
909: ,p_to_date => p_irkv_rec.date_to);
910:
911: END IF;
912: IF (l_return_status <> Okc_Api.G_RET_STS_SUCCESS) THEN