DBA Data[Home] [Help]

APPS.IBC_CONTENT_SEARCH_PVT dependencies on FND_GLOBAL

Line 140: l_string := REPLACE(l_string, Fnd_Global.LOCAL_CHR(39),

136: l_string := Remove_Parenthesis(l_string);
137: l_string := Remove_Braces(l_string);
138:
139: -- replace all the other special reserved characters
140: l_string := REPLACE(l_string, Fnd_Global.LOCAL_CHR(39),
141: Fnd_Global.LOCAL_CHR(39)||Fnd_Global.LOCAL_CHR(39)); -- quote ' to ''
142: l_string := REPLACE(l_string, '\', '\\'); -- back slash (escape char)
143: l_string := REPLACE(l_string, ',', '\,'); -- accumulate
144: l_string := REPLACE(l_string, '&', '\&'); -- and

Line 141: Fnd_Global.LOCAL_CHR(39)||Fnd_Global.LOCAL_CHR(39)); -- quote ' to ''

137: l_string := Remove_Braces(l_string);
138:
139: -- replace all the other special reserved characters
140: l_string := REPLACE(l_string, Fnd_Global.LOCAL_CHR(39),
141: Fnd_Global.LOCAL_CHR(39)||Fnd_Global.LOCAL_CHR(39)); -- quote ' to ''
142: l_string := REPLACE(l_string, '\', '\\'); -- back slash (escape char)
143: l_string := REPLACE(l_string, ',', '\,'); -- accumulate
144: l_string := REPLACE(l_string, '&', '\&'); -- and
145: l_string := REPLACE(l_string, '=', '\='); -- equivalance