I_BusPartPrefixName

DDL: I_BUSPARTPREFIXNAME SQL: IBPPREFIXNAME Type: view BASIC Package: MDC_BUPA_BO

Basic View to show Business Partner Name Prefix

I_BusPartPrefixName is a Basic CDS View that provides data about "Basic View to show Business Partner Name Prefix" in SAP S/4HANA. It reads from 1 data source (tsad4) and exposes 2 fields with key field LastNamePrefix. It is exposed through 2 OData services (ASQL_F7204A, ASQL_F7205A). Part of development package MDC_BUPA_BO.

Data Sources (1)

SourceAliasJoin Type
tsad4 tsad4 from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IBPPREFIXNAME view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey LastNamePrefix view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.resultSet.sizeCategory #XS view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Basic View to show Business Partner Name Prefix view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F7204A ASQL_F7204A C2 NOT_RELEASED
ASQL_F7205A ASQL_F7205A C2 NOT_RELEASED

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY LastNamePrefix prefix_key Prefix Key
LastNamePrefixName prefix_txt Prefix

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_BusPartPrefixName.
-- 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: IBPPREFIXNAME

CREATE VIEW I_BusPartPrefixName AS
SELECT
  prefix_key AS LastNamePrefix,
  prefix_txt AS LastNamePrefixName
FROM tsad4
;