I_BusPartContactPermissionText

DDL: I_BUSPARTCONTACTPERMISSIONTEXT SQL: IBPCONTCATPERMT Type: view COMPOSITE

Business Partner Contact Permission Text

I_BusPartContactPermissionText is a Composite CDS View that provides data about "Business Partner Contact Permission Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields ContactPermission, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IBPCONTCATPERMT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #META view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey ContactPermission view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Analytics.dataExtraction.enabled true view
Search.searchable true view
EndUserText.label Business Partner Contact Permission Text view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ContactPermission
KEY Language ddlanguage Lang.
ContactPermissionName ddtext Description
DomainValue domvalue_l Lower Value

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_BusPartContactPermissionText.
-- 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: IBPCONTCATPERMT

CREATE VIEW I_BusPartContactPermissionText AS
SELECT
  cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as bu_type ) AS ContactPermission,
  ddlanguage AS Language,
  ddtext AS ContactPermissionName,
  domvalue_l AS DomainValue
FROM dd07t
;