DBA Data[Home] [Help]

APPS.HXC_TIMESTORE_DEPOSIT_UTIL dependencies on HXC_DEPOSIT_CHECKS

Line 357: hxc_deposit_checks.check_inputs (p_blocks => p_blocks,

353: -- set savepoint
354: savepoint TC_SAVE_SAVEPOINT;
355:
356: -- Check input parameters
357: hxc_deposit_checks.check_inputs (p_blocks => p_blocks,
358: p_attributes => p_attributes,
359: p_deposit_mode => hxc_timecard.c_save,
360: p_template => hxc_timecard.c_no,
361: p_messages => p_messages

Line 478: hxc_deposit_checks.perform_checks (p_blocks => p_blocks,

474: p_day_blocks => l_day_blocks,
475: p_detail_blocks => l_detail_blocks
476: );
477: -- Perform basic checks
478: hxc_deposit_checks.perform_checks (p_blocks => p_blocks,
479: p_attributes => p_attributes,
480: p_timecard_props => l_timecard_props,
481: p_days => l_day_blocks,
482: p_details => l_detail_blocks,

Line 784: hxc_deposit_checks.check_inputs

780: -- set savepoint
781: savepoint TC_SUB_SAVEPOINT ;
782:
783: -- Check input parameters
784: hxc_deposit_checks.check_inputs
785: (p_blocks => p_blocks,
786: p_attributes => p_attributes,
787: p_deposit_mode => hxc_timecard.c_submit,
788: p_template => hxc_timecard.c_no,

Line 942: hxc_deposit_checks.perform_checks

938: -- Are there any other timecards for this period?
939: --
940: IF (p_template = hxc_timecard.c_no)
941: THEN
942: hxc_deposit_checks.perform_checks
943: (p_blocks => p_blocks,
944: p_attributes => p_attributes,
945: p_timecard_props => l_timecard_props,
946: p_days => l_day_blocks,

Line 979: hxc_deposit_checks.perform_process_checks

975: );
976: hxc_timecard_attribute_utils.remove_deleted_attributes
977: (p_attributes => p_attributes);
978: -- Perform process checks
979: hxc_deposit_checks.perform_process_checks
980: (p_blocks => p_blocks,
981: p_attributes => p_attributes,
982: p_timecard_props => l_timecard_props,
983: p_days => l_day_blocks,

Line 1064: -- hxc_deposit_checks.audit_checks transforms these REASON errors

1060: -- (CLA), it stores special messages in message table p_messages.
1061: -- These messages have a message_level of REASON, are not considered
1062: -- errors and will not be recognized by
1063: -- hxc_timecard_message_helper.noerrors as errors.
1064: -- hxc_deposit_checks.audit_checks transforms these REASON errors
1065: -- into proper errors that will be caught by
1066: -- hxc_timecard_message_helper.noerrors.
1067: -- So effectively what we are doing here is converting the audit
1068: -- message into errors when the user calls the API and AUDIT is

Line 1072: hxc_deposit_checks.audit_checks (p_blocks => p_blocks,

1068: -- message into errors when the user calls the API and AUDIT is
1069: -- switched on in the preferences of the employee/resource.
1070: -- If the user calls the API and AUDIT is not set, we completely
1071: -- ignore the auditmessages and continue with the submit.
1072: hxc_deposit_checks.audit_checks (p_blocks => p_blocks,
1073: p_attributes => p_attributes,
1074: p_messages => p_messages
1075: );
1076: hxc_timecard_message_helper.processerrors (p_messages => p_messages);