DBA Data[Home] [Help]

APPS.HR_SOURCE_FORM_TEMPLATES_BSI dependencies on HR_UTILITY

Line 28: hr_utility.set_location('Entering:'|| l_proc, 10);

24: l_source_form_template_id number;
25: l_object_version_number number;
26: l_proc varchar2(72) := g_package||'create_source_form_template';
27: begin
28: hr_utility.set_location('Entering:'|| l_proc, 10);
29: --
30: -- Issue a savepoint
31: --
32: savepoint create_source_form_template;

Line 54: hr_utility.set_location(' Leaving:'||l_proc, 70);

50: --
51: p_source_form_template_id := l_source_form_template_id;
52: p_object_version_number := l_object_version_number;
53: --
54: hr_utility.set_location(' Leaving:'||l_proc, 70);
55: exception
56: when hr_api.validate_enabled then
57: --
58: -- As the Validate_Enabled exception has been raised

Line 68: hr_utility.set_location(' Leaving:'||l_proc, 80);

64: -- (Any key or derived arguments must be set to null
65: -- when validation only mode is being used.)
66: --
67: p_source_form_template_id := null;
68: hr_utility.set_location(' Leaving:'||l_proc, 80);
69: when others then
70: --
71: -- A validation or unexpected error has occured
72: --

Line 74: hr_utility.set_location(' Leaving:'||l_proc, 90);

70: --
71: -- A validation or unexpected error has occured
72: --
73: rollback to create_source_form_template;
74: hr_utility.set_location(' Leaving:'||l_proc, 90);
75: raise;
76: end create_source_form_template;
77: --
78: -- ----------------------------------------------------------------------------

Line 93: hr_utility.set_location('Entering:'|| l_proc, 10);

89: --
90:
91: l_proc varchar2(72) := g_package||'delete_source_form_template';
92: begin
93: hr_utility.set_location('Entering:'|| l_proc, 10);
94: --
95: -- Issue a savepoint
96: --
97: savepoint delete_source_form_template;

Line 112: hr_utility.set_location(' Leaving:'||l_proc, 70);

108: if p_validate then
109: raise hr_api.validate_enabled;
110: end if;
111: --
112: hr_utility.set_location(' Leaving:'||l_proc, 70);
113: exception
114: when hr_api.validate_enabled then
115: --
116: -- As the Validate_Enabled exception has been raised

Line 125: hr_utility.set_location(' Leaving:'||l_proc, 80);

121: -- Only set output warning arguments
122: -- (Any key or derived arguments must be set to null
123: -- when validation only mode is being used.)
124: --
125: hr_utility.set_location(' Leaving:'||l_proc, 80);
126: when others then
127: --
128: -- A validation or unexpected error has occured
129: --

Line 131: hr_utility.set_location(' Leaving:'||l_proc, 90);

127: --
128: -- A validation or unexpected error has occured
129: --
130: rollback to delete_source_form_template;
131: hr_utility.set_location(' Leaving:'||l_proc, 90);
132: raise;
133: end delete_source_form_template;
134: --
135: end hr_source_form_templates_bsi;