DBA Data[Home] [Help]

APPS.BSC_AW_READ dependencies on FND_LOG

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

1583: ---------------------------------------------------------------------------
1584: procedure init_all is
1585: Begin
1586: if bsc_aw_utility.get_parameter_value(bsc_aw_utility.g_options,'DEBUG LOG')='Y'
1587: or bsc_aw_utility.g_log_level>=FND_LOG.G_CURRENT_RUNTIME_LEVEL then
1588: g_debug:=true;
1589: else
1590: g_debug:=false;
1591: end if;

Line 1600: g_log_type:='fnd log';

1596: g_std_dim:=bsc_aw_adapter_dim.get_std_dim_list;
1597: if nvl(bsc_aw_utility.get_parameter_value('FILE LOG'),'N')='Y' then
1598: g_log_type:='file log';
1599: else
1600: g_log_type:='fnd log';
1601: end if;
1602: Exception when others then
1603: null;
1604: End;

Line 1608: if g_log_type='fnd log' then

1604: End;
1605:
1606: procedure log(p_message varchar2) is
1607: Begin
1608: if g_log_type='fnd log' then
1609: bsc_aw_utility.log_fnd(p_message,bsc_aw_utility.g_log_level);
1610: else
1611: bsc_aw_utility.log(p_message);
1612: end if;