DBA Data[Home] [Help]

APPS.INV_PICK_SLIP_REPORT dependencies on FND_PROFILE

Line 220: l_debug := NVL(fnd_profile.VALUE('INV_DEBUG_TRACE'), 0);

216: BEGIN
217: /* Initializing the default values */
218: l_api_name := 'RUN_DETAIL_ENGINE';
219: l_serial_flag := 'F';
220: l_debug := NVL(fnd_profile.VALUE('INV_DEBUG_TRACE'), 0);
221:
222: IF l_debug = 1 THEN
223: mydebug('Running Detail Engine with Parameters...', l_api_name);
224: mydebug(' Organization ID = ' || p_org_id, l_api_name);

Line 243: l_max_batch := TO_NUMBER(fnd_profile.VALUE('INV_PICK_SLIP_BATCH_SIZE'));

239: mydebug(' PickSlip Group Rule = ' || p_pick_slip_group_rule_id, l_api_name);
240: mydebug(' Request ID = ' || p_request_id, l_api_name);
241: END IF;
242:
243: l_max_batch := TO_NUMBER(fnd_profile.VALUE('INV_PICK_SLIP_BATCH_SIZE'));
244:
245: IF (l_debug = 1) THEN
246: mydebug('Maximum Batch Size = ' || l_max_batch, l_api_name);
247: END IF;

Line 478: l_debug := NVL(fnd_profile.VALUE('INV_DEBUG_TRACE'), 0);

474: l_request_id NUMBER;
475: BEGIN
476: /* Initializing the default values */
477: l_api_name := 'PRINT_PICK_SLIP';
478: l_debug := NVL(fnd_profile.VALUE('INV_DEBUG_TRACE'), 0);
479:
480: l_request_id := fnd_request.submit_request(
481: application => 'INV'
482: , program => 'INVTOPKL'