I_PubSecAvailyCtrlProfile

DDL: I_PUBSECAVAILYCTRLPROFILE SQL: IPSMS4CAVCPRFL Type: view BASIC

Availability Control Profile for Public Sector

I_PubSecAvailyCtrlProfile (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_PubSecAvailyCtrlProfile is a Basic CDS View (Dimension) that provides data about "Availability Control Profile for Public Sector" in SAP S/4HANA. It reads from 2 data sources (finsc_avc_prof, psm_d_avc_prf_hd) and exposes 4 fields with key field AvailabilityControlProfile. It has 2 associations to related views. It is exposed through 1 OData service (UI_AVAILYCTRLEXCPTN_MANAGE).

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentPSM-FM-BU-AC
CapabilitiesAnalytical Dimension
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (2)

SourceAliasJoin Type
finsc_avc_prof FinAvc inner
psm_d_avc_prf_hd Main from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_AvailabilityCtrlProfileText _Text $projection.AvailabilityControlProfile = _Text.AvailabilityControlProfile
[0..1] I_PubSecBudgetScenario _PubSecBudgetScenario $projection.BudgetScenario = _PubSecBudgetScenario.BudgetScenario

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IPSMS4CAVCPRFL view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled false view
Analytics.internalName #LOCAL view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey AvailabilityControlProfile view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Availability Control Profile for Public Sector view

OData Services (1)

ServiceBindingVersionContractRelease
UI_AVAILYCTRLEXCPTN_MANAGE UI_AVAILYCTRLEXCPTN_MANAGE V2 C1 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY AvailabilityControlProfile Budget Availability Control Profile for Public Sector Mgmt
BudgetScenario psm_d_avc_prf_hd budget_scenario Budgeting Scenario
_PubSecBudgetScenario _PubSecBudgetScenario
_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_PubSecAvailyCtrlProfile.
-- 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: IPSMS4CAVCPRFL

CREATE VIEW I_PubSecAvailyCtrlProfile AS
SELECT
  cast( Main.profile as psm_s4c_fm_avc_profile preserving type ) AS AvailabilityControlProfile,
  Main.budget_scenario AS BudgetScenario
FROM psm_d_avc_prf_hd AS Main
INNER JOIN finsc_avc_prof AS FinAvc ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_AvailabilityCtrlProfileText AS _Text ON AvailabilityControlProfile = _Text.AvailabilityControlProfile  -- association [0..*]
LEFT OUTER JOIN I_PubSecBudgetScenario AS _PubSecBudgetScenario ON BudgetScenario = _PubSecBudgetScenario.BudgetScenario  -- association [0..1]
;