I_BPOccupationGroup

DDL: I_BPOCCUPATIONGROUP Type: view BASIC

Occupation Group of Business Partner

I_BPOccupationGroup (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

BusinessPartnerOccupation · Cross Applications

I_BPOccupationGroup is a Basic CDS View (Dimension) that provides data about "Occupation Group of Business Partner" in SAP S/4HANA. It reads from 1 data source (tb028) and exposes 3 fields with key field BusinessPartnerOccupationGroup. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentFS-BP
CapabilitiesData Source for Defining CDS Entities, Analytical Dimension, Data Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Data Extraction
PackageCross Applications for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering the business question: Which occupations are defined in system?</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
tb028 tb028 from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_BPOccupationGroupText _Text $projection.BusinessPartnerOccupationGroup = _Text.BusinessPartnerOccupationGroup
[0..*] I_BPEmployment _BPEmployment $projection.BusinessPartnerOccupationGroup = _BPEmployment.BusinessPartnerOccupationGroup

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IBPEMPLOCCUP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #NOT_ALLOWED view
ObjectModel.representativeKey BusinessPartnerOccupationGroup view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.sapObjectNodeType.name BusinessPartnerOccupation view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Occupation Group of Business Partner view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerOccupationGroup tb028 jobgr Occupation/group
_Text _Text
_BPEmployment _BPEmployment

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_BPOccupationGroup.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_BPOccupationGroup AS
SELECT
  tb028.jobgr AS BusinessPartnerOccupationGroup
FROM tb028
LEFT OUTER JOIN I_BPOccupationGroupText AS _Text ON BusinessPartnerOccupationGroup = _Text.BusinessPartnerOccupationGroup  -- association [0..*]
LEFT OUTER JOIN I_BPEmployment AS _BPEmployment ON BusinessPartnerOccupationGroup = _BPEmployment.BusinessPartnerOccupationGroup  -- association [0..*]
;