I_InvgCsMBusinessPartnerExtn

DDL: I_INVGCSMBUSINESSPARTNEREXTN SQL: IICMBPHEADEXTN Type: view BASIC

ICM Business Partner Extension Basic View

I_InvgCsMBusinessPartnerExtn is a Basic CDS View that provides data about "ICM Business Partner Extension Basic View" in SAP S/4HANA. It reads from 1 data source (crmm_icm_bp_h_ex) and exposes 4 fields with key field BusinessPartner.

Data Sources (1)

SourceAliasJoin Type
crmm_icm_bp_h_ex crmm_icm_bp_h_ex from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IICMBPHEADEXTN view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label ICM Business Partner Extension Basic View view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner partner With Partner
InvgCsMSecurityLevel security_level Sec. Lvl.
InvgCsMIsHidden hidden Yes/No
InvgCsMIsUnknownPerson unknown_person BP.FLAG

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_InvgCsMBusinessPartnerExtn.
-- 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.
-- SQL view name: IICMBPHEADEXTN

CREATE VIEW I_InvgCsMBusinessPartnerExtn AS
SELECT
  partner AS BusinessPartner,
  security_level AS InvgCsMSecurityLevel,
  hidden AS InvgCsMIsHidden,
  unknown_person AS InvgCsMIsUnknownPerson
FROM crmm_icm_bp_h_ex
;