I_APProcessFlowDocTypeText

DDL: I_APPROCESSFLOWDOCTYPETEXT SQL: IAPDOCTYPETEXT Type: view BASIC Package: ODATA_PROCESS_FLOW_AP

Document Type Description for Accounts Payable Process Flow

I_APProcessFlowDocTypeText is a Basic CDS View that provides data about "Document Type Description for Accounts Payable Process Flow" in SAP S/4HANA. It reads from 1 data source (P_APProcessFlowDocTypeText) and exposes 5 fields with key fields Language, DocumentType, ProcessType. Part of development package ODATA_PROCESS_FLOW_AP.

Data Sources (1)

SourceAliasJoin Type
P_APProcessFlowDocTypeText P_APProcessFlowDocTypeText from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IAPDOCTYPETEXT view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Document Type Description for Accounts Payable Process Flow view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey DocumentType view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language Language
KEY DocumentType DocumentType
KEY ProcessType ProcessType
DocumentTypeDescription DocumentTypeDescription
_Language _Language
@AbapCatalog.sqlViewName: 'IAPDOCTYPETEXT'
@VDM.viewType : #BASIC
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Document Type Description for Accounts Payable Process Flow'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.dataClass: #ORGANIZATIONAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'DocumentType'
define view I_APProcessFlowDocTypeText as select from P_APProcessFlowDocTypeText {
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key Language,
  key DocumentType,
  key ProcessType,

      @Semantics.text: true
      DocumentTypeDescription,

      _Language

  
}