DBA Data[Home] [Help]

APPS.PQH_PP_DFF_UTILS dependencies on HR_UTILITY

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

60: cnt_attributes integer := 0;
61: cnt_glb_data_elmnts integer := 0;
62: BEGIN
63:
64: Hr_Utility.set_location('Entering: '||l_func_name, 5);
65: -- Get the Delimiter for the given DFF
66: IF g_delimiter is null then
67: OPEN csr_get_delim_contxt;
68: FETCH csr_get_delim_contxt INTO g_delimiter;

Line 74: Hr_Utility.raise_error;

70: -- If Delimiter is not found then that means the passed DFF doesn't exist
71: -- for the passed application id. Raise an Error
72: IF csr_get_delim_contxt%NOTFOUND THEN
73: CLOSE csr_get_delim_contxt;
74: Hr_Utility.raise_error;
75: END IF;
76: CLOSE csr_get_delim_contxt;
77: END IF;
78:

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

238:
239:
240: RETURN l_cnct_seg_val;
241:
242: Hr_Utility.set_location('Leaving: '||l_func_name, 10);
243:
244: END get_concat_dff_segs;
245: END PQH_PP_DFF_UTILS;
246: