A_PurgCatTranslationStatus

DDL: A_PURGCATTRANSLATIONSTATUS SQL: APURGCATTRANSST Type: view BASIC Package: ODATA_SLC_API_PUC

Translation Status

A_PurgCatTranslationStatus is a Basic CDS View that provides data about "Translation Status" in SAP S/4HANA. It reads from 1 data source (I_PurchasingCatTranslationSts) and exposes 5 fields with key field PurgCatTranslationUUID. It has 1 association to related views. Part of development package ODATA_SLC_API_PUC.

Data Sources (1)

SourceAliasJoin Type
I_PurchasingCatTranslationSts I_PurchasingCatTranslationSts from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_PurgCat _PurgCat $projection.PurgCatUUID = _PurgCat.PurgCatUUID

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName APURGCATTRANSST view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Translation Status view
AbapCatalog.compiler.compareFilter true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY PurgCatTranslationUUID PurgCatTranslationUUID
PurgCatUUID PurgCatUUID
PurgCatTranslationTgtLang PurgCatTranslationTgtLang
PurgCatTranslationTgtLangSts PurgCatTranslationTgtLangSts
_PurgCat _PurgCat

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 A_PurgCatTranslationStatus.
-- 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: APURGCATTRANSST

CREATE VIEW A_PurgCatTranslationStatus AS
SELECT
  PurgCatTranslationUUID,
  PurgCatUUID,
  PurgCatTranslationTgtLang,
  PurgCatTranslationTgtLangSts
FROM I_PurchasingCatTranslationSts
LEFT OUTER JOIN A_PurgCat AS _PurgCat ON PurgCatUUID = _PurgCat.PurgCatUUID  -- association [1..1]
;