DBA Data[Home] [Help]

APPS.HXC_SELF_SERVICE_TIMECARD dependencies on HXC_TRANS_DISPLAY_KEY_UTILS

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

1100: if (p_block_array(l_index_detail).MEASURE is not null)
1101: then
1102: p_block_array(l_index_detail).MEASURE := 0;
1103: p_block_array(l_index_detail).TRANSLATION_DISPLAY_KEY :=
1104: hxc_trans_display_key_utils.reset_column_index_to_zero(p_block_array(l_index_detail).translation_display_key);
1105:
1106: IF (p_clear_comment = 'Y') THEN
1107: p_block_array(l_index_detail).COMMENT_TEXT := null;
1108: END IF;

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

1115: then
1116: p_block_array(l_index_detail).START_TIME := fnd_date.date_to_canonical(l_first_day);
1117: p_block_array(l_index_detail).STOP_TIME := fnd_date.date_to_canonical(l_first_day);
1118: p_block_array(l_index_detail).TRANSLATION_DISPLAY_KEY :=
1119: hxc_trans_display_key_utils.reset_column_index_to_zero(p_block_array(l_index_detail).translation_display_key);
1120:
1121: IF (p_clear_comment = 'Y') THEN
1122: p_block_array(l_index_detail).COMMENT_TEXT := null;
1123: END IF;

Line 2619: l_timecard_row_count := hxc_trans_display_key_utils.timecard_row_count

2615: -- overwrite flag is not set, we need to end date all the in detail blocks and append
2616: -- new blocks and attributes to the existing block structure. We also need to append
2617: -- comment to the comment_text fields of timecard and day blocks.
2618: l_new_blocks_array := p_new_blocks;
2619: l_timecard_row_count := hxc_trans_display_key_utils.timecard_row_count
2620: (l_complete_blocks);
2621: --translate alias here
2622: translate_alias(
2623: p_attribute_array => l_new_attributes

Line 2796: := hxc_trans_display_key_utils.new_display_key

2792: := l_complete_blocks(l_old_block_index).NEW;
2793: l_complete_blocks(l_complete_block_count).PARENT_BUILDING_BLOCK_OVN
2794: := l_complete_blocks(l_old_block_index).OBJECT_VERSION_NUMBER;
2795: l_complete_blocks(l_complete_block_count).TRANSLATION_DISPLAY_KEY
2796: := hxc_trans_display_key_utils.new_display_key
2797: (l_complete_blocks(l_complete_block_count).translation_display_key,
2798: l_timecard_row_count
2799: );
2800:

Line 4410: l_row_data hxc_trans_display_key_utils.translation_row_used;

4406: l_approver_id per_all_people_f.person_id%TYPE;
4407: l_attribute_index NUMBER;
4408: l_dummy varchar2(1);
4409: l_time_category_id number;
4410: l_row_data hxc_trans_display_key_utils.translation_row_used;
4411: l_same_app_time_period varchar2(1);
4412: CURSOR c_day_blocks(
4413: p_resource_id IN HXC_TIME_BUILDING_BLOCKS.RESOURCE_ID%TYPE
4414: ,p_resource_type IN HXC_TIME_BUILDING_BLOCKS.RESOURCE_TYPE%TYPE

Line 4815: hxc_trans_display_key_utils.set_row_data

4811: );
4812:
4813: ----Bug 5565773
4814: if l_time_category_id is not null then
4815: hxc_trans_display_key_utils.set_row_data
4816: (l_blocks(l_block_index).translation_display_key,
4817: l_row_data);
4818: end if;
4819: l_block_index := l_block_index + 1;

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

4837: END LOOP;
4838: END IF;
4839: --Bug 5565773
4840:
4841: if l_same_app_time_period = 'Y' AND HXC_TRANS_DISPLAY_KEY_UTILS.missing_rows(l_row_data) then
4842: HXC_TRANS_DISPLAY_KEY_UTILS.remove_empty_rows(l_row_data,
4843: p_block_array);
4844: end if;
4845: p_attribute_array := hxc_deposit_wrapper_utilities.attributes_to_array(

Line 4842: HXC_TRANS_DISPLAY_KEY_UTILS.remove_empty_rows(l_row_data,

4838: END IF;
4839: --Bug 5565773
4840:
4841: if l_same_app_time_period = 'Y' AND HXC_TRANS_DISPLAY_KEY_UTILS.missing_rows(l_row_data) then
4842: HXC_TRANS_DISPLAY_KEY_UTILS.remove_empty_rows(l_row_data,
4843: p_block_array);
4844: end if;
4845: p_attribute_array := hxc_deposit_wrapper_utilities.attributes_to_array(
4846: p_attributes => l_attributes

Line 5029: l_row_data hxc_trans_display_key_utils.translation_row_used;

5025: l_resource_id VARCHAR2(50) := NULL;
5026: l_lock_success BOOLEAN := FALSE;
5027: l_lock_rowid ROWID;
5028: l_temp_block HXC_BLOCK_TYPE;
5029: l_row_data hxc_trans_display_key_utils.translation_row_used;
5030: l_missing_rows boolean;
5031: l_timecard_id hxc_timecard_summary.timecard_id%type;
5032: l_temp_attributes hxc_attribute_table_type;
5033: i number;

Line 5248: hxc_trans_display_key_utils.remove_empty_rows

5244: -- if there is an existing timecard, return the info in string
5245: IF p_block_array is not null THEN
5246:
5247: if (l_missing_rows) then
5248: hxc_trans_display_key_utils.remove_empty_rows
5249: (p_row_data => l_row_data,
5250: p_blocks => p_block_array
5251: );
5252: end if;