A_TaskListLongText

DDL: A_TASKLISTLONGTEXT Type: view_entity CONSUMPTION Package: VDM_EAM_TASKLIST

Header Long Texts

A_TaskListLongText is a Consumption CDS View that provides data about "Header Long Texts" in SAP S/4HANA. It reads from 1 data source (R_TaskListLongTextTP) and exposes 9 fields with key fields TaskListType, TaskListGroup, TaskListGroupCounter, TaskListVersionCounter. It is exposed through 2 OData services (API_MAINTENANCETASKLIST, ASQL_F7186). Part of development package VDM_EAM_TASKLIST.

Data Sources (1)

SourceAliasJoin Type
R_TaskListLongTextTP R_TaskListLongTextTP projection

Annotations (8)

NameValueLevelField
EndUserText.label Header Long Texts view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view

OData Services (2)

ServiceBindingVersionContractRelease
API_MAINTENANCETASKLIST API_MAINTENANCETASKLIST V4 C2 C1
ASQL_F7186 ASQL_F7186 C2 NOT_RELEASED

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY TaskListType TaskListType Task List Type
KEY TaskListGroup TaskListGroup Group
KEY TaskListGroupCounter TaskListGroupCounter Group Counter
KEY TaskListVersionCounter TaskListVersionCounter
TextObjectKey TextObjectKey Text Name
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
PlainLongText PlainLongText Long Text
Language Language Report Text Language

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_TaskListLongText.
-- 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 A_TaskListLongText AS
SELECT
  TaskListType,
  TaskListGroup,
  TaskListGroupCounter,
  TaskListVersionCounter,
  TextObjectKey,
  ValidityStartDate,
  ValidityEndDate,
  PlainLongText,
  Language
FROM R_TaskListLongTextTP
;