P_FinTransSglExtTrdIdentifier

DDL: P_FINTRANSSGLEXTTRDIDENTIFIER SQL: PFINSGEXTTRTRAID Type: view COMPOSITE

Fin Trans Single External Trade ID

P_FinTransSglExtTrdIdentifier is a Composite CDS View that provides data about "Fin Trans Single External Trade ID" in SAP S/4HANA. It reads from 1 data source (I_FinTransExtTradeIdentifier) and exposes 4 fields.

Data Sources (1)

SourceAliasJoin Type
I_FinTransExtTradeIdentifier I_FinTransExtTradeIdentifier from

Annotations (10)

NameValueLevelField
EndUserText.label Fin Trans Single External Trade ID view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName PFINSGEXTTRTRAID view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
CompanyCode CompanyCode Receiver Company Code
FinancialTransaction FinancialTransaction Transaction
TradeLegalBasis
ExternalTradeIdentifier

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 P_FinTransSglExtTrdIdentifier.
-- 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: PFINSGEXTTRTRAID

CREATE VIEW P_FinTransSglExtTrdIdentifier AS
SELECT
  CompanyCode,
  FinancialTransaction,
  max(TradeLegalBasis) AS TradeLegalBasis,
  max(ExternalTradeIdentifier) AS ExternalTradeIdentifier
FROM I_FinTransExtTradeIdentifier
;