DBA Data[Home] [Help]

APPS.QP_CATEGORY_MAPPING_RULE dependencies on OE_SYS_PARAMETERS

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

173:
174: l_appl_id := FND_GLOBAL.RESP_APPL_ID;
175:
176: IF QP_ATTR_MAPPING_PUB.G_REQ_TYPE_CODE = 'ONT' THEN
177: --passing null org_id to OE_Sys_Parameters for moac so that it will return MASTER_ORGANIZATION_ID
178: --for the org_context set -- build_contexts API or calling app would have set 'single' org context
179: --added for moac to call oe_sys_params only when org_id is not null
180: l_ou_org_id := QP_UTIL.get_org_id;
181: IF l_ou_org_id IS NOT NULL THEN

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

178: --for the org_context set -- build_contexts API or calling app would have set 'single' org context
179: --added for moac to call oe_sys_params only when org_id is not null
180: l_ou_org_id := QP_UTIL.get_org_id;
181: IF l_ou_org_id IS NOT NULL THEN
182: l_org_id := OE_Sys_Parameters.Value('MASTER_ORGANIZATION_ID', l_ou_org_id);
183: ELSE -- get master org from QP profile value
184: l_org_id := FND_PROFILE.Value('QP_ORGANIZATION_ID');
185: END IF;
186: ELSE