I_CmplRqRsltSftyDataShtDoc

DDL: I_CMPLRQRSLTSFTYDATASHTDOC SQL: ICRRSDSDOC Type: view BASIC Package: EHSDS_CRPAT_SDS

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 18 fields with key field CmplRqRsltDocInfoUUID. It has 2 associations to related views. It is exposed through 2 OData services (ASQL_F2647, UI_EHS_FND_CRR_OVERVIEW). Part of development package EHSDS_CRPAT_SDS.

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 (11)

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

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F2647 ASQL_F2647 C2 NOT_RELEASED
UI_EHS_FND_CRR_OVERVIEW UI_EHS_FND_CRR_OVERVIEW V2 C1 NOT_RELEASED

Fields (18)

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
ApplicationLogHandle applicationloghandle Log Handle
CmplRqRsltSDSDtaBnryIsAvail cmplrqrsltsdsdtabnryisavail
CmplRqRsltSDSDtaBnry cmplrqrsltsdsdtabnry
CmplRqRsltSftyDtaShtDocMjrVers cmplrqrsltsftydtashtdocmjrvers
CmplRqRsltSftyDtaShtDocMnrVers cmplrqrsltsftydtashtdocmnrvers
_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,
  ApplicationLogHandle,
  CmplRqRsltSDSDtaBnryIsAvail,
  CmplRqRsltSDSDtaBnry,
  CmplRqRsltSftyDtaShtDocMjrVers,
  CmplRqRsltSftyDtaShtDocMnrVers
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]
;