C_IPUTSProposedScope

DDL: C_IPUTSPROPOSEDSCOPE Type: view_entity CONSUMPTION

IPUTS Proposed Scope

C_IPUTSProposedScope is a Consumption CDS View that provides data about "IPUTS Proposed Scope" in SAP S/4HANA. It reads from 1 data source (I_IPUTSProposedScope) and exposes 27 fields with key field IPUTSScopeProposalUUID. It is exposed through 1 OData service (UI_IPUTSSCOPE).

Data Sources (1)

SourceAliasJoin Type
I_IPUTSProposedScope I_IPUTSProposedScope projection

Annotations (6)

NameValueLevelField
EndUserText.label IPUTS Proposed Scope view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view

OData Services (1)

ServiceBindingVersionContractRelease
UI_IPUTSSCOPE UI_IPUTSSCOPE_SRV V2 C1 NOT_RELEASED

Fields (27)

KeyFieldSource TableSource FieldDescription
KEY IPUTSScopeProposalUUID IPUTSScopeProposalUUID Scope Proposal ID
IPUTSScopeUUID IPUTSScopeUUID Usage Area
IPUTSTestPlanGroupUUID IPUTSTestPlanGroupUUID Test Plan Group
IPUTSFromDate IPUTSFromDate Valid from Date
IPUTSToDate IPUTSToDate Valid to Date
IPUTSTestPlanID IPUTSTestPlanID Testplan Id
IPUTSTestProcessID IPUTSTestProcessID Process Instance ID
IPUTSTestPlanGroupAreaUUID IPUTSTestPlanGroupAreaUUID Scope Area
IPUTSTestPlanName IPUTSTestPlanName
IPUTSApplicationCompGroupUUID IPUTSApplicationCompGroupUUID ACG UUID
IPUTSTestProcessName IPUTSTestProcessName
IPUTSTestProcessDesc IPUTSTestProcessDesc
IPUTSAssociatedScopeItemText IPUTSAssociatedScopeItemText
IPUTSTestPlanGroupAreaName IPUTSTestPlanGroupAreaName
IPUTSTestPlanGroupAreaDesc IPUTSTestPlanGroupAreaDesc
IPUTSApplicationComponentUUID IPUTSApplicationComponentUUID Applic. Component
IPUTSApplicationComponent IPUTSApplicationComponent Application Comp.
IPUTSCloudRelease IPUTSCloudRelease Cloud Release
IPUTSIncrementalReleaseName IPUTSIncrementalReleaseName Data element for CFD release
IPUTSVariantID IPUTSVariantID Variant Saved
IPUTSVariantName IPUTSVariantName
IPUTSHasFrontEndObject IPUTSHasFrontEndObject BSP Object
IPUTSHasBackEndObject IPUTSHasBackEndObject BackEnd Flag
IPUTSPrpsdScopePriority IPUTSPrpsdScopePriority Workflow priority
IPUTSSystemID IPUTSSystemID System ID
IPUTSCreatedBy IPUTSCreatedBy Version Created By
_ResultredirectedtoparentC_IPUTSResult

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 C_IPUTSProposedScope.
-- 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 C_IPUTSProposedScope AS
SELECT
  IPUTSScopeProposalUUID,
  IPUTSScopeUUID,
  IPUTSTestPlanGroupUUID,
  IPUTSFromDate,
  IPUTSToDate,
  IPUTSTestPlanID,
  IPUTSTestProcessID,
  IPUTSTestPlanGroupAreaUUID,
  IPUTSTestPlanName,
  IPUTSApplicationCompGroupUUID,
  IPUTSTestProcessName,
  IPUTSTestProcessDesc,
  IPUTSAssociatedScopeItemText,
  IPUTSTestPlanGroupAreaName,
  IPUTSTestPlanGroupAreaDesc,
  IPUTSApplicationComponentUUID,
  IPUTSApplicationComponent,
  IPUTSCloudRelease,
  IPUTSIncrementalReleaseName,
  IPUTSVariantID,
  IPUTSVariantName,
  IPUTSHasFrontEndObject,
  IPUTSHasBackEndObject,
  IPUTSPrpsdScopePriority,
  IPUTSSystemID,
  IPUTSCreatedBy
FROM I_IPUTSProposedScope
;