DBA Data[Home] [Help]

APPS.QLTDACTB dependencies on QA_PLAN_ELEMENT_API

Line 1762: Priority_exists := qa_plan_element_api.element_in_plan(Y_PLAN_ID, ELEMENT_ID);

1758: --dgupta: End R12 EAM Integration. Bug 4345492
1759:
1760: -- check to see if priority element exists in the plan
1761:
1762: Priority_exists := qa_plan_element_api.element_in_plan(Y_PLAN_ID, ELEMENT_ID);
1763:
1764:
1765: if (Priority_exists = TRUE) then
1766: -- get the soft column name mapped to the 'priority' element.

Line 1919: qa_plan_element_api.get_asset_instance_id(X_ASSET_GROUP_ID, X_ASSET_NUMBER);

1915: l_work_order_rec.rebuild_item_id :=X_ASSET_GROUP_ID;
1916: l_work_order_rec.maintenance_object_type := 2;
1917: elsif (X_ASSET_GROUP_ID is not null) then
1918: l_work_order_rec.maintenance_object_id :=
1919: qa_plan_element_api.get_asset_instance_id(X_ASSET_GROUP_ID, X_ASSET_NUMBER);
1920: l_work_order_rec.maintenance_object_type := 3;
1921: l_work_order_rec.asset_group_id := to_number(QLTNINRB.NAME_IN('ASSET_GROUP_ID'));
1922: l_work_order_rec.asset_number := QLTNINRB.NAME_IN('ASSET_NUMBER');
1923:

Line 2609: denorm_val := qa_plan_element_api.get_supplier_id(denorm_val);

2605: -- IF assigned_col = 'ITEM_ID' THEN
2606: IF assigned_col IN ( 'ITEM_ID', 'COMP_ITEM_ID') THEN
2607: denorm_val := to_char(QA_FLEX_UTIL.get_item_id(to_number(QLTNINRB.NAME_IN('ORGANIZATION_ID')),denorm_val));
2608: ELSIF assigned_col = 'VENDOR_ID' THEN
2609: denorm_val := qa_plan_element_api.get_supplier_id(denorm_val);
2610: END IF;
2611: END;
2612:
2613: PROCEDURE DO_ASSIGNMENT(X_PCA_ID NUMBER,

Line 3203: qa_plan_element_api.get_low_high_values(

3199: -- or the specs defined on the collection element.
3200: -- If the spec_id is not null which means that a user defined
3201: -- spec has been selected then the API performs the UOM conversions
3202: -- as well
3203: qa_plan_element_api.get_low_high_values(
3204: p_plan_id, p_spec_id, p_char_id,
3205: p_lowval_lookup, p_highval_lookup,
3206: low_val, high_val);
3207:

Line 3214: low_val := qa_plan_element_api.perform_uom_conversion(

3210: -- UOM as that of the collection plan then the UOM conversion needs to
3211: -- be done.
3212: IF (p_char_uom <> p_plan_uom and
3213: P_spec_id = 0) THEN
3214: low_val := qa_plan_element_api.perform_uom_conversion(
3215: p_source_val => low_val ,
3216: p_precision => p_precision,
3217: p_source_UOM => p_char_uom,
3218: p_target_UOM => p_plan_uom);

Line 3257: qa_plan_element_api.get_low_high_values(

3253: -- or the specs defined on the collection element.
3254: -- If the spec_id is not null which means that a user defined
3255: -- spec has been selected then the API performs the UOM conversions
3256: -- as well
3257: qa_plan_element_api.get_low_high_values(
3258: p_plan_id, p_spec_id, p_char_id,
3259: p_lowval_lookup, p_highval_lookup,
3260: low_val, high_val);
3261:

Line 3268: high_val := qa_plan_element_api.perform_uom_conversion(

3264: -- UOM as that of the collection plan then the UOM conversion needs to
3265: -- be done.
3266: IF (p_char_uom <> p_plan_uom and
3267: P_spec_id = 0) THEN
3268: high_val := qa_plan_element_api.perform_uom_conversion(
3269: p_source_val => high_val ,
3270: p_precision => p_precision,
3271: p_source_UOM => p_char_uom,
3272: p_target_UOM => p_plan_uom);