DBA Data[Home] [Help]

APPS.EAM_COMMON_UTILITIES_PVT dependencies on FND_LOG

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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