I_SecurityClassBasic

DDL: I_SECURITYCLASSBASIC Type: view_entity BASIC

Security Class Basic

I_SecurityClassBasic (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_SecurityClassBasic is a Basic CDS View that provides data about "Security Class Basic" in SAP S/4HANA. It reads from 1 data source (vwpanla) and exposes 26 fields with key field SecurityClass.

SAP Help Documentation

CategorySecurity Class
StatusStatus
Structure
Important Fields Important fields in this view include the following: Field Name Description SECURITYCLASSISPLEDGEABLE Pledgeable SECURITYCLASSLASTCHANGEDSOURCE Editing Source SECURITYCLASSLASTCHANGEDTIME Last Edited At SECURITYCLASSLASTCHANGEDDATE Last Edited On SECURITYCLASSLASTCHANGEDBYUSER Last Changed By SECURITYCLASSCREATIONSOURCE Initial Entry Source SECURITYCLASSCREATIONTIME Time of Creation SECURITYCLASSCREATIONDATE First Entered On SECURITYCLASSCREATEDBYUSER Entered By SCRTYCLCMPLMNTYIDNCTRYREG CIC Country/Region SCRTYCLCMPLMNTYIDNCODE CIC Asset Category SCRTYCLASSISRLVTFORTAXES Tax Treatment SECURITYCLASSISLISTED Listed SCRTYCLMINIMALNUMBEROFUNITS Min.Num.Units SECURITYCLASSQUOTATION Quotation SECURITYCLASSTRANSFERTYPE Security Type ISSUERATEINPERCENT Issue rate SECURITYCLASSISSUEPRICEVALUE Issue Price ISSUECURRENCY Issue Currency ISSUER Issuer SCRTYCLASSGENCLASSIFICATION Sec. Classification FINANCIALINSTRUMENTPRODUCTTYPE Product Type SECURITYCLASSDESCRIPTION Sec. Class Descriptn SECURITYCLASSNAME Security Class Name SECURITYCLASSSTATUS Status FINANCIALINSTRPRODUCTCATEGORY Product Category SECURITYCLASS Security Class

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-TRM
CapabilitiesData 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

Documentation

Data Sources (1)

SourceAliasJoin Type
vwpanla SecurityClass from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Security Class Basic view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #NONE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view

Fields (26)

KeyFieldSource TableSource FieldDescription
KEY SecurityClass Treasury ID No.
FinancialInstrProductCategory Financial Instrument Product Category
SecurityClassStatus vwpanla sstati Status of a Security
SecurityClassName Name of the Security Class
SecurityClassDescription Description of the Security Class
FinancialInstrumentProductType vwpanla gsart Product Type
ScrtyClassGenClassification vwpanla srolext General Security Classification
Issuer Issuer Identity Key
IssueCurrency vwpanla rewhr Issue Currency
SecurityClassIssuePriceValue Issue Price Without Currency Reference
IssueRateInPercent vwpanla pemkurs Issue rate in percent
SecurityClassTransferType vwpanla swerttyp Security Type ID
SecurityClassQuotation vwpanla snoti Quotation Indicator
ScrtyClMinimalNumberOfUnits Minimal Number of Units
SecurityClassIsListed vwpanla sboernot Indicator: Listed on an Exchange
ScrtyClCmplmntyIdnCode vwpanla coicode Complementary Identification Code
ScrtyClCmplmntyIdnCtryReg vwpanla coiland Complementary Identification Country/Region
SecurityClassCreatedByUser Entered By
SecurityClassCreationDate First Entered On
SecurityClassCreationTime Time of Creation
SecurityClassCreationSource Source of Initial Entry
SecurityClassLastChangedByUser Employee ID
SecurityClassLastChangedDate Last Edited On
SecurityClassLastChangedTime Last Edited At
SecurityClassLastChangedSource Editing Source
SecurityClassIsPledgeable vwpanla wpfan Indicator pledgeable

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_SecurityClassBasic.
-- 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_SecurityClassBasic AS
SELECT
  cast(ranl as ftr_gen_security_class preserving type) AS SecurityClass,
  cast(sanlf as ftr_gen_fin_instr_prod_categ preserving type) AS FinancialInstrProductCategory,
  SecurityClass.sstati AS SecurityClassStatus,
  cast(SecurityClass.xalkz as ftr_gen_security_class_name preserving type) AS SecurityClassName,
  cast(SecurityClass.xallb as ftr_gen_security_class_lname preserving type) AS SecurityClassDescription,
  SecurityClass.gsart AS FinancialInstrumentProductType,
  SecurityClass.srolext AS ScrtyClassGenClassification,
  cast(SecurityClass.repke as repke_new preserving type) AS Issuer,
  SecurityClass.rewhr AS IssueCurrency,
  cast(SecurityClass.bempreis as ftr_sc_bempreis) AS SecurityClassIssuePriceValue,
  SecurityClass.pemkurs AS IssueRateInPercent,
  SecurityClass.swerttyp AS SecurityClassTransferType,
  SecurityClass.snoti AS SecurityClassQuotation,
  cast( SecurityClass.unit_tick as ftr_sc_min_unit_num preserving type ) AS ScrtyClMinimalNumberOfUnits,
  SecurityClass.sboernot AS SecurityClassIsListed,
  SecurityClass.coicode AS ScrtyClCmplmntyIdnCode,
  SecurityClass.coiland AS ScrtyClCmplmntyIdnCtryReg,
  cast(SecurityClass.rerf as ftr_sc_rerf preserving type) AS SecurityClassCreatedByUser,
  cast(SecurityClass.derf as ftr_sc_derf preserving type) AS SecurityClassCreationDate,
  cast(SecurityClass.terf as ftr_sc_terf preserving type) AS SecurityClassCreationTime,
  cast(SecurityClass.reher as ftr_sc_reher preserving type) AS SecurityClassCreationSource,
  cast(SecurityClass.rbear as ftr_sc_rbear preserving type) AS SecurityClassLastChangedByUser,
  cast(SecurityClass.dbear as ftr_sc_dbear preserving type) AS SecurityClassLastChangedDate,
  cast(SecurityClass.tbear as ftr_sc_tbear preserving type) AS SecurityClassLastChangedTime,
  cast(SecurityClass.rbher as ftr_sc_rbher preserving type) AS SecurityClassLastChangedSource,
  SecurityClass.wpfan AS SecurityClassIsPledgeable
FROM vwpanla AS SecurityClass
;