I_OptionPutCallCodeText

DDL: I_OPTIONPUTCALLCODETEXT SQL: IOPTPUTCALLCDTXT Type: view BASIC

Option Put Call Code - Text

I_OptionPutCallCodeText (Basic)

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

Financial Operations

I_OptionPutCallCodeText is a Basic CDS View that provides data about "Option Put Call Code - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, OptionPutCallCode. It has 2 associations to related views.

SAP Help Documentation

CategoryOption Put/Call Code
Data CategoryText
StatusReleased
Purpose
This CDS view provides access to the text in different languages of the option put call codes. This CDS view provides the prerequisites for answering the following business questions: Which name does a listed derivative quotation have in a specific language?

Structure
Main CDS parameters and filters The main filters are: Language Key Measures and attributes Some important attributes are: Language key Option put call code Option put call code text

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-TRM
CapabilitiesLanguage-Dependent Text, Data Source for Defining CDS Entities, Data Source in SQL Select, Association Target for Defining CDS Entities
PackageFinancial Operations for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides access to the text in different languages of the option put call codes.</p> <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p>Which name does a listed derivative quotation have in a specific language?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_OptionPutCallCode _OptionPutCallCode $projection.OptionPutCallCode = _OptionPutCallCode.OptionPutCallCode
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (15)

NameValueLevelField
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IOPTPUTCALLCDTXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Option Put Call Code - Text view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey OptionPutCallCode view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage Language Key
KEY OptionPutCallCode Put/Call Indicator
OptionPutCallCodeName Options Put/Call Indicator Text
_OptionPutCallCode _OptionPutCallCode
_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_OptionPutCallCodeText.
-- 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: IOPTPUTCALLCDTXT

CREATE VIEW I_OptionPutCallCodeText AS
SELECT
  ddlanguage AS Language,
  cast(dd07t.domvalue_l as ti_sputcal) AS OptionPutCallCode,
  cast(dd07t.ddtext as ftr_gen_opt_put_call_code_name preserving type ) AS OptionPutCallCodeName
FROM dd07t
LEFT OUTER JOIN I_OptionPutCallCode AS _OptionPutCallCode ON OptionPutCallCode = _OptionPutCallCode.OptionPutCallCode  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;