I_ServiceTeamVH

DDL: I_SERVICETEAMVH Type: view COMPOSITE

Service Team

I_ServiceTeamVH is a Composite CDS View that provides data about "Service Team" in SAP S/4HANA.

Annotations (14)

NameValueLevelField
EndUserText.label Service Team view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.representativeKey ServiceTeam view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName IRSMSRVCTEAMVH view
AbapCatalog.compiler.compareFilter true view

Fields (23)

KeyFieldSource TableSource FieldDescription
KEY ServiceTeam I_ServiceTeam BusinessPartner Issuing Authority
BusinessPartner BusinessPartner Issuing Authority
ServiceTeamName I_ServiceTeam BusinessPartnerName Name
OrganizationBPName1 I_ServiceTeam OrganizationBPName1 Name 1
OrganizationBPName2 I_ServiceTeam OrganizationBPName2 Name 2
PostalCode
CityName
Country
CountryName
AuthorizationGroup I_ServiceTeam AuthorizationGroup AuthorizGroup
IsBusinessPurposeCompleted I_ServiceTeam IsBusinessPurposeCompleted Purpose Completed
DataControllerSet I_ServiceTeam DataControllerSet Data Ctrlr. Set
DataController1 I_ServiceTeam DataController1 Data Controller
DataController2 I_ServiceTeam DataController2 Data Controller
DataController3 I_ServiceTeam DataController3 Data Controller
DataController4 I_ServiceTeam DataController4 Data Controller
DataController5 I_ServiceTeam DataController5 Data Controller
DataController6 I_ServiceTeam DataController6 Data Controller
DataController7 I_ServiceTeam DataController7 Data Controller
DataController8 I_ServiceTeam DataController8 Data Controller
DataController9 I_ServiceTeam DataController9 Data Controller
DataController10 I_ServiceTeam DataController10 Data Controller
_CurrentDefaultAddress _CurrentDefaultAddress

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_ServiceTeamVH.
-- 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_ServiceTeamVH AS
SELECT
  I_ServiceTeam.BusinessPartner AS ServiceTeam,
  BusinessPartner,
  I_ServiceTeam.BusinessPartnerName AS ServiceTeamName,
  I_ServiceTeam.OrganizationBPName1 AS OrganizationBPName1,
  I_ServiceTeam.OrganizationBPName2 AS OrganizationBPName2,
  _CurrentDefaultAddress._Address.PostalCode AS PostalCode,
  _CurrentDefaultAddress._Address.CityName AS CityName,
  _CurrentDefaultAddress._Address.Country AS Country,
  _CurrentDefaultAddress._Address._Country._Text[1:Language=$session.system_language].CountryName AS CountryName,
  I_ServiceTeam.AuthorizationGroup AS AuthorizationGroup,
  I_ServiceTeam.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted,
  I_ServiceTeam.DataControllerSet AS DataControllerSet,
  I_ServiceTeam.DataController1 AS DataController1,
  I_ServiceTeam.DataController2 AS DataController2,
  I_ServiceTeam.DataController3 AS DataController3,
  I_ServiceTeam.DataController4 AS DataController4,
  I_ServiceTeam.DataController5 AS DataController5,
  I_ServiceTeam.DataController6 AS DataController6,
  I_ServiceTeam.DataController7 AS DataController7,
  I_ServiceTeam.DataController8 AS DataController8,
  I_ServiceTeam.DataController9 AS DataController9,
  I_ServiceTeam.DataController10 AS DataController10
;