SFW_BF_TYPE_C

DDL: SFW_BF_TYPE_C SQL: SFW_REST_TYPES Type: view

All client specific types of business function

SFW_BF_TYPE_C is a CDS View that provides data about "All client specific types of business function" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 2 fields with key field type.

Data Sources (1)

SourceAliasJoin Type
dd07v dd07v from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName SFW_REST_TYPES view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label All client specific types of business function view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY type
ddtext ddtext
@AbapCatalog.sqlViewName: 'SFW_REST_TYPES'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'All client specific types of business function'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}
define view SFW_BF_TYPE_C as select from dd07v
{
  key cast( cast( domvalue_l as abap.char(1) ) as sfw_is_c ) as type,
      ddtext 
      
} where domname = 'SFW_IS'
   and domvalue_l = 'C'
   and ddlanguage = $session.system_language
 
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07V"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/