P_SalesOrganization

DDL: P_SALESORGANIZATION SQL: PSALESORG Type: view BASIC Package: VDM_CPM_WS

Sales Organization

P_SalesOrganization is a Basic CDS View that provides data about "Sales Organization" in SAP S/4HANA. It reads from 1 data source (tvta) and exposes 4 fields. Part of development package VDM_CPM_WS.

Data Sources (1)

SourceAliasJoin Type
tvta SalesOrg from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName PSALESORG view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view

Fields (4)

KeyFieldSource TableSource FieldDescription
SalesOrganization tvta vkorg
DistributionChannel tvta vtweg
Division tvta spart
BusinessArea tvta gsber
@AbapCatalog.sqlViewName: 'PSALESORG'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@VDM.private:true
define view P_SalesOrganization
  as select from tvta as SalesOrg
{

  SalesOrg.vkorg as SalesOrganization,
  SalesOrg.vtweg as DistributionChannel,
  SalesOrg.spart as Division,
  SalesOrg.gsber as BusinessArea
}