C_SupplierTextObjectTypeVH
Supplier TextObjectType Value help
C_SupplierTextObjectTypeVH is a Consumption CDS View that provides data about "Supplier TextObjectType Value help" in SAP S/4HANA. It reads from 2 data sources (I_TextDeterminationProcedItem, I_TextObjectType) and exposes 3 fields with key fields TextObjectType, TextObjectCategory. It has 1 association to related views. Part of development package VDM_MD_BP.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_TextDeterminationProcedItem | I_TextDeterminationProcedItem | inner |
| I_TextObjectType | I_TextObjectType | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_TextObjectTypeText | _TextObjectTypeText | $projection.TextObjectType = _TextObjectTypeText.TextObjectType and $projection.TextObjectCategory = _TextObjectTypeText.TextObjectCategory |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CSUPLOBJTXTYPVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | TextObjectType | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Search.searchable | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| EndUserText.label | Supplier TextObjectType Value help | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TextObjectType | I_TextObjectType | TextObjectType | |
| KEY | TextObjectCategory | I_TextObjectType | TextObjectCategory | |
| _TextObjectTypeText | _TextObjectTypeText |
@AbapCatalog.sqlViewName: 'CSUPLOBJTXTYPVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'TextObjectType'
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Supplier TextObjectType Value help'
define view C_SupplierTextObjectTypeVH as select from I_TextObjectType
inner join I_TextDeterminationProcedItem on I_TextObjectType.TextObjectType = I_TextDeterminationProcedItem.LongTextID
and I_TextObjectType.TextObjectCategory = I_TextDeterminationProcedItem.TextObjectCategory
and I_TextDeterminationProcedItem.TextDeterminationProcedure = '*'
and I_TextObjectType.TextObjectCategory = 'LFA1'
association [0..*] to I_TextObjectTypeText as _TextObjectTypeText on $projection.TextObjectType = _TextObjectTypeText.TextObjectType
and $projection.TextObjectCategory = _TextObjectTypeText.TextObjectCategory
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@ObjectModel.text.association: '_TextobjectTypeText'
key I_TextObjectType.TextObjectType,
@Consumption.hidden: true
@Consumption.filter.hidden: true
key I_TextObjectType.TextObjectCategory,
_TextObjectTypeText
}
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