DBA Data[Home] [Help]

APPS.INV_PRINT_REQUEST dependencies on FND_PROFILE

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

1: PACKAGE BODY INV_PRINT_REQUEST AS
2: /* $Header: INVPRRQB.pls 120.1 2006/03/02 00:44:24 dchithir noship $ */
3:
4: PROCEDURE trace(p_message VARCHAR2) IS
5: l_debug number := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);
6: BEGIN
7: IF (l_debug = 1) THEN
8: inv_label.trace(p_message, 'PRINT_REQUEST');
9: END IF;

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

42: --l_last_index NUMBER;
43: --l_cur_index NUMBER;
44: l_dir_seperator VARCHAR2(1);
45:
46: l_debug number := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);
47: BEGIN
48: -- Initialize API return status to success
49: x_return_status := FND_API.G_RET_STS_SUCCESS;
50:

Line 53: FND_PROFILE.GET('WMS_LABEL_OUTPUT_DIRECTORY', l_output_dir);

49: x_return_status := FND_API.G_RET_STS_SUCCESS;
50:
51: -- Get profile values for output directory
52: -- and output file prefix
53: FND_PROFILE.GET('WMS_LABEL_OUTPUT_DIRECTORY', l_output_dir);
54: IF (l_output_dir IS NULL) OR (trim(l_output_dir) = '') THEN
55: IF (l_debug = 1) THEN
56: trace(' WMS_LABEL_OUTPUT_DIRECTORY is null, can not write XML file ');
57: END IF;

Line 60: FND_PROFILE.GET('WMS_LABEL_FILE_PREFIX', l_output_file_prefix);

56: trace(' WMS_LABEL_OUTPUT_DIRECTORY is null, can not write XML file ');
57: END IF;
58: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
59: END IF;
60: FND_PROFILE.GET('WMS_LABEL_FILE_PREFIX', l_output_file_prefix);
61: IF (l_debug = 1) THEN
62: trace(' Profile value obtained, dir='||l_output_dir ||', prefix='|| l_output_file_prefix);
63: END IF;
64:

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

175: l_return NUMBER;
176: l_return_msg VARCHAR2(2000);
177: l_printer_status VARCHAR2(2000);
178:
179: l_debug number := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);
180:
181: --Fix for Bug: 5004303.
182: l_time DATE;
183: l_delay_time number := NVL(FND_PROFILE.VALUE('WMS_SYNCHRONOUS_TCPIP_LABEL_REQUEST_DELAY'),0);

Line 183: l_delay_time number := NVL(FND_PROFILE.VALUE('WMS_SYNCHRONOUS_TCPIP_LABEL_REQUEST_DELAY'),0);

179: l_debug number := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);
180:
181: --Fix for Bug: 5004303.
182: l_time DATE;
183: l_delay_time number := NVL(FND_PROFILE.VALUE('WMS_SYNCHRONOUS_TCPIP_LABEL_REQUEST_DELAY'),0);
184: --End of fix for 5004303
185:
186: BEGIN
187: -- Initialize API return status to success