A_SubscriptionContractPartner

DDL: A_SUBSCRIPTIONCONTRACTPARTNER Type: view_entity CONSUMPTION

Subscription Contract Partner

A_SubscriptionContractPartner is a Consumption CDS View that provides data about "Subscription Contract Partner" in SAP S/4HANA. It reads from 1 data source (I_SubscriptionContractPartner) and exposes 6 fields with key fields SubscriptionContract, CustMgmtPartnerFunction, CustMgmtBusinessPartner. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_SubscriptionContractPartner I_SubscriptionContractPartner from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_SubscriptionContract _SubscriptionContract $projection.SubscriptionContract = _SubscriptionContract.SubscriptionContract

Annotations (12)

NameValueLevelField
EndUserText.label Subscription Contract Partner view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.createEnabled false view
ObjectModel.updateEnabled false view
ObjectModel.deleteEnabled false view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
OData.entityType.name SubscriptionContractPartner_Type view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SubscriptionContract SubscriptionContract
KEY CustMgmtPartnerFunction CustMgmtPartnerFunction
KEY CustMgmtBusinessPartner CustMgmtBusinessPartner
CustMgmtPartFunctionCategory CustMgmtPartFunctionCategory
CustMgmtPartnerIsMainPartner CustMgmtPartnerIsMainPartner
_SubscriptionContract _SubscriptionContract
@EndUserText.label: 'Subscription Contract Partner'
@VDM: {
  viewType: #CONSUMPTION,
  lifecycle.contract.type: #PUBLIC_REMOTE_API
}

@AccessControl: {
  authorizationCheck: #MANDATORY,
  personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
   createEnabled: false,
   updateEnabled: false,
   deleteEnabled: false,
   usageType: {
     dataClass:      #TRANSACTIONAL,
     serviceQuality: #C,
     sizeCategory:   #L
   }
}
@OData.entityType.name: 'SubscriptionContractPartner_Type'

@Metadata.ignorePropagatedAnnotations: true

define view entity A_SubscriptionContractPartner
  as select from I_SubscriptionContractPartner
  
  association [1..1] to A_SubscriptionContract as _SubscriptionContract  on $projection.SubscriptionContract = _SubscriptionContract.SubscriptionContract {
  
  key SubscriptionContract,
  key CustMgmtPartnerFunction,
  key CustMgmtBusinessPartner,  
  CustMgmtPartFunctionCategory,
  CustMgmtPartnerIsMainPartner,
    
  /* Associations */  
  _SubscriptionContract // Make association public

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SUBSCRIPTIONCONTRACTPARTNER"
],
"ASSOCIATED":
[
"A_SUBSCRIPTIONCONTRACT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/