P_CndnContrType_CreateVH

DDL: P_CNDNCONTRTYPE_CREATEVH SQL: PWCBCOCOTYPECVH Type: view BASIC

P_CndnContrType_CreateVH is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (I_CndnContrType) and exposes 4 fields with key field CONTRACT_TYPE.

Data Sources (1)

SourceAliasJoin Type
I_CndnContrType I_CndnContrType from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PWCBCOCOTYPECVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #MANDATORY view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CONTRACT_TYPE CndnContrType
TEXT_CONTRTYPE
PROCESS_CATEGORY _CndnContrClassfctnType CndnContrProcessCategory
_CndnContrProcessCategory _CndnContrClassfctnType _CndnContrProcessCategory
@AbapCatalog.sqlViewName: 'PWCBCOCOTYPECVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #BASIC
@VDM.private: true
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #MANDATORY
// 'Search Help for Create Condition Contract'

/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK" ]  } */
define view P_CndnContrType_CreateVH
  as select from I_CndnContrType
{
  key CndnContrType                                                    as CONTRACT_TYPE,
      _Text[1: Language = $session.system_language ].CndnContrTypeDesc as TEXT_CONTRTYPE,
    @ObjectModel.foreignKey.association: '_CndnContrProcessCategory'   
      _CndnContrClassfctnType.CndnContrProcessCategory                 as PROCESS_CATEGORY,

    //Associations

    _CndnContrClassfctnType._CndnContrProcessCategory      
}
where
  CndnContrChangeability  <> 'N' and
  CndnContrChangeability  <> 'S' and
  CndnContrTypeBlockUsage = '' 
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CNDNCONTRCLASSFCTNTYPE",
"I_CNDNCONTRTYPE",
"I_CNDNCONTRTYPETEXT"
],
"ASSOCIATED":
[
"I_CNDNCONTRPROCESSCATEGORY"
],
"BASE":
[
"I_CNDNCONTRCLASSFCTNTYPE"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/