DBA Data[Home] [Help]

APPS.OKL_ST_CODE_CONVERSIONS dependencies on FND_FILE

Line 864: fnd_file.put_line(fnd_file.log, 'st code conversion tarfet type '||p_target_type);

860: x_statistic_index OUT NOCOPY VARCHAR2)
861: IS
862: l_target_type VARCHAR2(3) := 'INT';
863: BEGIN
864: fnd_file.put_line(fnd_file.log, 'st code conversion tarfet type '||p_target_type);
865: fnd_file.put_line(fnd_file.log, 'st code conversion p_statistic_index '||p_statistic_index);
866: IF p_target_type = l_target_type THEN
867: fnd_file.put_line(fnd_file.log, 'st code conversion set stat to 1 ');
868: x_statistic_index := '1';

Line 865: fnd_file.put_line(fnd_file.log, 'st code conversion p_statistic_index '||p_statistic_index);

861: IS
862: l_target_type VARCHAR2(3) := 'INT';
863: BEGIN
864: fnd_file.put_line(fnd_file.log, 'st code conversion tarfet type '||p_target_type);
865: fnd_file.put_line(fnd_file.log, 'st code conversion p_statistic_index '||p_statistic_index);
866: IF p_target_type = l_target_type THEN
867: fnd_file.put_line(fnd_file.log, 'st code conversion set stat to 1 ');
868: x_statistic_index := '1';
869: ELSE

Line 867: fnd_file.put_line(fnd_file.log, 'st code conversion set stat to 1 ');

863: BEGIN
864: fnd_file.put_line(fnd_file.log, 'st code conversion tarfet type '||p_target_type);
865: fnd_file.put_line(fnd_file.log, 'st code conversion p_statistic_index '||p_statistic_index);
866: IF p_target_type = l_target_type THEN
867: fnd_file.put_line(fnd_file.log, 'st code conversion set stat to 1 ');
868: x_statistic_index := '1';
869: ELSE
870: x_statistic_index := p_statistic_index;
871: END IF;

Line 872: fnd_file.put_line(fnd_file.log, 'st code conversion x_statistic_index '||x_statistic_index);

868: x_statistic_index := '1';
869: ELSE
870: x_statistic_index := p_statistic_index;
871: END IF;
872: fnd_file.put_line(fnd_file.log, 'st code conversion x_statistic_index '||x_statistic_index);
873: EXCEPTION
874: WHEN OTHERS THEN
875: x_statistic_index := p_statistic_index;
876: END TRANSLATE_STATISTIC_INDEX;