DBA Data[Home] [Help]

APPS.QP_CATEGORY_MAPPING_RULE dependencies on QP_UTIL

Line 180: l_ou_org_id := QP_UTIL.get_org_id;

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
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');

Line 242: If qp_util.get_qp_status <>'I' THEN -- Basic pricing

238: CLOSE l_category_cursor;
239: end;
240: */
241: -- new changes for product heirarchy starts here
242: If qp_util.get_qp_status <>'I' THEN -- Basic pricing
243: OPEN l_category_cursor(l_org_id,QP_ATTR_MAPPING_PUB.G_REQ_TYPE_CODE);
244: LOOP
245: FETCH l_category_cursor INTO l_category_id;
246: EXIT WHEN l_category_cursor%NOTFOUND;