DBA Data[Home] [Help]

APPS.HXC_SELF_SERVICE_TIMECARD dependencies on HXC_TRANS_DISPLAY_KEY_UTILS

Line 1001: hxc_trans_display_key_utils.reset_column_index_to_zero(p_block_array(l_index_detail).translation_display_key);

997: if (p_block_array(l_index_detail).MEASURE is not null)
998: then
999: p_block_array(l_index_detail).MEASURE := 0;
1000: p_block_array(l_index_detail).TRANSLATION_DISPLAY_KEY :=
1001: hxc_trans_display_key_utils.reset_column_index_to_zero(p_block_array(l_index_detail).translation_display_key);
1002:
1003: IF (p_clear_comment = 'Y') THEN
1004: p_block_array(l_index_detail).COMMENT_TEXT := null;
1005: END IF;

Line 1016: hxc_trans_display_key_utils.reset_column_index_to_zero(p_block_array(l_index_detail).translation_display_key);

1012: then
1013: p_block_array(l_index_detail).START_TIME := fnd_date.date_to_canonical(l_first_day);
1014: p_block_array(l_index_detail).STOP_TIME := fnd_date.date_to_canonical(l_first_day);
1015: p_block_array(l_index_detail).TRANSLATION_DISPLAY_KEY :=
1016: hxc_trans_display_key_utils.reset_column_index_to_zero(p_block_array(l_index_detail).translation_display_key);
1017:
1018: IF (p_clear_comment = 'Y') THEN
1019: p_block_array(l_index_detail).COMMENT_TEXT := null;
1020: END IF;

Line 2321: l_timecard_row_count := hxc_trans_display_key_utils.timecard_row_count

2317: -- overwrite flag is not set, we need to end date all the in detail blocks and append
2318: -- new blocks and attributes to the existing block structure. We also need to append
2319: -- comment to the comment_text fields of timecard and day blocks.
2320: l_new_blocks_array := p_new_blocks;
2321: l_timecard_row_count := hxc_trans_display_key_utils.timecard_row_count
2322: (l_complete_blocks);
2323: --translate alias here
2324: translate_alias(
2325: p_attribute_array => l_new_attributes

Line 2496: := hxc_trans_display_key_utils.new_display_key

2492: := l_complete_blocks(l_old_block_index).NEW;
2493: l_complete_blocks(l_complete_block_count).PARENT_BUILDING_BLOCK_OVN
2494: := l_complete_blocks(l_old_block_index).OBJECT_VERSION_NUMBER;
2495: l_complete_blocks(l_complete_block_count).TRANSLATION_DISPLAY_KEY
2496: := hxc_trans_display_key_utils.new_display_key
2497: (l_complete_blocks(l_complete_block_count).translation_display_key,
2498: l_timecard_row_count
2499: );
2500:

Line 4074: l_row_data hxc_trans_display_key_utils.translation_row_used;

4070: l_approver_id per_all_people_f.person_id%TYPE;
4071: l_attribute_index NUMBER;
4072: l_dummy varchar2(1);
4073: l_time_category_id number;
4074: l_row_data hxc_trans_display_key_utils.translation_row_used;
4075: l_same_app_time_period varchar2(1);
4076: CURSOR c_day_blocks(
4077: p_resource_id IN HXC_TIME_BUILDING_BLOCKS.RESOURCE_ID%TYPE
4078: ,p_resource_type IN HXC_TIME_BUILDING_BLOCKS.RESOURCE_TYPE%TYPE

Line 4479: hxc_trans_display_key_utils.set_row_data

4475: );
4476:
4477: ----Bug 5565773
4478: if l_time_category_id is not null then
4479: hxc_trans_display_key_utils.set_row_data
4480: (l_blocks(l_block_index).translation_display_key,
4481: l_row_data);
4482: end if;
4483: l_block_index := l_block_index + 1;

Line 4505: if l_same_app_time_period = 'Y' AND HXC_TRANS_DISPLAY_KEY_UTILS.missing_rows(l_row_data) then

4501: END LOOP;
4502: END IF;
4503: --Bug 5565773
4504:
4505: if l_same_app_time_period = 'Y' AND HXC_TRANS_DISPLAY_KEY_UTILS.missing_rows(l_row_data) then
4506: HXC_TRANS_DISPLAY_KEY_UTILS.remove_empty_rows(l_row_data,
4507: p_block_array);
4508: end if;
4509: p_attribute_array := hxc_deposit_wrapper_utilities.attributes_to_array(

Line 4506: HXC_TRANS_DISPLAY_KEY_UTILS.remove_empty_rows(l_row_data,

4502: END IF;
4503: --Bug 5565773
4504:
4505: if l_same_app_time_period = 'Y' AND HXC_TRANS_DISPLAY_KEY_UTILS.missing_rows(l_row_data) then
4506: HXC_TRANS_DISPLAY_KEY_UTILS.remove_empty_rows(l_row_data,
4507: p_block_array);
4508: end if;
4509: p_attribute_array := hxc_deposit_wrapper_utilities.attributes_to_array(
4510: p_attributes => l_attributes

Line 4693: l_row_data hxc_trans_display_key_utils.translation_row_used;

4689: l_resource_id VARCHAR2(50) := NULL;
4690: l_lock_success BOOLEAN := FALSE;
4691: l_lock_rowid ROWID;
4692: l_temp_block HXC_BLOCK_TYPE;
4693: l_row_data hxc_trans_display_key_utils.translation_row_used;
4694: l_missing_rows boolean;
4695: l_timecard_id hxc_timecard_summary.timecard_id%type;
4696: l_temp_attributes hxc_attribute_table_type;
4697: i number;

Line 4894: hxc_trans_display_key_utils.remove_empty_rows

4890: -- if there is an existing timecard, return the info in string
4891: IF p_block_array is not null THEN
4892:
4893: if (l_missing_rows) then
4894: hxc_trans_display_key_utils.remove_empty_rows
4895: (p_row_data => l_row_data,
4896: p_blocks => p_block_array
4897: );
4898: end if;