I_CN_FinStmntFormStrucLine

DDL: I_CN_FINSTMNTFORMSTRUCLINE SQL: ICNFINSTMNTLINE Type: view BASIC

Form Structure: Lines

I_CN_FinStmntFormStrucLine is a Basic CDS View that provides data about "Form Structure: Lines" in SAP S/4HANA. It reads from 1 data source (idcn_fsclines) and exposes 9 fields with key fields FinStmntFormStrucLineNmbr, FinStmntFormStruc, FinancialStatementVariant.

Data Sources (1)

SourceAliasJoin Type
idcn_fsclines idcn_fsclines from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName ICNFINSTMNTLINE view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Form Structure: Lines view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY FinStmntFormStrucLineNmbr linenr Source Select. Index
KEY FinStmntFormStruc fsckey Form Str. Key
KEY FinancialStatementVariant versn Version
FinStmntFormStrucItemCat linesec Section
FinStmntFormStrucItemOffset linelev Number of Offset
FinStmntFormStrucItemType linetype Type of line
FinStmntFormStrucItemSign linesign Sign
FinStmntFormStrucItemFactor linfactor Factor
DocumentReferenceID reference Value

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_CN_FinStmntFormStrucLine.
-- 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: ICNFINSTMNTLINE

CREATE VIEW I_CN_FinStmntFormStrucLine AS
SELECT
  linenr AS FinStmntFormStrucLineNmbr,
  fsckey AS FinStmntFormStruc,
  versn AS FinancialStatementVariant,
  linesec AS FinStmntFormStrucItemCat,
  linelev AS FinStmntFormStrucItemOffset,
  linetype AS FinStmntFormStrucItemType,
  linesign AS FinStmntFormStrucItemSign,
  linfactor AS FinStmntFormStrucItemFactor,
  reference AS DocumentReferenceID
FROM idcn_fsclines
;