I_SuplrAuthorizationGroupVH

DDL: I_SUPLRAUTHORIZATIONGROUPVH SQL: ISUPAUTHGRPVH Type: view BASIC Package: VDM_MD_BP

Supplier Authorization Group

I_SuplrAuthorizationGroupVH is a Basic CDS View that provides data about "Supplier Authorization Group" in SAP S/4HANA. It reads from 1 data source (tb037) and exposes 3 fields with key field AuthorizationGroup. It has 1 association to related views. It is exposed through 3 OData services (ASQL_F0712, ASQL_F7204A, ASQL_F7205A). Part of development package VDM_MD_BP.

Data Sources (1)

SourceAliasJoin Type
tb037 tb037 from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_BusPartAuthorizationGroupTxt _Text $projection.AuthorizationGroup = _Text.AuthorizationGroup and $projection.AuthorizationObject = _Text.AuthorizationObject

Annotations (14)

NameValueLevelField
EndUserText.label Supplier Authorization Group view
AbapCatalog.sqlViewName ISUPAUTHGRPVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey AuthorizationGroup view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #BASIC view
Search.searchable true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Consumption.ranked true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view

OData Services (3)

ServiceBindingVersionContractRelease
ASQL_F0712 ASQL_F0712 C2 NOT_RELEASED
ASQL_F7204A ASQL_F7204A C2 NOT_RELEASED
ASQL_F7205A ASQL_F7205A C2 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AuthorizationGroup tb037 augrp Component of the Version Number
AuthorizationObject tb037 auobj Group object
_Text _Text

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_SuplrAuthorizationGroupVH.
-- 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: ISUPAUTHGRPVH

CREATE VIEW I_SuplrAuthorizationGroupVH AS
SELECT
  tb037.augrp AS AuthorizationGroup,
  tb037.auobj AS AuthorizationObject
FROM tb037
LEFT OUTER JOIN I_BusPartAuthorizationGroupTxt AS _Text ON AuthorizationGroup = _Text.AuthorizationGroup AND AuthorizationObject = _Text.AuthorizationObject  -- association [1..*]
;