DBA Data[Home] [Help]

APPS.QP_CATEGORY_MAPPING_RULE dependencies on QP_UTIL

Line 118: l_ou_org_id := QP_UTIL.get_org_id;

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

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

176: CLOSE l_category_cursor;
177: end;
178: */
179: -- new changes for product heirarchy starts here
180: If qp_util.get_qp_status <>'I' THEN -- Basic pricing
181: OPEN l_category_cursor(l_org_id,QP_ATTR_MAPPING_PUB.G_REQ_TYPE_CODE);
182: LOOP
183: FETCH l_category_cursor INTO l_category_id;
184: EXIT WHEN l_category_cursor%NOTFOUND;