DBA Data[Home] [Help]

APPS.HXC_TIMESTORE_DEPOSIT dependencies on HR_API

Line 1767: IF ((p_measure <> hr_api.g_number) OR (p_measure IS NULL))

1763: -- only change the values if something is passed in the procedure
1764: -- We need to do this workaround to avoid updating values to NULL
1765: -- If a system default is being used then we must not update the argument
1766: -- value.
1767: IF ((p_measure <> hr_api.g_number) OR (p_measure IS NULL))
1768: THEN
1769: p_app_blocks (l_building_block_index).measure := p_measure;
1770: END IF;
1771:

Line 1772: IF ( (p_unit_of_measure <> hr_api.g_varchar2)

1768: THEN
1769: p_app_blocks (l_building_block_index).measure := p_measure;
1770: END IF;
1771:
1772: IF ( (p_unit_of_measure <> hr_api.g_varchar2)
1773: OR (p_unit_of_measure IS NULL)
1774: )
1775: THEN
1776: p_app_blocks (l_building_block_index).unit_of_measure :=

Line 1780: IF ((p_start_time <> hr_api.g_date) OR (p_start_time IS NULL))

1776: p_app_blocks (l_building_block_index).unit_of_measure :=
1777: p_unit_of_measure;
1778: END IF;
1779:
1780: IF ((p_start_time <> hr_api.g_date) OR (p_start_time IS NULL))
1781: THEN
1782: -- Adding fix for Bug. no. 3327697
1783: p_app_blocks (l_building_block_index).start_time :=
1784: fnd_date.date_to_canonical (p_start_time);

Line 1787: IF ((p_stop_time <> hr_api.g_date) OR (p_stop_time IS NULL))

1783: p_app_blocks (l_building_block_index).start_time :=
1784: fnd_date.date_to_canonical (p_start_time);
1785: END IF;
1786:
1787: IF ((p_stop_time <> hr_api.g_date) OR (p_stop_time IS NULL))
1788: THEN
1789: -- Adding fix for Bug. no. 3327697
1790: p_app_blocks (l_building_block_index).stop_time :=
1791: fnd_date.date_to_canonical (p_stop_time);

Line 1802: IF ((p_comment_text <> hr_api.g_varchar2) OR (p_comment_text IS NULL))

1798: fnd_date.date_to_canonical (SYSDATE);
1799: p_app_blocks (l_building_block_index).date_to :=
1800: fnd_date.date_to_canonical (hr_general.end_of_time);
1801:
1802: IF ((p_comment_text <> hr_api.g_varchar2) OR (p_comment_text IS NULL))
1803: THEN
1804: p_app_blocks (l_building_block_index).comment_text := p_comment_text;
1805: END IF;
1806:

Line 2207: IF ( (p_attribute_value <> hr_api.g_varchar2)

2203: -- only change the values if something is passed in the procedure
2204: -- We need to do this workaround to avoid updating values to NULL
2205: -- If a system default is being used then we must not update the argument
2206: -- value.
2207: IF ( (p_attribute_value <> hr_api.g_varchar2)
2208: OR (p_attribute_value IS NULL)
2209: )
2210: THEN
2211: p_app_attributes (l_attribute_index).attribute_value :=

Line 2574: RAISE hr_api.validate_enabled;

2570: END IF; -- lock was unsuccessfull, nothing was done
2571:
2572: IF (p_validate)
2573: THEN
2574: RAISE hr_api.validate_enabled;
2575: END IF;
2576:
2577: IF g_debug
2578: THEN

Line 2583: WHEN hr_api.validate_enabled

2579: hr_utility.set_location ('Leaving:' || l_proc, 20);
2580: END IF;
2581: EXCEPTION
2582: --
2583: WHEN hr_api.validate_enabled
2584: THEN
2585: -- As the Validate_Enabled exception has been raised
2586: -- we must rollback to the savepoint
2587: ROLLBACK TO validation_only;