I_CASubApplication

DDL: I_CASUBAPPLICATION Type: view_entity COMPOSITE

Contract Subapplication

I_CASubApplication (Composite)

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

Contract Accounting Subapplication · Contract Accounting

I_CASubApplication is a Composite CDS View (Dimension) that provides data about "Contract Subapplication" in SAP S/4HANA. It reads from 2 data sources (I_CASubApplicationActive, P_CASubApplicationSpace) and exposes 3 fields with key field CASubApplication. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Configuration Data
Data CategoryDimension
Purpose
This CDS view retrieves subapplications defining the meaning of the reference specifications of a contract in Contract Accounting . This CDS view provides the data to answer the business question: Which subapplication values are available in the system? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessContract Accounting
Application ComponentFI-CA
CapabilitiesAnalytical Dimension, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Data Extraction
PackageContract Accounting for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view retrieves subapplications defining the meaning of the reference specifications of a contract in Contract Accounting.</p> <p>This CDS view provides the data to answer the business question: Which subapplication values are available in the system?</p> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

Documentation

Data Sources (2)

SourceAliasJoin Type
I_CASubApplicationActive I_CASubApplicationActive from
P_CASubApplicationSpace P_CASubApplicationSpace union_all

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_CASubApplicationText _CASubApplicationText $projection.CASubApplication = _CASubApplicationText.CASubApplication

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
EndUserText.label Contract Subapplication view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #NONE view
ObjectModel.representativeKey CASubApplication view
ObjectModel.sapObjectNodeType.name ContrAcctgSubapplication view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #COMPOSITE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CASubApplication CASubApplication Subapplication in Contract Accounts Receivable and Payable
CASubApplicationkeyCASubApplication
_CASubApplicationText _CASubApplicationText

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_CASubApplication.
-- 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 I_CASubApplication AS
SELECT
  CASubApplication
FROM I_CASubApplicationActive
LEFT OUTER JOIN I_CASubApplicationText AS _CASubApplicationText ON CASubApplication = _CASubApplicationText.CASubApplication  -- association [1..*]
-- UNION ALL with additional select branch(es): P_CASubApplicationSpace
;