DBA Data[Home] [Help]

APPS.HR_CGD_SHD dependencies on HR_UTILITY

Line 52: hr_utility.set_location('Entering:'||l_proc, 5);

48: l_proc varchar2(72) := g_package||'api_updating';
49: l_fct_ret boolean;
50: --
51: Begin
52: hr_utility.set_location('Entering:'||l_proc, 5);
53: --
54: If (p_cagr_grade_def_id is null) Then
55: --
56: -- One of the primary key arguments is null therefore we must

Line 62: hr_utility.set_location(l_proc, 10);

58: --
59: l_fct_ret := false;
60: Else
61: If (p_cagr_grade_def_id = g_old_rec.cagr_grade_def_id) Then
62: hr_utility.set_location(l_proc, 10);
63: --
64: -- The g_old_rec is current therefore we must
65: -- set the returning function to true
66: --

Line 79: hr_utility.set_message(801, 'HR_7220_INVALID_PRIMARY_KEY');

75: Close C_Sel1;
76: --
77: -- The primary key is invalid therefore we must error
78: --
79: hr_utility.set_message(801, 'HR_7220_INVALID_PRIMARY_KEY');
80: hr_utility.raise_error;
81: End If;
82: Close C_Sel1;
83: --

Line 80: hr_utility.raise_error;

76: --
77: -- The primary key is invalid therefore we must error
78: --
79: hr_utility.set_message(801, 'HR_7220_INVALID_PRIMARY_KEY');
80: hr_utility.raise_error;
81: End If;
82: Close C_Sel1;
83: --
84: hr_utility.set_location(l_proc, 15);

Line 84: hr_utility.set_location(l_proc, 15);

80: hr_utility.raise_error;
81: End If;
82: Close C_Sel1;
83: --
84: hr_utility.set_location(l_proc, 15);
85: l_fct_ret := true;
86: End If;
87: End If;
88: hr_utility.set_location(' Leaving:'||l_proc, 20);

Line 88: hr_utility.set_location(' Leaving:'||l_proc, 20);

84: hr_utility.set_location(l_proc, 15);
85: l_fct_ret := true;
86: End If;
87: End If;
88: hr_utility.set_location(' Leaving:'||l_proc, 20);
89: Return (l_fct_ret);
90: --
91: End api_updating;
92: --

Line 132: hr_utility.set_location('Entering:'||l_proc, 5);

128: l_proc varchar2(72) := g_package||'convert_args';
129: --
130: Begin
131: --
132: hr_utility.set_location('Entering:'||l_proc, 5);
133: --
134: -- Convert arguments into local l_rec structure.
135: --
136: l_rec.cagr_grade_def_id := p_cagr_grade_def_id;

Line 165: hr_utility.set_location(' Leaving:'||l_proc, 10);

161: l_rec.segment20 := p_segment20;
162: --
163: -- Return the plsql record structure.
164: --
165: hr_utility.set_location(' Leaving:'||l_proc, 10);
166: Return(l_rec);
167: --
168: End convert_args;
169: --