A_SubscriptionContractText

DDL: A_SUBSCRIPTIONCONTRACTTEXT Type: view_entity COMPOSITE Package: CRMS4_SOM_LEGACY

Subscription Contract Text

A_SubscriptionContractText is a Composite CDS View that provides data about "Subscription Contract Text" in SAP S/4HANA. It reads from 1 data source (I_SubscriptionContractText) and exposes 5 fields with key fields SubscriptionContract, Language, TextObjectType. It has 1 association to related views. It is exposed through 1 OData service (API_SUBSCRIPTIONCONTRACT). Part of development package CRMS4_SOM_LEGACY.

Data Sources (1)

SourceAliasJoin Type
I_SubscriptionContractText I_SubscriptionContractText from

Associations (1)

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

Annotations (11)

NameValueLevelField
EndUserText.label Subscription Contract Text view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AccessControl.authorizationCheck #CHECK 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 #XL view
Metadata.ignorePropagatedAnnotations true view

OData Services (1)

ServiceBindingVersionContractRelease
API_SUBSCRIPTIONCONTRACT API_SUBSCRIPTIONCONTRACT V2 C2 C1

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SubscriptionContract ServiceDocument
KEY Language Language
KEY TextObjectType TextObjectType
PlainLongText PlainLongText
_SubscriptionContract _SubscriptionContract
@EndUserText.label: 'Subscription Contract Text'
@VDM: {
  viewType: #COMPOSITE,
  lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@AccessControl: {
  authorizationCheck: #CHECK,
  personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
   createEnabled: false,
   updateEnabled: false,
   deleteEnabled: false,
   usageType: {
     dataClass:      #TRANSACTIONAL,
     serviceQuality: #C,
     sizeCategory:   #XL
   }
}
@Metadata.ignorePropagatedAnnotations: true
define view entity A_SubscriptionContractText
  as select from I_SubscriptionContractText
  association [1..1] to A_SubscriptionContract as _SubscriptionContract on $projection.SubscriptionContract = _SubscriptionContract.SubscriptionContract
{

  key       ServiceDocument     as SubscriptionContract,
  key       Language,
  key       TextObjectType,

            @ObjectModel.virtualElement
            @ObjectModel.virtualElementCalculatedBy: 'ABAP:CL_CRMS4_SOM_PRVC_TEXT'
            PlainLongText,
            //Association

           @Consumption.hidden: true
            _SubscriptionContract

}