I_IntlTrdPartnerRole

DDL: I_INTLTRDPARTNERROLE SQL: IINTTRDPARRO Type: view BASIC Package: VDM_SLL_COR

Partner Role

I_IntlTrdPartnerRole is a Basic CDS View that provides data about "Partner Role" in SAP S/4HANA. It reads from 2 data sources (/sapsll/tpafct, /sapsll/tpatyp) and exposes 2 fields with key field IntlTrdPartnerRole. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F2545). Part of development package VDM_SLL_COR.

Data Sources (2)

SourceAliasJoin Type
/sapsll/tpafct /sapsll/tpafct from
/sapsll/tpatyp /sapsll/tpatyp inner

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_IntlTrdPartnerRoleText _IntlTrdPartnerRoleText _IntlTrdPartnerRoleText.IntlTrdPartnerRole = $projection.IntlTrdPartnerRole

Annotations (9)

NameValueLevelField
EndUserText.label Partner Role view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IINTTRDPARRO view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey IntlTrdPartnerRole view
ObjectModel.usageType.sizeCategory M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F2545 ASQL_F2545 C2 NOT_RELEASED

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY IntlTrdPartnerRole parrl Partner Role
_IntlTrdPartnerRoleText _IntlTrdPartnerRoleText

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_IntlTrdPartnerRole.
-- 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: IINTTRDPARRO

CREATE VIEW I_IntlTrdPartnerRole AS
SELECT
  parrl AS IntlTrdPartnerRole
FROM /sapsll/tpafct
INNER JOIN /sapsll/tpatyp ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_IntlTrdPartnerRoleText AS _IntlTrdPartnerRoleText ON _IntlTrdPartnerRoleText.IntlTrdPartnerRole = IntlTrdPartnerRole  -- association [0..*]
;