DBA Data[Home] [Help]

APPS.HXC_TIMESTORE_DEPOSIT_UTIL dependencies on HXC_MAPPING_COMPONENTS

Line 1450: p_segment IN hxc_mapping_components.SEGMENT%TYPE,

1446:
1447: PROCEDURE update_value (
1448: p_attributes IN OUT NOCOPY hxc_attribute_table_type,
1449: p_index IN NUMBER,
1450: p_segment IN hxc_mapping_components.SEGMENT%TYPE,
1451: p_value IN hxc_time_attributes.attribute1%TYPE
1452: )
1453: IS
1454: BEGIN

Line 1553: p_segment IN hxc_mapping_components.SEGMENT%TYPE,

1549: END update_value;
1550:
1551: PROCEDURE set_new_attribute_value (
1552: p_attribute IN OUT NOCOPY hxc_attribute_type,
1553: p_segment IN hxc_mapping_components.SEGMENT%TYPE,
1554: p_value IN hxc_time_attributes.attribute1%TYPE,
1555: p_changed IN hxc_time_attributes.attribute1%TYPE
1556: )
1557: IS

Line 2776: p_attribute_name_to_find IN hxc_mapping_components.field_name%TYPE

2772: -----------------------------------------------------------------------------
2773: FUNCTION get_index_in_attr_table (
2774: p_attr_table IN hxc_self_service_time_deposit.app_attributes_info,
2775: p_attr_id_to_find IN hxc_time_attributes.time_attribute_id%TYPE,
2776: p_attribute_name_to_find IN hxc_mapping_components.field_name%TYPE
2777: )
2778: RETURN PLS_INTEGER
2779: IS
2780: l_proc VARCHAR2 (72);

Line 3040: p_attribute_name IN hxc_mapping_components.field_name%TYPE,

3036: -- the mode.
3037: --
3038: -----------------------------------------------------------------------------
3039: PROCEDURE get_bld_blk_info_type (
3040: p_attribute_name IN hxc_mapping_components.field_name%TYPE,
3041: p_deposit_process IN hxc_deposit_processes.NAME%TYPE,
3042: p_bld_blk_info_type OUT NOCOPY hxc_bld_blk_info_types.bld_blk_info_type%TYPE,
3043: p_segment OUT NOCOPY hxc_mapping_components.SEGMENT%TYPE
3044: )

Line 3043: p_segment OUT NOCOPY hxc_mapping_components.SEGMENT%TYPE

3039: PROCEDURE get_bld_blk_info_type (
3040: p_attribute_name IN hxc_mapping_components.field_name%TYPE,
3041: p_deposit_process IN hxc_deposit_processes.NAME%TYPE,
3042: p_bld_blk_info_type OUT NOCOPY hxc_bld_blk_info_types.bld_blk_info_type%TYPE,
3043: p_segment OUT NOCOPY hxc_mapping_components.SEGMENT%TYPE
3044: )
3045: IS
3046: l_proc VARCHAR2 (72);
3047:

Line 3049: v_field_name hxc_mapping_components.field_name%TYPE,

3045: IS
3046: l_proc VARCHAR2 (72);
3047:
3048: CURSOR csr_bld_blk_info_type (
3049: v_field_name hxc_mapping_components.field_name%TYPE,
3050: v_deposit_process_id hxc_deposit_processes.deposit_process_id%TYPE
3051: )
3052: IS
3053: SELECT bbit.bld_blk_info_type, mc.SEGMENT

Line 3054: FROM hxc_mapping_components mc,

3050: v_deposit_process_id hxc_deposit_processes.deposit_process_id%TYPE
3051: )
3052: IS
3053: SELECT bbit.bld_blk_info_type, mc.SEGMENT
3054: FROM hxc_mapping_components mc,
3055: hxc_mapping_comp_usages mcu,
3056: hxc_mappings m,
3057: hxc_deposit_processes dp,
3058: hxc_bld_blk_info_types bbit,