I_ChmlSuplrChkSts

DDL: I_CHMLSUPLRCHKSTS Type: view BASIC Package: EHPMA_LOGISTIC_INTEGRATION

Product Compliance Supplier Check Status

I_ChmlSuplrChkSts is a Basic CDS View that provides data about "Product Compliance Supplier Check Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields. It has 1 association to related views. Part of development package EHPMA_LOGISTIC_INTEGRATION.

Data Sources (1)

SourceAliasJoin Type
dd07l SuplrChkSts from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ChmlSuplrChkStsText _Text $projection.ChmlSuplrChkStatus = _Text.ChmlSuplrChkStatus

Annotations (11)

NameValueLevelField
EndUserText.label Product Compliance Supplier Check Status view
AbapCatalog.sqlViewName ICSUPLRCHKSTS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.representativeKey ChmlSuplrChkStatus view

Fields (2)

KeyFieldSource TableSource FieldDescription
domvalue_l11asChmlSuplrChkStatus
_Text _Text
--Label of view
@EndUserText.label: 'Product Compliance Supplier Check Status'

@AbapCatalog:
{
  -- SQL view name (16 characters)
  sqlViewName: 'ICSUPLRCHKSTS', 

  --If it's true, the filter conditions are compared and, if they match, the associated join expression is evaluated only once
  compiler.compareFilter: true,
  preserveKey: true
}

--Access Control: Authorizations Checks
@AccessControl:
{
  authorizationCheck: #NOT_REQUIRED
}

--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE

--VDM view type
@VDM.viewType: #BASIC

@ObjectModel:
{

  --Performance Annotations
  usageType:
  {
    dataClass: #META,
    sizeCategory: #S,
    serviceQuality: #B
  },
  representativeKey: 'ChmlSuplrChkStatus'
}
define view I_ChmlSuplrChkSts
  --Select data from domain value table
  as select from dd07l as SuplrChkSts

  --Text association
  association [0..*] to I_ChmlSuplrChkStsText as _Text on $projection.ChmlSuplrChkStatus = _Text.ChmlSuplrChkStatus
{
      --Domain Value of Data Status
      @ObjectModel.text.association: '_Text'
  key substring(SuplrChkSts.domvalue_l, 1, 1) as ChmlSuplrChkStatus,
        
      /*Association*/
      _Text
}
where
      SuplrChkSts.domname  = 'EHPMA_CHECK_SUPPLIER_STATUS'
  and SuplrChkSts.as4local = 'A'