I_PartnerFunctionLangDepdnt

DDL: I_PARTNERFUNCTIONLANGDEPDNT SQL: ISDPRTFUCLANGDPT Type: view BASIC Package: VDM_SD_SLS_GF

Language-Dependent Code of Partner Function

I_PartnerFunctionLangDepdnt (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Sales

I_PartnerFunctionLangDepdnt is a Basic CDS View (Dimension) that provides data about "Language-Dependent Code of Partner Function" in SAP S/4HANA. It reads from 1 data source (tpaum) and exposes 5 fields with key fields PartnerFunction, Language. It has 2 associations to related views. Part of development package VDM_SD_SLS_GF.

SAP Help Documentation

CategoryPartner Function
Purpose
This CDS view retrieves language-dependent codes of partner functions. Note Each partner function has a fixed SAP code (for example, AG for sold-to party) and supports language-dependent codes (for example, SP for sold-to party when the system logon language is English). The latter can be defined by key users. To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Structure
Important fields Partner function (SAP code) Language key Partner function (language-dependent code)

View on SAP Help Portal →

SAP API Hub

CategoryBasic
StateC1
Line of BusinessSales
Application ComponentSD-SLS-GF-2CL
CapabilitiesAssociation Target for Defining CDS Entities,Analytical Dimension,Data Source for Defining CDS Entities,Data Source in SQL Select
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageSales for SAP S/4HANA Cloud Public Edition
Description This CDS view retrieves language-dependent codes of partner functions. <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
tpaum tpaum from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_PartnerFunction _PartnerFunction $projection.PartnerFunction = _PartnerFunction.PartnerFunction
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (16)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey PartnerFunction view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDPRTFUCLANGDPT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.preserveKey true view
Analytics.internalName #LOCAL view
EndUserText.label Language-Dependent Code of Partner Function view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY PartnerFunction parvw Partner Function
KEY Language spras Off. Language
PartnerFunctionLanguageDepdnt pabez Partner Function (Language-Dependent Code)
_PartnerFunction _PartnerFunction
_Language _Language

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_PartnerFunctionLangDepdnt.
-- 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: ISDPRTFUCLANGDPT

CREATE VIEW I_PartnerFunctionLangDepdnt AS
SELECT
  parvw AS PartnerFunction,
  spras AS Language,
  pabez AS PartnerFunctionLanguageDepdnt
FROM tpaum
LEFT OUTER JOIN I_PartnerFunction AS _PartnerFunction ON PartnerFunction = _PartnerFunction.PartnerFunction  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;