Set the certification status of a geometry (a.k.a. representation) of a feature version.
The certification status IDs are listed in the following table.
ID | Certification Status |
|---|---|
1 | Verified |
2 | Not Verified |
3 | Rejected |
4 | Accepted |
6 | Under Construction |
The following status transitions are valid:
• Under Construction to Not Verified
• Not Verified To Accepted, Verified, or Rejected
• Accepted to Verified or Rejected
Input
Parameter | Type | Description |
|---|---|---|
v_spatver_id | NUMBER | The primary key of a spatial version. |
v_certstatus_id | NUMBER | The primary key of a certification status. |
Example
exec p_feature_api.setRepresentationCertification(:SPATVER_ID, :CERTSTATUS_ID); |
Exceptions
• Spatial version 'spatver_id' is invalid or does not currently exist.
• Certstatus_id 'certstatus_id' is invalid or does not currently exist.
• Product 'product_id' is inactive and can not be modified.
• Chart 'chart_id' is inactive and can not be modified.
• Spatial version ID 'spatver_id' has been deleted. Certification can not be set.
• Spatial version ID 'spatver_id' is not current. Certification can not be set.
• Not a valid transition
• Failed to update certification status.