DBA Data[Home] [Help]

APPS.PAY_IN_SOE dependencies on FND_FILE

Line 148: fnd_file.put_line(fnd_file.log,'Invalid Character found in:'

144: /*Bug 14699505 - Replace invalid characters. Only characters between ascii 32 and 126 allowed*/
145: l_str1:=regexp_replace(p_value, '[^ -~]', '?');
146: pay_in_utils.trace('l_str1 ',l_str1);
147: IF(l_str1 <> p_value) THEN
148: fnd_file.put_line(fnd_file.log,'Invalid Character found in:'
149: ||p_tag_name||' -->'|| p_value);
150: fnd_file.put_line(fnd_file.log,'Invalid Character replaced with ?');
151: END IF;
152:

Line 150: fnd_file.put_line(fnd_file.log,'Invalid Character replaced with ?');

146: pay_in_utils.trace('l_str1 ',l_str1);
147: IF(l_str1 <> p_value) THEN
148: fnd_file.put_line(fnd_file.log,'Invalid Character found in:'
149: ||p_tag_name||' -->'|| p_value);
150: fnd_file.put_line(fnd_file.log,'Invalid Character replaced with ?');
151: END IF;
152:
153: /*Bug 4070869 - Encoded the data*/
154: l_str:= '<'||p_tag_name||'>'||pay_in_utils.ENCODE_HTML_STRING(l_str1)||'';