I_CollateralStatusObject

DDL: I_COLLATERALSTATUSOBJECT Type: view_entity BASIC

Collateral Object Status

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

Data Sources (1)

SourceAliasJoin Type
crm_jest crm_jest from

Annotations (7)

NameValueLevelField
EndUserText.label Collateral Object Status view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY StatusObjectUUID crm_jest objnr Val. Obj. No.
KEY StatusCode crm_jest stat Status of Time-Dependent Document Linkage
txt30endasStatusName

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 I_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 I_CollateralStatusObject AS
SELECT
  crm_jest.objnr AS StatusObjectUUID,
  crm_jest.stat AS StatusCode,
  case when crm_jest.stat like 'E%' then tj30t.txt30 else tj02t.txt30 end as StatusName AS txt30endasStatusName
FROM crm_jest
;