DBA Data[Home] [Help]

APPS.OKL_ST_CODE_CONVERSIONS dependencies on FND_FILE

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

843: x_statistic_index OUT NOCOPY VARCHAR2)
844: IS
845: l_target_type VARCHAR2(3) := 'INT';
846: BEGIN
847: fnd_file.put_line(fnd_file.log, 'st code conversion tarfet type '||p_target_type);
848: fnd_file.put_line(fnd_file.log, 'st code conversion p_statistic_index '||p_statistic_index);
849: IF p_target_type = l_target_type THEN
850: fnd_file.put_line(fnd_file.log, 'st code conversion set stat to 1 ');
851: x_statistic_index := '1';

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

844: IS
845: l_target_type VARCHAR2(3) := 'INT';
846: BEGIN
847: fnd_file.put_line(fnd_file.log, 'st code conversion tarfet type '||p_target_type);
848: fnd_file.put_line(fnd_file.log, 'st code conversion p_statistic_index '||p_statistic_index);
849: IF p_target_type = l_target_type THEN
850: fnd_file.put_line(fnd_file.log, 'st code conversion set stat to 1 ');
851: x_statistic_index := '1';
852: ELSE

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

846: BEGIN
847: fnd_file.put_line(fnd_file.log, 'st code conversion tarfet type '||p_target_type);
848: fnd_file.put_line(fnd_file.log, 'st code conversion p_statistic_index '||p_statistic_index);
849: IF p_target_type = l_target_type THEN
850: fnd_file.put_line(fnd_file.log, 'st code conversion set stat to 1 ');
851: x_statistic_index := '1';
852: ELSE
853: x_statistic_index := p_statistic_index;
854: END IF;

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

851: x_statistic_index := '1';
852: ELSE
853: x_statistic_index := p_statistic_index;
854: END IF;
855: fnd_file.put_line(fnd_file.log, 'st code conversion x_statistic_index '||x_statistic_index);
856: EXCEPTION
857: WHEN OTHERS THEN
858: x_statistic_index := p_statistic_index;
859: END TRANSLATE_STATISTIC_INDEX;