I_Purreqnitmtexttypestext
Purchase Requisition Item Text Types Text
I_Purreqnitmtexttypestext is a Basic CDS View that provides data about "Purchase Requisition Item Text Types Text" in SAP S/4HANA. It reads from 1 data source (ttxit) and exposes 5 fields with key fields TechnicalObjectType, DocumentText, Language. Part of development package APPL_MM_PUR_REQ.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ttxit | ttxit | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPRITMTXTTYPT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Purchase Requisition Item Text Types Text | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | DocumentText | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TechnicalObjectType | tdobject | Texts: Application Object | |
| KEY | DocumentText | tdid | Text ID | |
| KEY | Language | tdspras | Language | |
| Note | tdtext | Short Text | ||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IPRITMTXTTYPT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Purchase Requisition Item Text Types Text'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'DocumentText'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@VDM.lifecycle.contract.type :#PUBLIC_LOCAL_API
define view I_Purreqnitmtexttypestext as select from ttxit
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@EndUserText.label: 'Texts: Application Object'
key tdobject as TechnicalObjectType,
@EndUserText.label: 'Text ID'
key tdid as DocumentText,
@EndUserText.label: 'Language'
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key tdspras as Language,
@EndUserText.label: 'Short Text'
@Semantics.text
tdtext as Note,
_Language
}
where tdobject = 'EBAN' //and ttxit.tdspras = $session.system_language
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA