DBA Data[Home] [Help]

APPS.EAM_COMMON_UTILITIES_PVT dependencies on FND_LOG

Line 2624: if( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then

2620: l_msg_data_1 varchar2(2000) := NULL;
2621: l_return_char varchar2(2000) := NULL;
2622: begin
2623: -- This should be called only if logging is enabled.
2624: if( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then
2625: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, p_module,
2626: p_api || ' returns. '|| 'Return Status = ' || p_return_status ||
2627: '. Message Count = ' || p_msg_count);
2628: end if;

Line 2625: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, p_module,

2621: l_return_char varchar2(2000) := NULL;
2622: begin
2623: -- This should be called only if logging is enabled.
2624: if( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then
2625: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, p_module,
2626: p_api || ' returns. '|| 'Return Status = ' || p_return_status ||
2627: '. Message Count = ' || p_msg_count);
2628: end if;
2629: if (p_msg_data is not null) then

Line 2630: if( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then

2626: p_api || ' returns. '|| 'Return Status = ' || p_return_status ||
2627: '. Message Count = ' || p_msg_count);
2628: end if;
2629: if (p_msg_data is not null) then
2630: if( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then
2631: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, p_module,
2632: 'Last Message = ' || REPLACE(p_msg_data, CHR(0), ' ')); --null p_msg_data is OK
2633: end if;
2634: end if;

Line 2631: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, p_module,

2627: '. Message Count = ' || p_msg_count);
2628: end if;
2629: if (p_msg_data is not null) then
2630: if( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then
2631: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, p_module,
2632: 'Last Message = ' || REPLACE(p_msg_data, CHR(0), ' ')); --null p_msg_data is OK
2633: end if;
2634: end if;
2635: FND_MSG_PUB.Count_And_Get('T', l_msg_count_1, l_msg_data_1);

Line 2638: if( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then

2634: end if;
2635: FND_MSG_PUB.Count_And_Get('T', l_msg_count_1, l_msg_data_1);
2636: if ((l_msg_count_1 is not null) and (l_msg_count_1 > 0) and
2637: ((p_msg_count is null) or (l_msg_count_1 <> p_msg_count))) then
2638: if( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then
2639: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, p_module,
2640: 'Message Count (from message Stack)= ' || l_msg_count_1);
2641: end if;
2642: end if;

Line 2639: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, p_module,

2635: FND_MSG_PUB.Count_And_Get('T', l_msg_count_1, l_msg_data_1);
2636: if ((l_msg_count_1 is not null) and (l_msg_count_1 > 0) and
2637: ((p_msg_count is null) or (l_msg_count_1 <> p_msg_count))) then
2638: if( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then
2639: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, p_module,
2640: 'Message Count (from message Stack)= ' || l_msg_count_1);
2641: end if;
2642: end if;
2643: l_msg_data_1 := fnd_msg_pub.get(fnd_msg_pub.G_FIRST, FND_API.G_FALSE); --set encoded to true

Line 2645: if( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then

2641: end if;
2642: end if;
2643: l_msg_data_1 := fnd_msg_pub.get(fnd_msg_pub.G_FIRST, FND_API.G_FALSE); --set encoded to true
2644: if (l_msg_count_1 is not null and l_msg_count_1 > 0) then
2645: if( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then
2646: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, p_module,
2647: 'Message #1 (from message stack) =' || l_msg_data_1);
2648: end if;
2649: for i in 2..l_msg_count_1 LOOP

Line 2646: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, p_module,

2642: end if;
2643: l_msg_data_1 := fnd_msg_pub.get(fnd_msg_pub.G_FIRST, FND_API.G_FALSE); --set encoded to true
2644: if (l_msg_count_1 is not null and l_msg_count_1 > 0) then
2645: if( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then
2646: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, p_module,
2647: 'Message #1 (from message stack) =' || l_msg_data_1);
2648: end if;
2649: for i in 2..l_msg_count_1 LOOP
2650: l_msg_data_1 := fnd_msg_pub.get(fnd_msg_pub.G_NEXT, FND_API.G_FALSE); --set encoded to true

Line 2651: if( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then

2647: 'Message #1 (from message stack) =' || l_msg_data_1);
2648: end if;
2649: for i in 2..l_msg_count_1 LOOP
2650: l_msg_data_1 := fnd_msg_pub.get(fnd_msg_pub.G_NEXT, FND_API.G_FALSE); --set encoded to true
2651: if( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then
2652: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, p_module,
2653: 'Message #' || to_char(i) || ' (from message stack) =' || l_msg_data_1);
2654: end if;
2655: END LOOP;

Line 2652: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, p_module,

2648: end if;
2649: for i in 2..l_msg_count_1 LOOP
2650: l_msg_data_1 := fnd_msg_pub.get(fnd_msg_pub.G_NEXT, FND_API.G_FALSE); --set encoded to true
2651: if( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then
2652: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, p_module,
2653: 'Message #' || to_char(i) || ' (from message stack) =' || l_msg_data_1);
2654: end if;
2655: END LOOP;
2656: end if;