I_PointOfSaleInboundProfileT
Point of Sale Inbound Profile Text
I_PointOfSaleInboundProfileT is a Basic CDS View that provides data about "Point of Sale Inbound Profile Text" in SAP S/4HANA. It reads from 1 data source (twpist) and exposes 5 fields with key fields PointOfSaleInboundProfile, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| twpist | twpist | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_PointOfSaleInboundProfile | _PointOfSaleInboundProfile | $projection.PointOfSaleInboundProfile = _PointOfSaleInboundProfile.PointOfSaleInboundProfile |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPOSINBNDPRFT | view | |
| EndUserText.label | Point of Sale Inbound Profile Text | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | PointOfSaleInboundProfile | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PointOfSaleInboundProfile | inpro | ||
| KEY | Language | spras | ||
| PointOfSaleInboundProfileName | prtxt | |||
| _PointOfSaleInboundProfile | _PointOfSaleInboundProfile | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IPOSINBNDPRFT'
@EndUserText.label: 'Point of Sale Inbound Profile Text'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel: {
dataCategory: #TEXT,
representativeKey: 'PointOfSaleInboundProfile',
usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
}
define view I_PointOfSaleInboundProfileT
as select from twpist
association [1..1] to I_PointOfSaleInboundProfile as _PointOfSaleInboundProfile on $projection.PointOfSaleInboundProfile = _PointOfSaleInboundProfile.PointOfSaleInboundProfile
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_PointOfSaleInboundProfile'
key inpro as PointOfSaleInboundProfile,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key spras as Language,
@Semantics.text: true
prtxt as PointOfSaleInboundProfileName,
@ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
_PointOfSaleInboundProfile,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TWPIST"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_POINTOFSALEINBOUNDPROFILE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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