DBA Data[Home] [Help]

APPS.QP_DEFAULT_MODIFIER_LIST dependencies on OE_SYS_PARAMETERS

Line 42: -- function oe_sys_parameters.value() to get the default currency.

38: BEGIN
39:
40: oe_debug_Pub.add('entering currency');
41: -- MKARYA for bug 1745313, commented out the procedure call FND_PROFILE.GET() and instead using the
42: -- function oe_sys_parameters.value() to get the default currency.
43: --added for moac to call Oe_sys_params only if org_id is not null
44: l_org_id := QP_UTIL.get_org_id;
45: IF l_org_id IS NOT NULL THEN
46: l_set_of_books_id := oe_sys_parameters.value('SET_OF_BOOKS_ID', l_org_id);

Line 46: l_set_of_books_id := oe_sys_parameters.value('SET_OF_BOOKS_ID', l_org_id);

42: -- function oe_sys_parameters.value() to get the default currency.
43: --added for moac to call Oe_sys_params only if org_id is not null
44: l_org_id := QP_UTIL.get_org_id;
45: IF l_org_id IS NOT NULL THEN
46: l_set_of_books_id := oe_sys_parameters.value('SET_OF_BOOKS_ID', l_org_id);
47: ELSE
48: l_set_of_books_id := null;
49: END IF;--if l_org_id
50: -- FND_PROFILE.GET('OE_SET_OF_BOOKS_ID', l_set_of_books_id);