DBA Data[Home] [Help]

APPS.PQP_OSS_DFF_UTILS dependencies on HR_UTILITY

Line 98: Hr_Utility.set_location('Entering: '||l_func_name, 5);

94: l_ck_all_null_segvals Varchar2(2000);
95:
96: BEGIN
97:
98: Hr_Utility.set_location('Entering: '||l_func_name, 5);
99:
100: -- Get the Delimiter and Context for the given DFF
101: OPEN csr_get_delim_contxt(c_ddf_name => p_ddf_name
102: ,c_app_id => p_app_id

Line 110: Hr_Utility.raise_error;

106: -- If Delimiter is not found then that means the passed DFF doesn't exist for
107: -- the passed application id. Raise an Error
108: IF csr_get_delim_contxt%NOTFOUND THEN
109: CLOSE csr_get_delim_contxt;
110: Hr_Utility.raise_error;
111: END IF;
112: CLOSE csr_get_delim_contxt;
113:
114:

Line 215: Hr_Utility.set_location('Leaving: '||l_func_name, 10);

211: ELSE
212: RETURN l_cnct_segs;
213: END IF;
214:
215: Hr_Utility.set_location('Leaving: '||l_func_name, 10);
216:
217: END get_concat_dff_segs;
218: END PQP_OSS_DFF_UTILS;
219: