I_PubSecCtrlObjProfileCurDate

DDL: I_PUBSECCTRLOBJPROFILECURDATE SQL: IPSMS4CAVCPDT Type: view BASIC

Public Sector AVC Profile to Current Date

I_PubSecCtrlObjProfileCurDate is a Basic CDS View that provides data about "Public Sector AVC Profile to Current Date" in SAP S/4HANA. It reads from 1 data source (P_PubSecCtrlObjProfileCurDate) and exposes 6 fields with key fields CompanyCode, BudgetScenario. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
P_PubSecCtrlObjProfileCurDate Main from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode
[0..1] I_PubSecBudgetScenario _PubSecBudgetScenario $projection.BudgetScenario = _PubSecBudgetScenario.BudgetScenario
[0..1] I_PubSecAvailyCtrlProfile _PubSecAvailyCtrlProfile $projection.AvailabilityControlProfile = _PubSecAvailyCtrlProfile.AvailabilityControlProfile

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPSMS4CAVCPDT view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
AbapCatalog.buffering.status #NOT_ALLOWED view
EndUserText.label Public Sector AVC Profile to Current Date view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode P_PubSecCtrlObjProfileCurDate CompanyCode Receiver Company Code
KEY BudgetScenario P_PubSecCtrlObjProfileCurDate BudgetScenario
AvailabilityControlProfile
_PubSecAvailyCtrlProfile _PubSecAvailyCtrlProfile
_PubSecBudgetScenario _PubSecBudgetScenario
_CompanyCode _CompanyCode

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_PubSecCtrlObjProfileCurDate.
-- 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: IPSMS4CAVCPDT

CREATE VIEW I_PubSecCtrlObjProfileCurDate AS
SELECT
  Main.CompanyCode AS CompanyCode,
  Main.BudgetScenario AS BudgetScenario,
  cast( Main.AvailabilityControlProfile as psm_s4c_fm_avc_profile preserving type ) AS AvailabilityControlProfile
FROM P_PubSecCtrlObjProfileCurDate AS Main
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [0..1]
LEFT OUTER JOIN I_PubSecBudgetScenario AS _PubSecBudgetScenario ON BudgetScenario = _PubSecBudgetScenario.BudgetScenario  -- association [0..1]
LEFT OUTER JOIN I_PubSecAvailyCtrlProfile AS _PubSecAvailyCtrlProfile ON AvailabilityControlProfile = _PubSecAvailyCtrlProfile.AvailabilityControlProfile  -- association [0..1]
;