DBA Data[Home] [Help]

APPS.CZ_DEVELOPER_UTILS_PVT dependencies on CZ_UI_TEMPLATE_ELEMENTS

Line 5532: INTO cz_ui_template_elements (TEMPLATE_ID,

5528:
5529: END IF;
5530:
5531: INSERT
5532: INTO cz_ui_template_elements (TEMPLATE_ID,
5533: UI_DEF_ID,
5534: ELEMENT_TYPE,
5535: ELEMENT_ID,
5536: PERSISTENT_ELEMENT_ID,

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

5544: '0',
5545: '0');
5546: ELSE
5547: -- This can happen in case of seeded template elements
5548: -- Seeded template elements do not have a record in cz_ui_template_elements
5549: -- In such a case we do not create the new template_element record
5550: -- and continue using the same element_id
5551: l_new_element_id := l_element_id;
5552:

Line 5776: FROM cz_ui_template_elements

5772: decode(element_type,
5773: 552, G_UI_ACTION_TYPE,
5774: 8, G_INTL_TEXT_TYPE,
5775: G_RULE_TYPE) entity_type
5776: FROM cz_ui_template_elements
5777: WHERE template_id = p_template_id
5778: AND ui_def_Id = 0
5779: AND deleted_flag = '0')
5780: LOOP

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

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

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

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