Any two feature versions can be compared. For example, the current version and a previous version can be compared or an HPD Source version and a product version can be compared or two separate features can be compared.
Input
Parameter | Type | Description |
|---|---|---|
v_featver_id1 | NUMBER | A feature version ID. |
v_featver_id2 | NUMBER | Another feature version ID. |
Output
Type | Description |
|---|---|
modified_attribs_info_tab Pipelined array | The modified attributes and value of a given feature (acronym, initial value, end value). See below. |
Definition of MODIFIED_ATTRIBS_INFO_TAB
Name | Type | Description |
|---|---|---|
acronym | VARCHAR2 | Attribute acronym. |
att_value | CLOB | Attribute value from the v_featver_id1 feature version |
att_value2 | CLOB | Attribute value from the v_featver_id2 feature version |
Example
SELECT * FROM TABLE (p_feature_api.getmodifiedattributes(&id1, &id2)); |