DBA Data[Home] [Help]

APPS.HXC_TIMESTORE_DEPOSIT_UTIL dependencies on HXC_DEPOSIT_WRAPPER_UTILITIES

Line 482: l_old_transaction_info hxc_deposit_wrapper_utilities.t_transaction;

478: l_timecard_blocks hxc_timecard.block_list;
479: l_day_blocks hxc_timecard.block_list;
480: l_detail_blocks hxc_timecard.block_list;
481: l_transaction_info hxc_timecard.transaction_info;
482: l_old_transaction_info hxc_deposit_wrapper_utilities.t_transaction;
483: l_timecard_props hxc_timecard_prop_table_type;
484: l_proc VARCHAR2 (50)
485: := g_package || 'submit_timecard';
486: l_can_deposit BOOLEAN := TRUE;

Line 783: hxc_deposit_wrapper_utilities.audit_transaction

779: THEN
780: l_old_transaction_info :=
781: convert_new_trans_info_to_old
782: (p_transaction_info => l_transaction_info);
783: hxc_deposit_wrapper_utilities.audit_transaction
784: (p_effective_date => SYSDATE,
785: p_transaction_type => 'RETRIEVAL',
786: p_transaction_process_id => get_retrieval_process_id
787: (p_retrieval_process_name => p_retrieval_process

Line 882: -- Returns: hxc_deposit_wrapper_utilities.t_transaction

878: -----------------------------------------------------------------------------
879: -- Type: Function
880: -- Scope: Public
881: -- Name: convert_new_trans_info_to_old
882: -- Returns: hxc_deposit_wrapper_utilities.t_transaction
883: -- IN Parameters: p_trans_info -> The PL/SQL Transaction info table you want to
884: -- convert
885: -- Description: Public Function that will convert the new PL/SQL Transaction
886: -- PL/SQL table to the old PL/SQL Table that is then returned

Line 891: RETURN hxc_deposit_wrapper_utilities.t_transaction

887: -----------------------------------------------------------------------------
888: FUNCTION convert_new_trans_info_to_old (
889: p_transaction_info IN hxc_timecard.transaction_info
890: )
891: RETURN hxc_deposit_wrapper_utilities.t_transaction
892: IS
893: l_proc VARCHAR2 (72);
894: l_transaction_info hxc_deposit_wrapper_utilities.t_transaction;
895: l_index PLS_INTEGER;

Line 894: l_transaction_info hxc_deposit_wrapper_utilities.t_transaction;

890: )
891: RETURN hxc_deposit_wrapper_utilities.t_transaction
892: IS
893: l_proc VARCHAR2 (72);
894: l_transaction_info hxc_deposit_wrapper_utilities.t_transaction;
895: l_index PLS_INTEGER;
896: BEGIN
897: g_debug := hr_utility.debug_enabled;
898:

Line 3094: l_token_table hxc_deposit_wrapper_utilities.t_simple_table;

3090: RETURN translated_message_table
3091: IS
3092: l_proc VARCHAR2 (72);
3093: l_messages translated_message_table;
3094: l_token_table hxc_deposit_wrapper_utilities.t_simple_table;
3095: l_message_idx PLS_INTEGER := p_messages.FIRST;
3096: BEGIN
3097: g_debug := hr_utility.debug_enabled;
3098:

Line 3116: hxc_deposit_wrapper_utilities.string_to_table

3112: );
3113:
3114: IF (p_messages (l_message_idx).message_tokens IS NOT NULL)
3115: THEN
3116: hxc_deposit_wrapper_utilities.string_to_table
3117: ('&',
3118: '&'
3119: || p_messages (l_message_idx).message_tokens,
3120: l_token_table