DBA Data[Home] [Help]

APPS.BSC_AW_UTILITY dependencies on FND_LOG

Line 874: or bsc_aw_utility.g_log_level>=FND_LOG.G_CURRENT_RUNTIME_LEVEL then

870: */
871: procedure init_all_procedures is
872: Begin
873: if get_parameter_value(g_options,'DEBUG LOG')='Y'
874: or bsc_aw_utility.g_log_level>=FND_LOG.G_CURRENT_RUNTIME_LEVEL then
875: g_debug:=true;
876: else
877: g_debug:=false;
878: end if;

Line 974: if p_severity>=FND_LOG.G_CURRENT_RUNTIME_LEVEL then

970:
971: procedure log_fnd(p_message varchar2,p_severity number) is
972: l_table dbms_sql.varchar2_table;
973: Begin
974: if p_severity>=FND_LOG.G_CURRENT_RUNTIME_LEVEL then
975: convert_varchar2_to_table(p_message,3990,l_table);
976: for i in 1..l_table.count loop
977: FND_LOG.STRING(p_severity,'BSC-AW',l_table(i));
978: end loop;

Line 977: FND_LOG.STRING(p_severity,'BSC-AW',l_table(i));

973: Begin
974: if p_severity>=FND_LOG.G_CURRENT_RUNTIME_LEVEL then
975: convert_varchar2_to_table(p_message,3990,l_table);
976: for i in 1..l_table.count loop
977: FND_LOG.STRING(p_severity,'BSC-AW',l_table(i));
978: end loop;
979: end if;
980: Exception when others then
981: null;