DBA Data[Home] [Help]

APPS.FTE_LOCATION_PARAMETERS_PKG dependencies on FND_FILE

Line 990: Fnd_File.Put_Line(Fnd_File.output, x_error_msg);

986: -- ************************** ERROR REPORTING ************************************
987: x_error_msg := 'Successfully inserted '||k||' facilities ';
988: x_error_msg := x_error_msg || 'into FTE_LOCATION_PARAMETERS';
989: logmsg(l_module_name, x_error_msg);
990: Fnd_File.Put_Line(Fnd_File.output, x_error_msg);
991:
992: IF (l > 0) THEN
993: x_error_msg := 'Could not create ' || l || ' facilities because they are invalid as facility locations.';
994: LogMsg(l_module_name, x_error_msg );

Line 1005: Fnd_File.Put_Line(Fnd_File.output, '***************************************************************');

1001:
1002: --Report the location IDs that already exist and set return status to warning
1003: IF (g_dup_locations.COUNT > 0 ) THEN
1004: LogMsg(l_module_name, '***************************************************************');
1005: Fnd_File.Put_Line(Fnd_File.output, '***************************************************************');
1006:
1007: LogMsg(l_module_name, '* THE FACILITIES WITH THE FOLLOWING LOCATION IDS ALREADY EXIST');
1008: Fnd_File.Put_Line(Fnd_File.output, '* THE FACILITIES WITH THE FOLLOWING LOCATION IDS ALREADY EXIST');
1009:

Line 1008: Fnd_File.Put_Line(Fnd_File.output, '* THE FACILITIES WITH THE FOLLOWING LOCATION IDS ALREADY EXIST');

1004: LogMsg(l_module_name, '***************************************************************');
1005: Fnd_File.Put_Line(Fnd_File.output, '***************************************************************');
1006:
1007: LogMsg(l_module_name, '* THE FACILITIES WITH THE FOLLOWING LOCATION IDS ALREADY EXIST');
1008: Fnd_File.Put_Line(Fnd_File.output, '* THE FACILITIES WITH THE FOLLOWING LOCATION IDS ALREADY EXIST');
1009:
1010: FOR i IN g_dup_locations.FIRST..g_dup_locations.LAST LOOP
1011: LogMsg(l_module_name, '* ' || i || '. Location ID ' || g_dup_locations(i));
1012: Fnd_File.Put_Line(Fnd_File.output, '* ' || i || '. Location ID ' || g_dup_locations(i));

Line 1012: Fnd_File.Put_Line(Fnd_File.output, '* ' || i || '. Location ID ' || g_dup_locations(i));

1008: Fnd_File.Put_Line(Fnd_File.output, '* THE FACILITIES WITH THE FOLLOWING LOCATION IDS ALREADY EXIST');
1009:
1010: FOR i IN g_dup_locations.FIRST..g_dup_locations.LAST LOOP
1011: LogMsg(l_module_name, '* ' || i || '. Location ID ' || g_dup_locations(i));
1012: Fnd_File.Put_Line(Fnd_File.output, '* ' || i || '. Location ID ' || g_dup_locations(i));
1013: END LOOP;
1014: LogMsg(l_module_name, '***************************************************************');
1015: Fnd_File.Put_Line(Fnd_File.output, '***************************************************************');
1016:

Line 1015: Fnd_File.Put_Line(Fnd_File.output, '***************************************************************');

1011: LogMsg(l_module_name, '* ' || i || '. Location ID ' || g_dup_locations(i));
1012: Fnd_File.Put_Line(Fnd_File.output, '* ' || i || '. Location ID ' || g_dup_locations(i));
1013: END LOOP;
1014: LogMsg(l_module_name, '***************************************************************');
1015: Fnd_File.Put_Line(Fnd_File.output, '***************************************************************');
1016:
1017: IF (x_return_status <> WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR ) THEN
1018: x_return_status := WSH_UTIL_CORE.G_RET_STS_WARNING;
1019: x_error_msg := 'Some facilities already exist. Please check log file for details';

Line 1020: Fnd_File.Put_Line(Fnd_File.output,

1016:
1017: IF (x_return_status <> WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR ) THEN
1018: x_return_status := WSH_UTIL_CORE.G_RET_STS_WARNING;
1019: x_error_msg := 'Some facilities already exist. Please check log file for details';
1020: Fnd_File.Put_Line(Fnd_File.output,
1021: 'WARNING: Some facilities already exist. Please check log file for details');
1022: END IF;
1023: END IF;
1024: