DBA Data[Home] [Help]

APPS.QP_CATEGORY_MAPPING_RULE dependencies on OE_SYS_PARAMETERS

Line 115: --passing null org_id to OE_Sys_Parameters for moac so that it will return MASTER_ORGANIZATION_ID

111:
112: l_appl_id := FND_GLOBAL.RESP_APPL_ID;
113:
114: IF QP_ATTR_MAPPING_PUB.G_REQ_TYPE_CODE = 'ONT' THEN
115: --passing null org_id to OE_Sys_Parameters for moac so that it will return MASTER_ORGANIZATION_ID
116: --for the org_context set -- build_contexts API or calling app would have set 'single' org context
117: --added for moac to call oe_sys_params only when org_id is not null
118: l_ou_org_id := QP_UTIL.get_org_id;
119: IF l_ou_org_id IS NOT NULL THEN

Line 120: l_org_id := OE_Sys_Parameters.Value('MASTER_ORGANIZATION_ID', l_ou_org_id);

116: --for the org_context set -- build_contexts API or calling app would have set 'single' org context
117: --added for moac to call oe_sys_params only when org_id is not null
118: l_ou_org_id := QP_UTIL.get_org_id;
119: IF l_ou_org_id IS NOT NULL THEN
120: l_org_id := OE_Sys_Parameters.Value('MASTER_ORGANIZATION_ID', l_ou_org_id);
121: ELSE -- get master org from QP profile value
122: l_org_id := FND_PROFILE.Value('QP_ORGANIZATION_ID');
123: END IF;
124: ELSE