I_ExtlyPrvddBPInfoRFCDestAvail

DDL: I_EXTLYPRVDDBPINFORFCDESTAVAIL Type: view_entity COMPOSITE Package: MDQ_DPI_CONN_GENERAL

Shows availability of RFC destination

I_ExtlyPrvddBPInfoRFCDestAvail is a Composite CDS View that provides data about "Shows availability of RFC destination" in SAP S/4HANA. It reads from 1 data source (I_Language) and exposes 1 field with key field ExtlyPrvddBPInfoRFCDestAvaily. It has 2 associations to related views. Part of development package MDQ_DPI_CONN_GENERAL.

Data Sources (1)

SourceAliasJoin Type
I_Language I_Language from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_ExtlyPrvddBPInfoRFCDest _extlyprvddbpinforfcdest 1 = 1
[0..*] I_BPRefRecdExternalMDProvider _ProviderConfig 1 = 1

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Shows availability of RFC destination view
VDM.viewType #COMPOSITE view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY ExtlyPrvddBPInfoRFCDestAvaily

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_ExtlyPrvddBPInfoRFCDestAvail.
-- 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_ExtlyPrvddBPInfoRFCDestAvail AS
SELECT
  cast ( 'X' as mdqdpi_rfc_dest_availability preserving type ) AS ExtlyPrvddBPInfoRFCDestAvaily
FROM I_Language
LEFT OUTER JOIN I_ExtlyPrvddBPInfoRFCDest AS _extlyprvddbpinforfcdest ON 1 = 1  -- association [0..*]
LEFT OUTER JOIN I_BPRefRecdExternalMDProvider AS _ProviderConfig ON 1 = 1  -- association [0..*]
;