DBA Data[Home] [Help]

APPS.QA_PARENT_CHILD_COPY_PKG dependencies on QA_SS_PARENT_CHILD_PKG

Line 45: QA_SS_PARENT_CHILD_PKG.insert_plan_rel(

41:
42: --now perform the actual insert, use table handler instead of insert_plan_rel to avoid
43: --calls to qa_ak_mapping_api
44: /*
45: QA_SS_PARENT_CHILD_PKG.insert_plan_rel(
46: p_parent_plan_id => p_target_parent_plan_id,
47: p_child_plan_id => p_target_child_plan_id,
48: p_plan_relationship_type => c1_rec.plan_relationship_type,
49: p_data_entry_mode => c1_rec.data_entry_mode,

Line 95: QA_SS_PARENT_CHILD_PKG.insert_element_rel(

91: BEGIN
92: --for each element relationship, insert an identical relationship with the
93: --new_plan_relationship_id also
94: FOR c1_rec IN C1 LOOP
95: QA_SS_PARENT_CHILD_PKG.insert_element_rel(
96: p_plan_relationship_id => p_new_plan_relationship_id,
97: p_parent_char_id => c1_rec.parent_char_id,
98: p_child_char_id => c1_rec.child_char_id,
99: p_element_relationship_type => c1_rec.element_relationship_type,

Line 125: QA_SS_PARENT_CHILD_PKG.insert_criteria_rel(

121: l_new_criteria_id NUMBER;
122: BEGIN
123: --for each criteria, insert an identical one with the new_plan_relationship_id
124: FOR c1_rec IN C1 LOOP
125: QA_SS_PARENT_CHILD_PKG.insert_criteria_rel(
126: p_plan_relationship_id => p_new_plan_relationship_id,
127: p_char_id => c1_rec.char_id,
128: p_operator => c1_rec.operator,
129: p_low_value => c1_rec.low_value,