p_aps_iam_app_srvc

DDL: P_APS_IAM_APP_SRVC Type: view_entity Package: SR_APS_IAM_APP

IAM: IAM App - Services

p_aps_iam_app_srvc is a CDS View that provides data about "IAM: IAM App - Services" in SAP S/4HANA. It reads from 6 data sources and exposes 23 fields with key fields AppId, SrvcType, SrvcName, SrvcType, SrvcName. Part of development package SR_APS_IAM_APP.

Data Sources (6)

SourceAliasJoin Type
aps_iam_w_appsrv srv from
aps_iam_w_appsrv srv union_all
dd07t srv_type_text left_outer
dd07t srv_type_text left_outer
p_aps_iam_app_srvc_usob usob inner
p_aps_iam_app_srvc_usob usob inner

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label IAM: IAM App - Services view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (23)

KeyFieldSource TableSource FieldDescription
KEY AppId aps_iam_w_appsrv app_id Identifier
KEY SrvcType aps_iam_w_appsrv srvc_type Test status type
KEY SrvcName aps_iam_w_appsrv srvc_name SRVC Name
SrvcTypeText dd07t ddtext Short text
UiadSrc aps_iam_w_appsrv uiad_src App ID
Active aps_iam_w_appsrv active Usage Active
Object p_aps_iam_app_srvc_usob Object TRFM Object
Name p_aps_iam_app_srvc_usob Name Zone name
ObjName p_aps_iam_app_srvc_usob ObjName Table Name
ServiceType p_aps_iam_app_srvc_usob ServiceType Type of Ext. Service
Service p_aps_iam_app_srvc_usob Service Service Type
app_idasAppId
KEY SrvcType aps_iam_w_appsrv srvc_type Test status type
KEY SrvcName aps_iam_w_appsrv srvc_name SRVC Name
SrvcTypeText dd07t ddtext Short text
UiadSrc aps_iam_w_appsrv uiad_src App ID
Active aps_iam_w_appsrv active Usage Active
Object p_aps_iam_app_srvc_usob Object TRFM Object
Name p_aps_iam_app_srvc_usob Name Zone name
ObjName p_aps_iam_app_srvc_usob ObjName Table Name
ServiceType p_aps_iam_app_srvc_usob ServiceType Type of Ext. Service
Service p_aps_iam_app_srvc_usob Service Service Type
Description p_aps_iam_app_srvc_usob Description Well Code Des.

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 p_aps_iam_app_srvc.
-- 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 p_aps_iam_app_srvc AS
SELECT
  srv.app_id AS AppId,
  srv.srvc_type AS SrvcType,
  srv.srvc_name AS SrvcName,
  srv_type_text.ddtext AS SrvcTypeText,
  srv.uiad_src AS UiadSrc,
  srv.active AS Active,
  usob.Object AS Object,
  usob.Name AS Name,
  usob.ObjName AS ObjName,
  usob.ServiceType AS ServiceType,
  usob.Service AS Service,
  usob.Description AS app_idasAppId,
  usob.Description AS Description
FROM aps_iam_w_appsrv AS srv
INNER JOIN p_aps_iam_app_srvc_usob AS usob ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dd07t AS srv_type_text ON /* join condition not captured in parsed metadata */
-- UNION ALL with additional select branch(es): aps_iam_w_appsrv
;