DBA Data[Home] [Help]

APPS.QLTDACTB dependencies on QA_PLAN_ELEMENT_API

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

1712: --dgupta: End R12 EAM Integration. Bug 4345492
1713:
1714: -- check to see if priority element exists in the plan
1715:
1716: Priority_exists := qa_plan_element_api.element_in_plan(Y_PLAN_ID, ELEMENT_ID);
1717:
1718:
1719: if (Priority_exists = TRUE) then
1720: -- get the soft column name mapped to the 'priority' element.

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

1840: l_work_order_rec.rebuild_item_id :=X_ASSET_GROUP_ID;
1841: l_work_order_rec.maintenance_object_type := 2;
1842: elsif (X_ASSET_GROUP_ID is not null) then
1843: l_work_order_rec.maintenance_object_id :=
1844: qa_plan_element_api.get_asset_instance_id(X_ASSET_GROUP_ID, X_ASSET_NUMBER);
1845: l_work_order_rec.maintenance_object_type := 3;
1846: l_work_order_rec.asset_group_id := to_number(QLTNINRB.NAME_IN('ASSET_GROUP_ID'));
1847: l_work_order_rec.asset_number := QLTNINRB.NAME_IN('ASSET_NUMBER');
1848:

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

2476: -- IF assigned_col = 'ITEM_ID' THEN
2477: IF assigned_col IN ( 'ITEM_ID', 'COMP_ITEM_ID') THEN
2478: denorm_val := to_char(QA_FLEX_UTIL.get_item_id(to_number(QLTNINRB.NAME_IN('ORGANIZATION_ID')),denorm_val));
2479: ELSIF assigned_col = 'VENDOR_ID' THEN
2480: denorm_val := qa_plan_element_api.get_supplier_id(denorm_val);
2481: END IF;
2482: END;
2483:
2484: PROCEDURE DO_ASSIGNMENT(X_PCA_ID NUMBER,

Line 3046: qa_plan_element_api.get_low_high_values(

3042: -- or the specs defined on the collection element.
3043: -- If the spec_id is not null which means that a user defined
3044: -- spec has been selected then the API performs the UOM conversions
3045: -- as well
3046: qa_plan_element_api.get_low_high_values(
3047: p_plan_id, p_spec_id, p_char_id,
3048: p_lowval_lookup, p_highval_lookup,
3049: low_val, high_val);
3050:

Line 3057: low_val := qa_plan_element_api.perform_uom_conversion(

3053: -- UOM as that of the collection plan then the UOM conversion needs to
3054: -- be done.
3055: IF (p_char_uom <> p_plan_uom and
3056: P_spec_id = 0) THEN
3057: low_val := qa_plan_element_api.perform_uom_conversion(
3058: p_source_val => low_val ,
3059: p_precision => p_precision,
3060: p_source_UOM => p_char_uom,
3061: p_target_UOM => p_plan_uom);

Line 3100: qa_plan_element_api.get_low_high_values(

3096: -- or the specs defined on the collection element.
3097: -- If the spec_id is not null which means that a user defined
3098: -- spec has been selected then the API performs the UOM conversions
3099: -- as well
3100: qa_plan_element_api.get_low_high_values(
3101: p_plan_id, p_spec_id, p_char_id,
3102: p_lowval_lookup, p_highval_lookup,
3103: low_val, high_val);
3104:

Line 3111: high_val := qa_plan_element_api.perform_uom_conversion(

3107: -- UOM as that of the collection plan then the UOM conversion needs to
3108: -- be done.
3109: IF (p_char_uom <> p_plan_uom and
3110: P_spec_id = 0) THEN
3111: high_val := qa_plan_element_api.perform_uom_conversion(
3112: p_source_val => high_val ,
3113: p_precision => p_precision,
3114: p_source_UOM => p_char_uom,
3115: p_target_UOM => p_plan_uom);