DBA Data[Home] [Help]

APPS.INV_LOT_SEL_ATTR dependencies on INV_LOG_UTIL

Line 21: inv_log_util.TRACE ('$Header: INVLSDFB.pls 120.16.12020000.6 2013/01/08 08:28:05 xzhixong ship $',

17: BEGIN
18:
19: IF NOT g_version_printed THEN
20: IF (l_debug = 1 ) THEN /* Bug#5401181*/
21: inv_log_util.TRACE ('$Header: INVLSDFB.pls 120.16.12020000.6 2013/01/08 08:28:05 xzhixong ship $',
22: g_pkg_name,
23: 9
24: );
25: END IF;

Line 30: inv_log_util.TRACE (

26: g_version_printed := TRUE;
27:
28: END IF;
29: IF (l_debug = 1 ) THEN /* Bug#5401181*/
30: inv_log_util.TRACE (
31: p_message,
32: g_pkg_name || '.' || p_module,
33: p_level
34: );

Line 427: inv_log_util.trace('Get Flexfield ' || p_attributes_name, 'LOTSERATTR');

423: l_count NUMBER;
424: BEGIN
425: -- Get flexfield
426: IF (l_debug = 1) THEN
427: inv_log_util.trace('Get Flexfield ' || p_attributes_name, 'LOTSERATTR');
428: END IF;
429: fnd_dflex.get_flexfield('INV', p_attributes_name, v_flexfield, v_flexinfo);
430:
431: -- Get Contexts

Line 434: inv_log_util.trace('Get context ' , 'LOTSERATTR');

430:
431: -- Get Contexts
432: fnd_dflex.get_contexts(v_flexfield, v_contexts);
433: IF (l_debug = 1) THEN
434: inv_log_util.trace('Get context ' , 'LOTSERATTR');
435: END IF;
436: /*bug 2474713 retrieve the context_column_name and the context_prompt */
437: l_context_column_name := v_flexinfo.context_column_name;
438: l_context_prompt := v_flexinfo.form_context_prompt;

Line 462: inv_log_util.trace('get segment', 'LOTSERATTR');

458: v_contexts.is_global(i))) THEN
459:
460: -- Get segmentse
461: IF (l_debug = 1) THEN
462: inv_log_util.trace('get segment', 'LOTSERATTR');
463: END IF;
464: fnd_dflex.get_segments(fnd_dflex.make_context(
465: v_flexfield, v_contexts.context_code(i)), v_segments, TRUE);
466:

Line 504: inv_log_util.trace('assign default value ', 'LOTSERATTR');

500: * only required segments.
501: *------------------------------------------------------------------*/
502:
503: IF (l_debug = 1) THEN
504: inv_log_util.trace('assign default value ', 'LOTSERATTR');
505: END IF;
506: v_rec_index := 0;
507:
508: <>

Line 520: inv_log_util.trace('get_column_type', 'LOTSERATTR');

516: IF(NOT(v_contexts.is_global(i))) THEN
517: v_rec_index := v_rec_index + 1;
518: x_attributes_default(v_rec_index).COLUMN_NAME := l_context_column_name;
519: IF (l_debug = 1) THEN
520: inv_log_util.trace('get_column_type', 'LOTSERATTR');
521: END IF;
522: get_column_type(
523: p_table_name => p_table_name,
524: p_column_name => x_attributes_default(v_rec_index).COLUMN_NAME,

Line 553: inv_log_util.trace('is all null', 'LOTSERATTR');

549:
550: /* Case 1: all the input are null, give default values to all the columns*/
551: IF(v_isAllNull) THEN
552: if( l_debug = 1) then
553: inv_log_util.trace('is all null', 'LOTSERATTR');
554: end if;
555:
556: if( v_segments.default_type(j) = 'S') then
557: open default_value_csr for v_segments.default_value(j);

Line 646: inv_log_util.trace('error inv_lot_sel_default_required', 'LOTSERATTR');

642: /* Check if segment is required, default value can not be NULL */
643: IF (v_segments.is_required(j)) THEN
644: IF(x_attributes_default(v_rec_index).COLUMN_VALUE IS NULL) THEN
645: IF (l_debug = 1) THEN
646: inv_log_util.trace('error inv_lot_sel_default_required', 'LOTSERATTR');
647: END IF;
648: fnd_message.set_name('INV', 'INV_LOT_SEL_DEFAULT_REQUIRED');
649: fnd_message.set_token('ATTRNAME',p_attributes_name);
650: fnd_message.set_token('CONTEXTCODE', v_contexts.context_code(i));