DBA Data[Home] [Help]

APPS.HR_GENERAL_UTILITIES dependencies on ICX_CALL

Line 1814: icx_call.encrypt2

1810: --
1811: -- encrypt the string
1812: --
1813: l_tmp_id :=
1814: icx_call.encrypt2
1815: ( c_string => l_string
1816: );
1817: --
1818: -- store the row index

Line 1843: icx_call.encrypt2

1839: --
1840: -- now encrypt the index values themselves
1841: --
1842: l_tmp_id :=
1843: icx_call.encrypt2
1844: ( c_string => l_icx_ids
1845: );
1846: --
1847: -- return this value

Line 1924: icx_call.encrypt2

1920: hr_utility.set_location('Leaving : ' || l_proc, 10);
1921: END IF;
1922:
1923: RETURN
1924: icx_call.encrypt2
1925: ( c_string => l_string
1926: );
1927: EXCEPTION
1928: WHEN OTHERS THEN

Line 1966: icx_call.decrypt2

1962:
1963:
1964: IF p_string IS NULL THEN
1965: l_index_string :=
1966: icx_call.decrypt2
1967: ( c_text_id => p_id
1968: );
1969: ELSE
1970: l_index_string := p_string;

Line 1985: || icx_call.decrypt2

1981: FOR RowCounter IN 1 .. l_item2
1982: LOOP
1983: l_string :=
1984: l_string
1985: || icx_call.decrypt2
1986: ( c_text_id =>
1987: hr_general_utilities.Find_Item_In_String
1988: ( p_item => RowCounter + l_offset
1989: , p_string => l_index_string

Line 2034: icx_call.decrypt2

2030: --
2031: -- decrypt the index string
2032: --
2033: l_index_string :=
2034: icx_call.decrypt2
2035: ( c_text_id => to_number(i)
2036: );
2037: --
2038: -- decrypt2 returns -1 if the session is invalid