I_BPEmploymentIndustry

DDL: I_BPEMPLOYMENTINDUSTRY Type: view BASIC Package: FS_BP_CDS_BP011

Employment Industry of Business Partner

I_BPEmploymentIndustry (Basic)

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

BusinessPartnerIndustrySector · Cross Applications

I_BPEmploymentIndustry is a Basic CDS View (Dimension) that provides data about "Employment Industry of Business Partner" in SAP S/4HANA. It reads from 2 data sources (tb038, tb038a) and exposes 3 fields with key field BusPartEmplrIndstryCode. It has 2 associations to related views. It is exposed through 1 OData service (ASQL_F7205A). Part of development package FS_BP_CDS_BP011.

SAP Help Documentation

CategoryConfiguration Data
Data CategoryDimension
StatusReleased
Data Extraction TypeFull (physical deletions are possible in source tables)
Corresponding DataSourceIBPEMPLINDUSTRY
Purpose
An industry is a classification of companies according to their main business activity. For example, you can use Commerce, Banking, Services, Industry, Healthcare, Public Sector, Media, and so on, as industries. This CDS view provides the prerequisites for answering the following business questions: Which industries are defined in system?

Structure
Object types The data is stored within the business object Business Partner . Measures and attributes Some important measures and attributes are: Business partner employment industry code

SAP Business Warehouse (SAP BW) Extraction
Note The corresponding DataSource (Extractor) and this CDS view may have different functionalities. In case you are interested in the details of the DataSource, see the related documentation on the SAP Help Portal at https://help.sap.com/viewer/p/BI_CONTENT_757 under Application Help SAP Library BI Content .

View on SAP Help Portal →

SAP API Hub

CategoryBasic
StateC1
Line of BusinessCross Applications
Application ComponentFS-BP
CapabilitiesData Source for Data Extraction,Data Source for Defining CDS Entities,Data Source in SQL Select,Analytical Dimension,Association Target for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageCross Applications for SAP S/4HANA Cloud Public Edition
Description <p>An industry is a classification of companies according to their main business activity. For example, you can use Commerce, Banking, Services, Industry, Healthcare, Public Sector, Media, and so on, as industries.</p> <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p>Which industries are defined in system?</p></li> </ul>

Documentation

Data Sources (2)

SourceAliasJoin Type
tb038 tb038 inner
tb038a tb038a from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_BPEmploymentIndustryText _Text $projection.BusPartEmplrIndstryCode = _Text.BusPartEmplrIndstryCode
[0..*] I_BPEmployment _BPEmployment $projection.BusPartEmplrIndstryCode = _BPEmployment.BusPartEmplrIndstryCode

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IBPEMPLINDUSTRY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #NOT_ALLOWED view
ObjectModel.representativeKey BusPartEmplrIndstryCode view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.sapObjectNodeType.name BusinessPartnerIndustrySector 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 Employment Industry of Business Partner view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F7205A ASQL_F7205A C2 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BusPartEmplrIndstryCode tb038a ind_sector Industry sector
_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_BPEmploymentIndustry.
-- 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_BPEmploymentIndustry AS
SELECT
  tb038a.ind_sector AS BusPartEmplrIndstryCode
FROM tb038a
INNER JOIN tb038 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_BPEmploymentIndustryText AS _Text ON BusPartEmplrIndstryCode = _Text.BusPartEmplrIndstryCode  -- association [0..*]
LEFT OUTER JOIN I_BPEmployment AS _BPEmployment ON BusPartEmplrIndstryCode = _BPEmployment.BusPartEmplrIndstryCode  -- association [0..*]
;