DBA Data[Home] [Help]

APPS.EDW_OWB_COLLECTION_UTIL dependencies on FND_LOG

Line 1073: l_severity:=FND_LOG.LEVEL_STATEMENT;

1069: procedure write_to_log_file(p_message varchar2) is
1070: l_severity number;
1071: Begin
1072: write_to_conc_log_file(p_message);
1073: l_severity:=FND_LOG.LEVEL_STATEMENT;
1074: if l_severity>=FND_LOG.G_CURRENT_RUNTIME_LEVEL and g_version_GT_1159 then --this is for perf
1075: write_to_fnd_log(p_message,l_severity);
1076: end if;
1077: Exception when others then

Line 1074: if l_severity>=FND_LOG.G_CURRENT_RUNTIME_LEVEL and g_version_GT_1159 then --this is for perf

1070: l_severity number;
1071: Begin
1072: write_to_conc_log_file(p_message);
1073: l_severity:=FND_LOG.LEVEL_STATEMENT;
1074: if l_severity>=FND_LOG.G_CURRENT_RUNTIME_LEVEL and g_version_GT_1159 then --this is for perf
1075: write_to_fnd_log(p_message,l_severity);
1076: end if;
1077: Exception when others then
1078: null;

Line 1075: write_to_fnd_log(p_message,l_severity);

1071: Begin
1072: write_to_conc_log_file(p_message);
1073: l_severity:=FND_LOG.LEVEL_STATEMENT;
1074: if l_severity>=FND_LOG.G_CURRENT_RUNTIME_LEVEL and g_version_GT_1159 then --this is for perf
1075: write_to_fnd_log(p_message,l_severity);
1076: end if;
1077: Exception when others then
1078: null;
1079: End;--procedure write_to_log_file(p_message varchar2) is

Line 1084: if p_severity>=FND_LOG.G_CURRENT_RUNTIME_LEVEL and g_version_GT_1159 then --this is for perf

1080:
1081: procedure write_to_log_file(p_message varchar2,p_severity number) is
1082: Begin
1083: write_to_conc_log_file(p_message);
1084: if p_severity>=FND_LOG.G_CURRENT_RUNTIME_LEVEL and g_version_GT_1159 then --this is for perf
1085: write_to_fnd_log(p_message,p_severity);
1086: end if;
1087: Exception when others then
1088: null;

Line 1085: write_to_fnd_log(p_message,p_severity);

1081: procedure write_to_log_file(p_message varchar2,p_severity number) is
1082: Begin
1083: write_to_conc_log_file(p_message);
1084: if p_severity>=FND_LOG.G_CURRENT_RUNTIME_LEVEL and g_version_GT_1159 then --this is for perf
1085: write_to_fnd_log(p_message,p_severity);
1086: end if;
1087: Exception when others then
1088: null;
1089: End;--procedure write_to_log_file(p_message varchar2) is

Line 1138: for 11.5.10. log messages must be written to fnd log

1134: null;
1135: End;--procedure write_to_out_file(p_message varchar2) is
1136:
1137: /*
1138: for 11.5.10. log messages must be written to fnd log
1139: */
1140: procedure write_to_fnd_log(
1141: p_message varchar2,
1142: p_severity number) is

Line 1140: procedure write_to_fnd_log(

1136:
1137: /*
1138: for 11.5.10. log messages must be written to fnd log
1139: */
1140: procedure write_to_fnd_log(
1141: p_message varchar2,
1142: p_severity number) is
1143: l_len number;
1144: l_start number:=1;

Line 1151: if g_fnd_log_module is null then

1147: Begin
1148: if p_message is null or p_message='' then
1149: return;
1150: end if;
1151: if g_fnd_log_module is null then
1152: g_fnd_log_module:='BIS';--default
1153: g_fnd_log_module:=g_fnd_log_module||'.EDW';
1154: end if;
1155: l_len:=nvl(length(p_message),0);

Line 1152: g_fnd_log_module:='BIS';--default

1148: if p_message is null or p_message='' then
1149: return;
1150: end if;
1151: if g_fnd_log_module is null then
1152: g_fnd_log_module:='BIS';--default
1153: g_fnd_log_module:=g_fnd_log_module||'.EDW';
1154: end if;
1155: l_len:=nvl(length(p_message),0);
1156: if l_len <=0 then

Line 1153: g_fnd_log_module:=g_fnd_log_module||'.EDW';

1149: return;
1150: end if;
1151: if g_fnd_log_module is null then
1152: g_fnd_log_module:='BIS';--default
1153: g_fnd_log_module:=g_fnd_log_module||'.EDW';
1154: end if;
1155: l_len:=nvl(length(p_message),0);
1156: if l_len <=0 then
1157: return;

Line 1165: if p_severity>=FND_LOG.G_CURRENT_RUNTIME_LEVEL then --this is for perf

1161: if l_end>=l_len then
1162: --l_end:=l_len;
1163: last_reached:=true;
1164: end if;
1165: if p_severity>=FND_LOG.G_CURRENT_RUNTIME_LEVEL then --this is for perf
1166: FND_LOG.STRING(p_severity,g_fnd_log_module,substr(p_message, l_start,3990));
1167: end if;
1168: l_start:=l_start+3990;
1169: if last_reached then

Line 1166: FND_LOG.STRING(p_severity,g_fnd_log_module,substr(p_message, l_start,3990));

1162: --l_end:=l_len;
1163: last_reached:=true;
1164: end if;
1165: if p_severity>=FND_LOG.G_CURRENT_RUNTIME_LEVEL then --this is for perf
1166: FND_LOG.STRING(p_severity,g_fnd_log_module,substr(p_message, l_start,3990));
1167: end if;
1168: l_start:=l_start+3990;
1169: if last_reached then
1170: exit;

Line 1174: write_to_conc_log_file('Error in write_to_fnd_log '||g_status_message);

1170: exit;
1171: end if;
1172: end loop;
1173: Exception when others then
1174: write_to_conc_log_file('Error in write_to_fnd_log '||g_status_message);
1175: End;
1176:
1177: procedure print_stmt(l_stmt in varchar2) IS
1178:

Line 10743: p_fnd_log_module varchar2

10739:
10740: procedure init_all(
10741: p_object_name varchar2,
10742: p_debug boolean,
10743: p_fnd_log_module varchar2
10744: )is
10745: Begin
10746: if p_object_name is not null then
10747: setup_conc_program_log(p_object_name);

Line 10752: if p_fnd_log_module is not null then

10748: end if;
10749: if p_debug is not null then
10750: set_debug(p_debug);
10751: end if;
10752: if p_fnd_log_module is not null then
10753: g_fnd_log_module:=p_fnd_log_module;
10754: end if;
10755: Exception when others then
10756: null;

Line 10753: g_fnd_log_module:=p_fnd_log_module;

10749: if p_debug is not null then
10750: set_debug(p_debug);
10751: end if;
10752: if p_fnd_log_module is not null then
10753: g_fnd_log_module:=p_fnd_log_module;
10754: end if;
10755: Exception when others then
10756: null;
10757: End;