DBA Data[Home] [Help]

APPS.BEN_EVL_DPNT_ELIG_CRITERIA dependencies on FND_FILE

Line 81: fnd_file.put_line(fnd_file.log,'Error executing this dynamically build SQL Statement: ');

77: exception
78: --
79: when others then
80: --
81: fnd_file.put_line(fnd_file.log,'Error executing this dynamically build SQL Statement: ');
82: FOR i in 1..LENGTH(l_statement) LOOP
83: IF mod(i,80)=0 OR i=LENGTH(l_statement) THEN
84: fnd_file.put_line(fnd_file.log,' ' ||substr(l_statement,l_current_loc+1,i-l_current_loc));
85: l_current_loc:=i;

Line 84: fnd_file.put_line(fnd_file.log,' ' ||substr(l_statement,l_current_loc+1,i-l_current_loc));

80: --
81: fnd_file.put_line(fnd_file.log,'Error executing this dynamically build SQL Statement: ');
82: FOR i in 1..LENGTH(l_statement) LOOP
83: IF mod(i,80)=0 OR i=LENGTH(l_statement) THEN
84: fnd_file.put_line(fnd_file.log,' ' ||substr(l_statement,l_current_loc+1,i-l_current_loc));
85: l_current_loc:=i;
86: END IF;
87: END LOOP;
88: raise;