DBA Data[Home] [Help]

APPS.HXC_TIMECARD_SUMMARY_PKG dependencies on HXC_FIND_NOTIFY_APRS_PKG

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

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

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

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