A_BusinessPartnerGenderText

DDL: A_BUSINESSPARTNERGENDERTEXT SQL: ABPGENDERTXT Type: view CONSUMPTION

Business Partner Gender Text

A_BusinessPartnerGenderText is a Consumption CDS View that provides data about "Business Partner Gender Text" in SAP S/4HANA. It reads from 1 data source (I_BPGenderValueHelpText) and exposes 4 fields with key fields Language, GenderCodeName. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_BPGenderValueHelpText I_BPGenderValueHelpText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_BusinessPartnerGender _BusinessPartnerGender $projection.GenderCodeName = _BusinessPartnerGender.GenderCodeName

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ABPGENDERTXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Business Partner Gender Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
OData.entityType.name BusinessPartnerGenderText_Type view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #CONSUMPTION view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY GenderCodeName GenderCodeName Sex
GenderCodeNameText GenderCodeNameText Description
_BusinessPartnerGender _BusinessPartnerGender

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 A_BusinessPartnerGenderText.
-- 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: ABPGENDERTXT

CREATE VIEW A_BusinessPartnerGenderText AS
SELECT
  Language,
  GenderCodeName,
  GenderCodeNameText
FROM I_BPGenderValueHelpText
LEFT OUTER JOIN A_BusinessPartnerGender AS _BusinessPartnerGender ON GenderCodeName = _BusinessPartnerGender.GenderCodeName  -- association [1..1]
;