P_TagAssignment

DDL: P_TAGASSIGNMENT SQL: PTAGASGMNT Type: view CONSUMPTION Package: ODATA_ALLOCATION_TAG_V3

Is Tag Assigned

P_TagAssignment is a Consumption CDS View that provides data about "Is Tag Assigned" in SAP S/4HANA. It reads from 1 data source (I_AllocTagObjectAssignment) and exposes 5 fields. Part of development package ODATA_ALLOCATION_TAG_V3.

Data Sources (1)

SourceAliasJoin Type
I_AllocTagObjectAssignment I_AllocTagObjectAssignment from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PTAGASGMNT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view

Fields (5)

KeyFieldSource TableSource FieldDescription
AllocationType AllocationType Table
AllocationCycle AllocationCycle Cycle
AllocationCycleStartDate AllocationCycleStartDate Valid From
AllocationCycleSegment AllocationCycleSegment Segment Number
AllocationTagID AllocationTagID Allocation Tags

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 P_TagAssignment.
-- 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: PTAGASGMNT

CREATE VIEW P_TagAssignment AS
SELECT
  AllocationType,
  AllocationCycle,
  AllocationCycleStartDate,
  AllocationCycleSegment,
  AllocationTagID
FROM I_AllocTagObjectAssignment
;