DBA Data[Home] [Help]

APPS.BEN_EVALUATE_ELIG_CRITERIA dependencies on FND_FILE

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

439: exception
440: --
441: when others then
442: --
443: fnd_file.put_line(fnd_file.log,'Error executing this dynamically build SQL Statement: ');
444: FOR i in 1..LENGTH(l_statement) LOOP
445: IF mod(i,80)=0 OR i=LENGTH(l_statement) THEN
446: fnd_file.put_line(fnd_file.log,' ' ||substr(l_statement,l_current_loc+1,i-l_current_loc));
447: l_current_loc:=i;

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

442: --
443: fnd_file.put_line(fnd_file.log,'Error executing this dynamically build SQL Statement: ');
444: FOR i in 1..LENGTH(l_statement) LOOP
445: IF mod(i,80)=0 OR i=LENGTH(l_statement) THEN
446: fnd_file.put_line(fnd_file.log,' ' ||substr(l_statement,l_current_loc+1,i-l_current_loc));
447: l_current_loc:=i;
448: END IF;
449: END LOOP;
450: raise;