DBA Data[Home] [Help]

APPS.OKS_BILL_UTIL_PUB dependencies on OKC_TIME_UTIL_PUB

Line 280: l_end_date := OKC_TIME_UTIL_PUB.GET_ENDDATE

276: l_level_periods := p_level_periods - 1;
277: END IF;
278:
279: IF l_level_periods > 0 THEN
280: l_end_date := OKC_TIME_UTIL_PUB.GET_ENDDATE
281: (p_start_date => l_next_start_date,
282: p_timeunit => p_uom_code,
283: p_duration => l_level_periods*l_duration
284: );

Line 544: l_next_billing_date := okc_time_util_pub.get_enddate

540: x_return_status := 'E';
541: return;
542: End if;
543:
544: l_next_billing_date := okc_time_util_pub.get_enddate
545: ( p_start_date => l_cycle_start_date,
546: p_timeunit => l_tuom_code,
547: p_duration => l_tuom_per_period
548: ) + 1 ;

Line 764: l_next_billing_date:= OKC_TIME_UTIL_PUB.GET_ENDDATE

760: l_next_date :=Last_day(TRUNC(Strm_Start_date))+ 1 ;
761: ELSE
762: l_next_date := Strm_Start_date;
763: END IF;
764: l_next_billing_date:= OKC_TIME_UTIL_PUB.GET_ENDDATE
765: (p_start_date => l_next_date,
766: p_timeunit => l_tuom_code,
767: p_duration => l_tuom_per_period
768: )+1;

Line 776: l_next_billing_date := okc_time_util_pub.get_enddate

772: -------------------------------------------------------------------------
773: ELSE
774:
775: -- Start - Modified by PMALLARA - Bug #3992530
776: l_next_billing_date := okc_time_util_pub.get_enddate
777: ( p_start_date => Strm_Start_Date,
778: p_timeunit => l_tuom_code,
779: p_duration => l_tuom_per_period
780: ) + 1 ;

Line 998: -- l_bill_to_date := okc_time_util_pub.get_enddate(

994: IF(l_terminated_date is NULL) THEN
995: l_bill_to_date := l_end_date;
996: --ELSIF ((l_terminated_date is NOT NULL) AND
997: -- (trunc(l_start_date) = trunc(level_element_rec.date_start) )) THEN
998: -- l_bill_to_date := okc_time_util_pub.get_enddate(
999: -- to_date(level_element_rec.tp_start_date),
1000: -- l_advance_period ,
1001: -- l_tuom_quantity );
1002: ELSIF (l_terminated_date is NOT NULL) THEN

Line 1004: l_bill_to_date := okc_time_util_pub.get_enddate

1000: -- l_advance_period ,
1001: -- l_tuom_quantity );
1002: ELSIF (l_terminated_date is NOT NULL) THEN
1003: -- (trunc(l_start_date) <> trunc(level_element_rec.date_start) )) THEN
1004: l_bill_to_date := okc_time_util_pub.get_enddate
1005: (level_element_rec.date_start,
1006: l_advance_period ,
1007: l_tuom_quantity );
1008: END IF;