I_PointOfSaleInboundProfile
Point of Sale Inbound Profile
I_PointOfSaleInboundProfile is a Basic CDS View that provides data about "Point of Sale Inbound Profile" in SAP S/4HANA. It reads from 1 data source (twpis) and exposes 4 fields with key field PointOfSaleInboundProfile. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| twpis | twpis | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_PointOfSaleInboundProfileT | _Text | $projection.PointOfSaleInboundProfile = _Text.PointOfSaleInboundProfile |
| [0..1] | I_POSInbAggrgdSalesSettings | _AggregatedSalesSettings | $projection.PointOfSaleInboundProfile = _AggregatedSalesSettings.PointOfSaleInboundProfile |
| [0..1] | I_POSInbSlsAsPerRcptsSettings | _SalesAsPerReceiptsSettings | $projection.PointOfSaleInboundProfile = _SalesAsPerReceiptsSettings.PointOfSaleInboundProfile |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPOSINBNDPRF | view | |
| EndUserText.label | Point of Sale Inbound Profile | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.compositionRoot | true | view | |
| ObjectModel.representativeKey | PointOfSaleInboundProfile | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PointOfSaleInboundProfile | inpro | ||
| _Text | _Text | |||
| _AggregatedSalesSettings | _AggregatedSalesSettings | |||
| _SalesAsPerReceiptsSettings | _SalesAsPerReceiptsSettings |
@AbapCatalog.sqlViewName: 'IPOSINBNDPRF'
@EndUserText.label: 'Point of Sale Inbound Profile'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl: {
authorizationCheck: #NOT_REQUIRED,
personalData.blocking: #NOT_REQUIRED
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel: {
compositionRoot: true,
representativeKey: 'PointOfSaleInboundProfile',
usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING
},
resultSet.sizeCategory: #XS
}
define view I_PointOfSaleInboundProfile
as select from twpis
association [0..*] to I_PointOfSaleInboundProfileT as _Text on $projection.PointOfSaleInboundProfile = _Text.PointOfSaleInboundProfile
association [0..1] to I_POSInbAggrgdSalesSettings as _AggregatedSalesSettings on $projection.PointOfSaleInboundProfile = _AggregatedSalesSettings.PointOfSaleInboundProfile
association [0..1] to I_POSInbSlsAsPerRcptsSettings as _SalesAsPerReceiptsSettings on $projection.PointOfSaleInboundProfile = _SalesAsPerReceiptsSettings.PointOfSaleInboundProfile
{
@ObjectModel.text.association: '_Text'
key inpro as PointOfSaleInboundProfile,
case
when lgort != ''
then lgort
when _AggregatedSalesSettings.StorageLocation != ''
then _AggregatedSalesSettings.StorageLocation
when _SalesAsPerReceiptsSettings.StorageLocation != ''
then _SalesAsPerReceiptsSettings.StorageLocation
else lgort
end as StorageLocation,
@ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
_Text,
@ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
_AggregatedSalesSettings,
@ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
_SalesAsPerReceiptsSettings
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_POSINBAGGRGDSALESSETTINGS",
"I_POSINBSLSASPERRCPTSSETTINGS",
"TWPIS"
],
"ASSOCIATED":
[
"I_POINTOFSALEINBOUNDPROFILET",
"I_POSINBAGGRGDSALESSETTINGS",
"I_POSINBSLSASPERRCPTSSETTINGS"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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