DBA Data[Home] [Help]

APPS.INV_DETAIL_UTIL_PVT dependencies on FND_PROFILE

Line 59: g_debug := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);

55: PROCEDURE print_debug( p_message VARCHAR2, p_level NUMBER := 9 ) IS
56: BEGIN
57:
58: IF (g_conc_program is null) or (g_debug is null) then
59: g_debug := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);
60: if (g_conc_request_id > 0) then
61: g_conc_program := TRUE;
62: end if;
63: END IF;

Line 1200: -- to_number(fnd_profile.value('INV:DETAIL_SERIAL_NUMBERS'));

1196: -- within the given range
1197: -- Bug 1712465 - We now get detail_any_serial from mtl_parameters
1198: -- in the get_request_context procedure.
1199: --x_request_context.detail_any_serial :=
1200: -- to_number(fnd_profile.value('INV:DETAIL_SERIAL_NUMBERS'));
1201:
1202: IF p_suggest_serial = fnd_api.g_true AND
1203: x_request_context.item_serial_control_code NOT IN (1,6) AND
1204: (x_request_context.detail_any_serial = 1 OR

Line 1816: g_debug := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),2);

1812: x_available_sl_qty := 0;
1813: x_serial_index := 0;
1814:
1815: IF g_debug IS NULL or NOT INV_CACHE.is_pickrelease THEN
1816: g_debug := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),2);
1817: END IF;
1818: l_debug := g_debug;
1819:
1820: IF ( l_debug = 1 ) THEN

Line 3267: g_debug := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),2);

3263: END IF;
3264: -- end of debugging section
3265: --
3266: IF g_debug IS NULL or NOT INV_CACHE.is_pickrelease THEN
3267: g_debug := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),2);
3268: END IF;
3269: l_debug := g_debug;
3270:
3271: inv_pp_debug.set_debug_mode(g_debug);

Line 4267: l_debug number := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);

4263: l_msg_count NUMBER;
4264: l_msg_data VARCHAR2(240);
4265: l_status_id NUMBER;
4266: l_status_return VARCHAR2(1):='Y';
4267: l_debug number := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);
4268: l_progress VARCHAR2(20);
4269:
4270:
4271: BEGIN