I_MargAnlysProdAndSrvcObjType

DDL: I_MARGANLYSPRODANDSRVCOBJTYPE SQL: IPROSRVOBJTYPE Type: view BASIC

Product And Service Object Type

I_MargAnlysProdAndSrvcObjType (Basic)

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

Accounting and Financial Close

I_MargAnlysProdAndSrvcObjType is a Basic CDS View that provides data about "Product And Service Object Type" in SAP S/4HANA. It reads from 1 data source (tbo00) and exposes 2 fields with key field MarginAnalysisObjectType. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Sales Accounting
StatusReleased
Purpose
This CDS view provides account assignment types for product and service object types used in margin analysis. It lists all available types in the value help. This CDS view provides the data to answer the following business questions: What are the product and service object types used in margin analysis? Which product and service object types are available for margin analysis? 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 .

Structure
Measures and Attributes Some important measures and attributes are: Margin Analysis Object Type

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentCO-FIO-PA
CapabilitiesData Provider for Value Help
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tbo00 tbo00 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MargAnlysProdAndSrvcObjTypeT _Text $projection.MarginAnalysisObjectType = _Text.MarginAnalysisObjectType

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IPROSRVOBJTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label Product And Service Object Type view
ObjectModel.representativeKey MarginAnalysisObjectType view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #META view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MarginAnalysisObjectType Object type
_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_MargAnlysProdAndSrvcObjType.
-- 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: IPROSRVOBJTYPE

CREATE VIEW I_MargAnlysProdAndSrvcObjType AS
SELECT
  cast(obart as j_obart preserving type ) AS MarginAnalysisObjectType
FROM tbo00
LEFT OUTER JOIN I_MargAnlysProdAndSrvcObjTypeT AS _Text ON MarginAnalysisObjectType = _Text.MarginAnalysisObjectType  -- association [0..*]
;