I_SecurityClRgtyRptgHeader

DDL: I_SECURITYCLRGTYRPTGHEADER Type: view_entity COMPOSITE Package: FTR_SECURITIES_CORE

Scty Class Regulatory Reporting Header

I_SecurityClRgtyRptgHeader is a Composite CDS View that provides data about "Scty Class Regulatory Reporting Header" in SAP S/4HANA. It reads from 1 data source (I_SecurityClassBasic) and exposes 6 fields with key field SecurityClass. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F3966). Part of development package FTR_SECURITIES_CORE.

Data Sources (1)

SourceAliasJoin Type
I_SecurityClassBasic SecurityClassBasic from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_SecurityClass _SecurityClass $projection.SecurityClass = _SecurityClass.SecurityClass

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Scty Class Regulatory Reporting Header view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F3966 ASQL_F3966 C2 NOT_RELEASED

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SecurityClass I_SecurityClassBasic SecurityClass
ScrtyClassIsRlvtForTaxes I_SecurityClassBasic ScrtyClassIsRlvtForTaxes
ScrtyClCmplmntyIdnCtryReg I_SecurityClassBasic ScrtyClCmplmntyIdnCtryReg CI Country/Region
ScrtyClCmplmntyIdnCode I_SecurityClassBasic ScrtyClCmplmntyIdnCode CI code
SecurityClassIsSecondaryBond SecurityClassBond SecurityClassIsSecondaryBond
_SecurityClass _SecurityClass

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_SecurityClRgtyRptgHeader.
-- 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_SecurityClRgtyRptgHeader AS
SELECT
  SecurityClassBasic.SecurityClass AS SecurityClass,
  SecurityClassBasic.ScrtyClassIsRlvtForTaxes AS ScrtyClassIsRlvtForTaxes,
  SecurityClassBasic.ScrtyClCmplmntyIdnCtryReg AS ScrtyClCmplmntyIdnCtryReg,
  SecurityClassBasic.ScrtyClCmplmntyIdnCode AS ScrtyClCmplmntyIdnCode,
  SecurityClassBond.SecurityClassIsSecondaryBond AS SecurityClassIsSecondaryBond
FROM I_SecurityClassBasic AS SecurityClassBasic
LEFT OUTER JOIN I_SecurityClass AS _SecurityClass ON SecurityClass = _SecurityClass.SecurityClass  -- association [1..1]
;