C_CndnContrTypeSuplrCreate

DDL: C_CNDNCONTRTYPESUPLRCREATE SQL: CWCBCCTYPSUPLRCR Type: view CONSUMPTION

Supplier Contract Types for Creation

C_CndnContrTypeSuplrCreate is a Consumption CDS View that provides data about "Supplier Contract Types for Creation" in SAP S/4HANA. It reads from 1 data source (I_CndnContrType) and exposes 3 fields with key field CndnContrType.

Data Sources (1)

SourceAliasJoin Type
I_CndnContrType ContractType from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CWCBCCTYPSUPLRCR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Supplier Contract Types for Creation view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CndnContrType I_CndnContrType CndnContrType
CndnContrTypeDesc
CndnContrProcessCategory
@AbapCatalog.sqlViewName: 'CWCBCCTYPSUPLRCR'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Supplier Contract Types for Creation'
@Metadata.ignorePropagatedAnnotations: true
// Supplier Condition Contract Types with authority 01 (Create)

define view C_CndnContrTypeSuplrCreate
  as select from I_CndnContrType as ContractType
{
      @ObjectModel.text.element: [ 'CndnContrTypeDesc' ]
  key ContractType.CndnContrType                                                                                                     as CndnContrType,

      @Semantics.text:true
      ContractType._Text[1: Language = $session.system_language ].CndnContrTypeDesc                                                  as CndnContrTypeDesc,
      cast ( coalesce( ContractType._CndnContrClassfctnType.CndnContrProcessCategory, '' ) as wcb_process_category preserving type ) as CndnContrProcessCategory
}
where
  (
       ContractType.CndnContrPartnerCat     = 'V'
    or ContractType.CndnContrSettlmtType    = '1'
  )
  and  ContractType.CndnContrChangeability  = ''
  and  ContractType.CndnContrTypeBlockUsage = ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CNDNCONTRCLASSFCTNTYPE",
"I_CNDNCONTRTYPE",
"I_CNDNCONTRTYPETEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/