DBA Data[Home] [Help]

APPS.HXC_TIMECARD_SUMMARY_PKG dependencies on HXC_FIND_NOTIFY_APRS_PKG

Line 128: p_hours := p_hours + hxc_find_notify_aprs_pkg.apply_round_rule(

124: p_details(l_index).time_building_block_id := det_rec.time_building_block_id;
125: p_details(l_index).time_building_block_ovn := det_rec.object_version_number;
126: p_details(l_index).creation_date := det_rec.creation_date;
127: if(det_rec.type=hxc_timecard.c_range_type) then
128: p_hours := p_hours + hxc_find_notify_aprs_pkg.apply_round_rule(
129: l_rounding_rule,
130: l_precision,
131: nvl((det_rec.stop_time - det_rec.start_time)*24,0)
132: );

Line 137: p_hours := p_hours + hxc_find_notify_aprs_pkg.apply_round_rule(

133: else
134: -- in case of null measure we need to make sure this piece of code does not fail
135: -- and do not return null
136: -- 2029550 Implementation
137: p_hours := p_hours + hxc_find_notify_aprs_pkg.apply_round_rule(
138: l_rounding_rule,
139: l_precision,
140: nvl(det_rec.measure,0)
141: );