I_ACMTrdgContrTextObjType

DDL: I_ACMTRDGCONTRTEXTOBJTYPE SQL: ICONTRTXTOBJ Type: view BASIC

Master Data for ACM Trading Contract Text Object Type

I_ACMTrdgContrTextObjType is a Basic CDS View that provides data about "Master Data for ACM Trading Contract Text Object Type" in SAP S/4HANA. It reads from 1 data source (I_TextObjectType) and exposes 3 fields with key fields TextObjectType, TextObjectCategory. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_TextObjectType I_TextObjectType from

Associations (1)

CardinalityTargetAliasCondition
[*] I_ACMTrdgContrTextObjTypeTxt _ACMTextObjectTypeText

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ICONTRTXTOBJ view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Master Data for ACM Trading Contract Text Object Type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY TextObjectType TextObjectType Text ID
KEY TextObjectCategory TextObjectCategory Text object
_ACMTextObjectTypeText _ACMTextObjectTypeText

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_ACMTrdgContrTextObjType.
-- 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: ICONTRTXTOBJ

CREATE VIEW I_ACMTrdgContrTextObjType AS
SELECT
  TextObjectType,
  TextObjectCategory
FROM I_TextObjectType
LEFT OUTER JOIN I_ACMTrdgContrTextObjTypeTxt AS _ACMTextObjectTypeText ON /* condition not available in parsed metadata */  -- association [*]
;