P_FrcElmntOrgBusinessAddrText

DDL: P_FRCELMNTORGBUSINESSADDRTEXT SQL: PFEORGBUSADDRT Type: view BASIC

P_FrcElmntOrgBusinessAddrText is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (adrct) and exposes 5 fields with key fields AddressNumber, FrcElmntOrgAddrFromDate, Nation, LanguageCode.

Data Sources (1)

SourceAliasJoin Type
adrct FrcElmntOrgBusinessAddrText from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PFEORGBUSADDRT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AddressNumber adrct addrnumber Address Number
KEY FrcElmntOrgAddrFromDate adrct date_from Validity Start Date
KEY Nation adrct nation Country/Region
KEY LanguageCode adrct langu Primary lang.
AddressText adrct remark Status Description

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_FrcElmntOrgBusinessAddrText.
-- 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: PFEORGBUSADDRT

CREATE VIEW P_FrcElmntOrgBusinessAddrText AS
SELECT
  FrcElmntOrgBusinessAddrText.addrnumber AS AddressNumber,
  FrcElmntOrgBusinessAddrText.date_from AS FrcElmntOrgAddrFromDate,
  FrcElmntOrgBusinessAddrText.nation AS Nation,
  FrcElmntOrgBusinessAddrText.langu AS LanguageCode,
  FrcElmntOrgBusinessAddrText.remark AS AddressText
FROM adrct AS FrcElmntOrgBusinessAddrText
;