I_DisputeCaseCreationModeText

DDL: I_DISPUTECASECREATIONMODETEXT Type: view_entity BASIC Package: ODATA_AR_POSTING_RULES

Dispute Case Creation Mode - Text

I_DisputeCaseCreationModeText is a Basic CDS View that provides data about "Dispute Case Creation Mode - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields DisputeCaseCreationMode, Language. It has 2 associations to related views. It is exposed through 3 OData services (ASQL_F3398, ASQL_F3555, ASQL_F8134). Part of development package ODATA_AR_POSTING_RULES.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_DisputeCaseCreationMode _DisputeCreationMode $projection.DisputeCaseCreationMode = _DisputeCreationMode.DisputeCaseCreationMode
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
Analytics.technicalName IDCCREATEMODET view
VDM.viewType #BASIC view
EndUserText.label Dispute Case Creation Mode - Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey DisputeCaseCreationMode view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view

OData Services (3)

ServiceBindingVersionContractRelease
ASQL_F3398 ASQL_F3398 C2 NOT_RELEASED
ASQL_F3555 ASQL_F3555 C2 NOT_RELEASED
ASQL_F8134 ASQL_F8134 C2 NOT_RELEASED

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY DisputeCaseCreationMode
KEY Language Lang.
DisputeCaseCreationModeName Short text
DomainValue dd07t domvalue_l Lower Value
_DisputeCreationMode _DisputeCreationMode
_Language _Language

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_DisputeCaseCreationModeText.
-- 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.

CREATE VIEW I_DisputeCaseCreationModeText AS
SELECT
  cast( substring( domvalue_l, 1, 2) as far_pstrl_disputecase_mode ) AS DisputeCaseCreationMode,
  cast( ddlanguage as spras ) AS Language,
  cast(ddtext as far_pstrl_disputecase_mode_nam preserving type ) AS DisputeCaseCreationModeName,
  dd07t.domvalue_l AS DomainValue
FROM dd07t
LEFT OUTER JOIN I_DisputeCaseCreationMode AS _DisputeCreationMode ON DisputeCaseCreationMode = _DisputeCreationMode.DisputeCaseCreationMode  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;