I_BPGenderValueHelp

DDL: I_BPGENDERVALUEHELP SQL: IBPGENDERVH Type: view BASIC

Business Partner Gender Value help

I_BPGenderValueHelp (Basic)

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

Database & Data Management

I_BPGenderValueHelp is a Basic CDS View that provides data about "Business Partner Gender Value help" in SAP S/4HANA. It reads from 1 data source (tb995) and exposes 2 fields with key field GenderCodeName. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Business Partner
Purpose
This CDS view is designed to provide value help for gender codes, facilitating the selection and identification of gender-related data within business processes. This CDS view provides the data to answer the following business questions: What are the available gender codes that can be used in business partner data? How can gender information be standardized across different systems and processes? How can users ensure consistency in gender data entry and reporting? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Structure
Important Fields Important fields in this view include the following: Field Name Description Measure or Attribute Comment GENDERCODENAME Sex

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessDatabase & Data Management
Application ComponentAP-MD-BP
PackageDatabase & Data Management for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tb995 tb995 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BPGenderValueHelpText _Text $projection.GenderCodeName = _Text.GenderCodeName

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IBPGENDERVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Business Partner Gender Value help view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #BASIC view
ObjectModel.representativeKey GenderCodeName view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY GenderCodeName gender Gender of Business Partner (Person)
_Text _Text

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_BPGenderValueHelp.
-- 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: IBPGENDERVH

CREATE VIEW I_BPGenderValueHelp AS
SELECT
  gender AS GenderCodeName
FROM tb995
LEFT OUTER JOIN I_BPGenderValueHelpText AS _Text ON GenderCodeName = _Text.GenderCodeName  -- association [0..*]
;