I_PointOfSaleInboundProfile

DDL: I_POINTOFSALEINBOUNDPROFILE SQL: IPOSINBNDPRF Type: view BASIC

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)

SourceAliasJoin Type
twpis twpis from

Associations (3)

CardinalityTargetAliasCondition
[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)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/