I_ContractTypeValueHelp

DDL: I_CONTRACTTYPEVALUEHELP SQL: ICONTRACTTYPEVH Type: view BASIC

Bank Account Contract Type

I_ContractTypeValueHelp is a Basic CDS View that provides data about "Bank Account Contract Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field BankAccountContractType.

Data Sources (1)

SourceAliasJoin Type
dd07l l from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ICONTRACTTYPEVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.dataMaintenance #RESTRICTED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey BankAccountContractType view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.resultSet.sizeCategory #XS view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Bank Account Contract Type view
Consumption.ranked true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BankAccountContractType
BankAccountContractTypeName

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_ContractTypeValueHelp.
-- 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: ICONTRACTTYPEVH

CREATE VIEW I_ContractTypeValueHelp AS
SELECT
  cast( left(l.domvalue_l, 2) as fclm_bam_contract_type preserving type ) AS BankAccountContractType,
  cast ( t.ddtext as fclm_bam_contracttypetext preserving type ) AS BankAccountContractTypeName
FROM dd07l AS l
;