DBA Data[Home] [Help]

APPS.CZ_DEVELOPER_UTILS_PVT dependencies on CZ_UI_TEMPLATE_ELEMENTS

Line 5561: INTO cz_ui_template_elements (TEMPLATE_ID,

5557:
5558: END IF;
5559:
5560: INSERT
5561: INTO cz_ui_template_elements (TEMPLATE_ID,
5562: UI_DEF_ID,
5563: ELEMENT_TYPE,
5564: ELEMENT_ID,
5565: PERSISTENT_ELEMENT_ID,

Line 5577: -- Seeded template elements do not have a record in cz_ui_template_elements

5573: '0',
5574: '0');
5575: ELSE
5576: -- This can happen in case of seeded template elements
5577: -- Seeded template elements do not have a record in cz_ui_template_elements
5578: -- In such a case we do not create the new template_element record
5579: -- and continue using the same element_id
5580: l_new_element_id := l_element_id;
5581:

Line 5805: FROM cz_ui_template_elements

5801: decode(element_type,
5802: 552, G_UI_ACTION_TYPE,
5803: 8, G_INTL_TEXT_TYPE,
5804: G_RULE_TYPE) entity_type
5805: FROM cz_ui_template_elements
5806: WHERE template_id = p_template_id
5807: AND ui_def_Id = 0
5808: AND deleted_flag = '0')
5809: LOOP

Line 5816: -- 1. To determine if an id found in the XML has a representation in cz_ui_template_elements

5812: -- R64354 => 34
5813: -- T12345 => 8
5814: -- We need to use the prefixes (R,T,A) because the rule_ids, text_ids and action_ids can clash
5815: -- We use the following table for two purposes
5816: -- 1. To determine if an id found in the XML has a representation in cz_ui_template_elements
5817: -- If it does, we copy the cz_ui_tempalte_elements record. If it does not, then the id is
5818: -- probably a seeded id and we wont create a cz_ui_template_elements record for it.
5819: -- 2. In case of a UI Condition, to find the rule_type which can be 33 or 34.
5820: g_element_type_tbl(i.entity_type || TO_CHAR(i.persistent_element_id)) := i.element_type;

Line 5818: -- probably a seeded id and we wont create a cz_ui_template_elements record for it.

5814: -- We need to use the prefixes (R,T,A) because the rule_ids, text_ids and action_ids can clash
5815: -- We use the following table for two purposes
5816: -- 1. To determine if an id found in the XML has a representation in cz_ui_template_elements
5817: -- If it does, we copy the cz_ui_tempalte_elements record. If it does not, then the id is
5818: -- probably a seeded id and we wont create a cz_ui_template_elements record for it.
5819: -- 2. In case of a UI Condition, to find the rule_type which can be 33 or 34.
5820: g_element_type_tbl(i.entity_type || TO_CHAR(i.persistent_element_id)) := i.element_type;
5821: END LOOP;
5822: