A_CollateralStatusObject

DDL: A_COLLATERALSTATUSOBJECT Type: view_entity CONSUMPTION

Collateral Object Status

A_CollateralStatusObject is a Consumption CDS View that provides data about "Collateral Object Status" in SAP S/4HANA. It reads from 1 data source (I_CollateralStatusObject) and exposes 7 fields with key fields StatusObjectUUID, StatusCode.

Data Sources (1)

SourceAliasJoin Type
I_CollateralStatusObject I_CollateralStatusObject projection

Annotations (9)

NameValueLevelField
EndUserText.label Collateral Object Status view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
OData.entityType.name CollateralObjectStatus_Type view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY StatusObjectUUID StatusObjectUUID Val. Obj. No.
KEY StatusCode StatusCode Statuscode
StatusName StatusName
StatusProfile StatusProfile Status Profile
StatusProfileName StatusProfileName
IsUserStatus IsUserStatus
StatusIsActive StatusIsActive

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view A_CollateralStatusObject.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW A_CollateralStatusObject AS
SELECT
  StatusObjectUUID,
  StatusCode,
  StatusName,
  StatusProfile,
  StatusProfileName,
  IsUserStatus,
  StatusIsActive
FROM I_CollateralStatusObject
;