APS_IAM_INFO_USOBHASH

DDL: APS_IAM_INFO_USOBHASH Type: view_entity Package: SR_APS_IAM_INFO

Usobhash Service Name and Version

APS_IAM_INFO_USOBHASH is a CDS View that provides data about "Usobhash Service Name and Version" in SAP S/4HANA. It reads from 1 data source (usobhash) and exposes 9 fields with key fields Name, Type. Part of development package SR_APS_IAM_INFO.

Data Sources (1)

SourceAliasJoin Type
usobhash usobhash from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Usobhash Service Name and Version view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY Name name Zone name
KEY Type type Worklist Type
Pgmid pgmid Program Name
Object object TRFM Object
ObjName obj_name Object Name
ServiceType service_type Type of Ext. Service
Service service Service Type
TechnicalName
Version

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 APS_IAM_INFO_USOBHASH.
-- 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 APS_IAM_INFO_USOBHASH AS
SELECT
  Name,
  Type,
  Pgmid,
  Object,
  obj_name AS ObjName,
  service_type AS ServiceType,
  Service,
  substring( obj_name, 1, 35 ) AS TechnicalName,
  substring( obj_name, 36, 4 ) AS Version
FROM usobhash
;