I_InsuranceClaimGenderText

DDL: I_INSURANCECLAIMGENDERTEXT SQL: ICLGENDERTXT Type: view BASIC

Text Geschlechtscode

I_InsuranceClaimGenderText is a Basic CDS View that provides data about "Text Geschlechtscode" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields GenderCodeName, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_InsurClmGenderVH _GenderValueHelp $projection.GenderCodeName = _GenderValueHelp.GenderCodeName

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICLGENDERTXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Text Geschlechtscode view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.representativeKey GenderCodeName view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY GenderCodeName
KEY Language dd07t ddlanguage Lang.
GenderCodeNameText dd07t ddtext Short text
_GenderValueHelp _GenderValueHelp

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_InsuranceClaimGenderText.
-- 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: ICLGENDERTXT

CREATE VIEW I_InsuranceClaimGenderText AS
SELECT
  cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as icl_bu_sexid ) AS GenderCodeName,
  dd07t.ddlanguage AS Language,
  dd07t.ddtext AS GenderCodeNameText
FROM dd07t
LEFT OUTER JOIN I_InsurClmGenderVH AS _GenderValueHelp ON GenderCodeName = _GenderValueHelp.GenderCodeName  -- association [0..1]
;