DBA Data[Home] [Help]

APPS.USER_PKG_LOT dependencies on INV_TRX_UTIL_PUB

Line 57: inv_trx_util_pub.TRACE('Entered use_expired_lots', 'use_expired_lots', 9);

53: BEGIN
54:
55: l_debug := NVL (fnd_profile.VALUE ('INV_DEBUG_TRACE'), 0);
56: IF (l_debug = 1) THEN
57: inv_trx_util_pub.TRACE('Entered use_expired_lots', 'use_expired_lots', 9);
58: END IF;
59:
60: /* Space for custom logic. Please ensure return values are correct */
61: ------------------------------------

Line 65: inv_trx_util_pub.TRACE('returning FALSE', 'use_expired_lots', 9);

61: ------------------------------------
62: ------------------------------------
63:
64: IF (l_debug = 1 ) THEN
65: inv_trx_util_pub.TRACE('returning FALSE', 'use_expired_lots', 9);
66: END IF;
67: RETURN FALSE;
68:
69: EXCEPTION

Line 72: inv_trx_util_pub.TRACE('Exception:'||SQLERRM, 'use_expired_lots', 9);

68:
69: EXCEPTION
70: WHEN OTHERS THEN
71: IF (l_debug = 1 ) THEN
72: inv_trx_util_pub.TRACE('Exception:'||SQLERRM, 'use_expired_lots', 9);
73: END IF;
74: RETURN FALSE;
75: END use_expired_lots;
76: