I_CmplRqRsltSftyDataShtDoc

DDL: I_CMPLRQRSLTSFTYDATASHTDOC SQL: ICRRSDSDOC Type: view BASIC

CmplRqRslt SDS Document Info

I_CmplRqRsltSftyDataShtDoc is a Basic CDS View that provides data about "CmplRqRslt SDS Document Info" in SAP S/4HANA. It reads from 1 data source (ehsdsv_crr_doc) and exposes 13 fields with key field CmplRqRsltDocInfoUUID. It has 2 associations to related views. It is exposed through 1 OData service (UI_EHS_FND_CRR_OVERVIEW).

Data Sources (1)

SourceAliasJoin Type
ehsdsv_crr_doc ehsdsv_crr_doc from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_CmplRqRslt _CmplRqRslt $projection.CmplRqRsltUUID = _CmplRqRslt.CmplRqRsltUUID
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICRRSDSDOC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label CmplRqRslt SDS Document Info view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.transactionalProcessingEnabled true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.representativeKey CmplRqRsltDocInfoUUID view

OData Services (1)

ServiceBindingVersionContractRelease
UI_EHS_FND_CRR_OVERVIEW UI_EHS_FND_CRR_OVERVIEW V2 C1 NOT_RELEASED

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY CmplRqRsltDocInfoUUID cmplrqrsltdocinfouuid Document Information
CmplRqRsltUUID cmplrqrsltuuid SDS Assessment
Language language Report Text Language
CmplRqRsltSftyDataShtDocStatus cmplrqrsltsftydatashtdocstatus Safety Data Sheet Status
CreationDateTime creationdatetime Timestamp
CreatedByUser createdbyuser User Name
LastChangeDateTime lastchangedatetime Timestamp
LastChangedByUser lastchangedbyuser User Name
CmplRqRsltSftyDataShtCrtnDate cmplrqrsltsftydatashtcrtndate Generation Date
CmplRqRsltSftyDataShtMajorVers cmplrqrsltsftydatashtmajorvers Major Version
CmplRqRsltSftyDataShtSubVers cmplrqrsltsftydatashtsubvers Subversion
_CmplRqRslt _CmplRqRslt
_Language _Language

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_CmplRqRsltSftyDataShtDoc.
-- 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.
-- SQL view name: ICRRSDSDOC

CREATE VIEW I_CmplRqRsltSftyDataShtDoc AS
SELECT
  CmplRqRsltDocInfoUUID,
  CmplRqRsltUUID,
  Language,
  CmplRqRsltSftyDataShtDocStatus,
  CreationDateTime,
  CreatedByUser,
  LastChangeDateTime,
  LastChangedByUser,
  CmplRqRsltSftyDataShtCrtnDate,
  CmplRqRsltSftyDataShtMajorVers,
  CmplRqRsltSftyDataShtSubVers
FROM ehsdsv_crr_doc
LEFT OUTER JOIN I_CmplRqRslt AS _CmplRqRslt ON CmplRqRsltUUID = _CmplRqRslt.CmplRqRsltUUID  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [1..1]
;