Fclm_Mm_Ekkn

DDL: FCLM_MM_EKKN SQL: VFCLMMMEKKN Type: view

Account Assignment

Fclm_Mm_Ekkn is a CDS View that provides data about "Account Assignment" in SAP S/4HANA. It reads from 2 data sources (ekkn, cepc) and exposes 35 fields.

Data Sources (2)

SourceAliasJoin Type
ekkn a from
cepc b left_outer

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName VFCLMMMEKKN view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Account Assignment view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #P view

Fields (35)

KeyFieldSource TableSource FieldDescription
mandt ekkn mandt Editing Client
PurchasingDocument ebeln Source PurchDoc
PurchasingDocumentItem ebelp Item pur. doc.
AccountAssignmentNumber zekkn Account Assgmt No.
CostCenter kostl Substitute CC
MasterFixedAsset anln1 Asset
ProjectNetwork nplnr Network
ProcessOrder aufnr SettlementOrder
Quantity menge WarrCountValue
MultipleAcctAssgmtDistrPercent vproz Distribution
PurgDocNetAmount netwr Value
IsDeleted loekz Status
GLAccount sakto G/L Account
BusinessArea gsber Business Area
SalesOrder vbeln SD Sched. Agmt
SalesOrderItem vbelp Schd. Agmt Item
SalesOrderScheduleLine veten Schedule Line
FixedAsset anln2 Sub-number
OrderID aufnr SettlementOrder
UnloadingPointName ablad Unloading Point
ControllingArea ekkn kokrs Org. Value
CostObject kstrg Cost Objects
ProfitabilitySegment paobjnr Profit. segment
ProfitCenter ekkn prctr Profit Centers
WBSElementInternalID ps_psp_pnr WBS Element
ProjectNetworkInternalID aufpl TaskList No.Ops
CommitmentItem fipos Commitment item
FundsCenter fistl Funds Center
Fund geber Fund
FunctionalArea fkber Functional Area
Segment
ValidDateFrom
datbiasValidDateToasSegment
ValidDateFrom
ValidDateTo

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 Fclm_Mm_Ekkn.
-- 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: VFCLMMMEKKN

CREATE VIEW Fclm_Mm_Ekkn AS
SELECT
  a.mandt AS mandt,
  ebeln AS PurchasingDocument,
  ebelp AS PurchasingDocumentItem,
  zekkn AS AccountAssignmentNumber,
  kostl AS CostCenter,
  anln1 AS MasterFixedAsset,
  nplnr AS ProjectNetwork,
  aufnr AS ProcessOrder,
  menge AS Quantity,
  vproz AS MultipleAcctAssgmtDistrPercent,
  netwr AS PurgDocNetAmount,
  loekz AS IsDeleted,
  sakto AS GLAccount,
  gsber AS BusinessArea,
  vbeln AS SalesOrder,
  vbelp AS SalesOrderItem,
  veten AS SalesOrderScheduleLine,
  anln2 AS FixedAsset,
  aufnr AS OrderID,
  ablad AS UnloadingPointName,
  a.kokrs AS ControllingArea,
  kstrg AS CostObject,
  paobjnr AS ProfitabilitySegment,
  a.prctr AS ProfitCenter,
  ps_psp_pnr AS WBSElementInternalID,
  aufpl AS ProjectNetworkInternalID,
  fipos AS CommitmentItem,
  fistl AS FundsCenter,
  geber AS Fund,
  fkber AS FunctionalArea,
  '00010101' AS ValidDateFrom,
  '99991231' AS ValidDateTo
FROM ekkn AS a
LEFT OUTER JOIN cepc AS b ON /* join condition not captured in parsed metadata */
;