I_SalesPrvdrContrTechRsce

DDL: I_SALESPRVDRCONTRTECHRSCE SQL: ISLSPRVDCONTRTR Type: view BASIC

Kennungen am Provider-Vertrag

I_SalesPrvdrContrTechRsce is a Basic CDS View that provides data about "Kennungen am Provider-Vertrag" in SAP S/4HANA. It reads from 1 data source (I_ProviderContractTechRsce) and exposes 15 fields with key fields SalesProviderContract, CATechnicalResourceGroup, CATechnicalResourceIDType, CATechnicalResourceID, CATechRsceValidFromDateTime. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ProviderContractTechRsce _SalesProvContrTechRsce from

Associations (1)

CardinalityTargetAliasCondition
[1] I_SalesProviderContract _PrvdrContr $projection.SalesProviderContract = _PrvdrContr.SalesProviderContract

Annotations (12)

NameValueLevelField
VDM.viewType #BASIC view
AbapCatalog.sqlViewName ISLSPRVDCONTRTR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Kennungen am Provider-Vertrag view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY SalesProviderContract ProviderContract Contract
KEY CATechnicalResourceGroup CATechnicalResourceGroup Group of IDs
KEY CATechnicalResourceIDType CATechnicalResourceIDType Type of ID
KEY CATechnicalResourceID CATechnicalResourceID ID
KEY CATechRsceValidFromDateTime CATechRsceValidFromDateTime Valid From
CATechRsceValidToDateTime CATechRsceValidToDateTime Valid To
CANormalizedTechnicalResource CANormalizedTechnicalResource Normalized ID
CreationDate CreationDate Time Stamp
CreationTime CreationTime Time of Change
CreatedByUser CreatedByUser User Name
LastChangeDate LastChangeDate Time Stamp
LastChangeTime LastChangeTime Time changed
LastChangedByUser LastChangedByUser User Name
_PrvdrContr _PrvdrContr
_TechRsceIDType _TechRsceIDType

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_SalesPrvdrContrTechRsce.
-- 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: ISLSPRVDCONTRTR

CREATE VIEW I_SalesPrvdrContrTechRsce AS
SELECT
  ProviderContract AS SalesProviderContract,
  CATechnicalResourceGroup,
  CATechnicalResourceIDType,
  CATechnicalResourceID,
  CATechRsceValidFromDateTime,
  CATechRsceValidToDateTime,
  CANormalizedTechnicalResource,
  CreationDate,
  CreationTime,
  CreatedByUser,
  LastChangeDate,
  LastChangeTime,
  LastChangedByUser
FROM I_ProviderContractTechRsce AS _SalesProvContrTechRsce
LEFT OUTER JOIN I_SalesProviderContract AS _PrvdrContr ON SalesProviderContract = _PrvdrContr.SalesProviderContract  -- association [1]
;