I_RABillingPlanTypeText

DDL: I_RABILLINGPLANTYPETEXT SQL: IRABILPLANTYPTXT Type: view BASIC

Revenue Accounting Billing Plan Type - Text

I_RABillingPlanTypeText is a Basic CDS View that provides data about "Revenue Accounting Billing Plan Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, RABillingPlanType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_RABillingPlanType _RABillPlanType $projection.RABillingPlanType= _RABillPlanType.RABillingPlanType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IRABILPLANTYPTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Revenue Accounting Billing Plan Type - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey RABillingPlanType view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language dd07t ddlanguage
KEY RABillingPlanType
RABillingPlanTypeName
_Language _Language
_RABillPlanType _RABillPlanType
@AbapCatalog.sqlViewName: 'IRABILPLANTYPTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true

@AccessControl.authorizationCheck: #NOT_REQUIRED

@EndUserText.label: 'Revenue Accounting Billing Plan Type - Text'
@Metadata.ignorePropagatedAnnotations: true

@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'RABillingPlanType'
@ObjectModel.usageType: {serviceQuality: #D, sizeCategory: #S, dataClass: #META}

@VDM.viewType: #BASIC

@ClientHandling.algorithm: #SESSION_VARIABLE

define view I_RABillingPlanTypeText 
  as select from dd07t 
  association [1..1] to I_RABillingPlanType      as _RABillPlanType       on $projection.RABillingPlanType= _RABillPlanType.RABillingPlanType
  association [0..1] to I_Language               as _Language             on $projection.Language = _Language.Language
{
        @Semantics.language: true
        @ObjectModel.foreignKey.association: '_Language'
    key dd07t.ddlanguage as Language,
        
        @ObjectModel.foreignKey.association: '_RABillPlanType'
    key cast ( domvalue_l as farr_bill_plan_type )  as RABillingPlanType,
    
        @Semantics.text: true
        cast(ddtext as farr_billing_plan_type_name preserving type )  as RABillingPlanTypeName,       
    
        _Language,
        _RABillPlanType        
}
where dd07t.domname  = 'FARR_BILL_PLAN_TYPE' 
  and dd07t.as4local = 'A'   
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_RABILLINGPLANTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/