DBA Data[Home] [Help]

APPS.HXT_RETRO_PA dependencies on HXT_PA_USER_EXITS

Line 92: OR errf.location LIKE 'hxt_pa_user_exits.p_a_%');

88: DELETE
89: FROM hxt_errors_f errf
90: WHERE errf.tim_id = l_timecard_rec.id
91: AND (errf.location LIKE 'hxt_retro_pa%'
92: OR errf.location LIKE 'hxt_pa_user_exits.p_a_%');
93:
94: COMMIT;
95:
96: /*************************************************

Line 590: l_retcode := hxt_pa_user_exits.p_a_interface

586: -- Ignore identical entries, set these to 'D' for dead
587: IF l_non_rec.hours <> l_expired_rec.hours THEN
588: HXT_UTIL.DEBUG('This transaction is an adjustment for '
589: ||TO_CHAR(l_non_rec.hours - l_expired_rec.hours)||' hours');
590: l_retcode := hxt_pa_user_exits.p_a_interface
591: (l_non_rec.hours - l_expired_rec.hours,
592: l_rate,
593: l_premium_amount, --SIR#5
594: l_non_rec.hxt_earning_category||l_non_rec.hxt_premium_type,

Line 653: l_retcode := hxt_pa_user_exits.p_a_interface

649: CLOSE l_expired_cur;
650: -- Pass a normal entry to Project Accounting for the retro rows
651:
652: HXT_UTIL.DEBUG('New transaction '||TO_CHAR(l_non_rec.hours)||' hours'); --HXT115
653: l_retcode := hxt_pa_user_exits.p_a_interface
654: (l_non_rec.hours,
655: l_rate,
656: l_premium_amount, --SIR#5
657: l_non_rec.hxt_earning_category||l_non_rec.hxt_premium_type,

Line 768: l_retcode := hxt_pa_user_exits.p_a_interface

764: IF NVL(l_non_rec.hours,-1) <> NVL(l_expired_rec.hours,-1) THEN
765:
766: HXT_UTIL.DEBUG('This is an adjusting entry for '
767: ||to_char(l_non_rec.hours - l_expired_rec.hours)||' hours');
768: l_retcode := hxt_pa_user_exits.p_a_interface
769: (l_non_rec.hours - l_expired_rec.hours,
770: l_rate,
771: l_premium_amount,
772: l_non_rec.hxt_earning_category||l_non_rec.hxt_premium_type,

Line 828: l_retcode := hxt_pa_user_exits.p_a_interface

824: ELSE
825:
826: CLOSE l_expired_cur;
827: HXT_UTIL.DEBUG('New transaction '||TO_CHAR(l_non_rec.hours)||' hours');
828: l_retcode := hxt_pa_user_exits.p_a_interface
829: (l_premium_hours,
830: l_rate,
831: l_premium_amount,
832: l_non_rec.hxt_earning_category||l_non_rec.hxt_premium_type,

Line 924: l_retcode := hxt_pa_user_exits.p_a_interface

920: END IF;
921: HXT_UTIL.DEBUG('Sending backout for '||TO_CHAR(l_backout_rec.hours)||' hours');
922: END IF; -- IS AMOUNT NULL? SIR#5
923:
924: l_retcode := hxt_pa_user_exits.p_a_interface
925: (l_backout_rec.hours * -1,
926: l_rate,
927: l_backout_amount, --SIR#5
928: l_backout_rec.hxt_earning_category||l_backout_rec.hxt_premium_type,

Line 999: l_retcode := hxt_pa_user_exits.p_a_interface

995: END IF; -- premium calculations
996:
997: HXT_UTIL.DEBUG('Sending backout for '||TO_CHAR(l_backout_hours)||' hours');
998: HXT_UTIL.DEBUG('Sending backout for '||TO_CHAR(l_backout_amount)||' amount');
999: l_retcode := hxt_pa_user_exits.p_a_interface
1000: (l_backout_hours,
1001: l_rate,
1002: l_backout_amount,
1003: l_backout_rec.hxt_earning_category||l_backout_rec.hxt_premium_type,