I_WrkPmtProcessingStatusText

DDL: I_WRKPMTPROCESSINGSTATUSTEXT SQL: IPMTPROCGSTSTXT Type: view BASIC

Work Permit Processing Status - Text

I_WrkPmtProcessingStatusText is a Basic CDS View that provides data about "Work Permit Processing Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Name, Language, WorkPermitProcessingStatus.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IPMTPROCGSTSTXT view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
EndUserText.label Work Permit Processing Status - Text view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
AbapCatalog.preserveKey true view
Search.searchable true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Name domname Domain
KEY Language ddlanguage Lang.
KEY WorkPermitProcessingStatus Lower Value
WorkPermitProcessingStatusText ddtext Short 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_WrkPmtProcessingStatusText.
-- 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: IPMTPROCGSTSTXT

CREATE VIEW I_WrkPmtProcessingStatusText AS
SELECT
  domname AS Name,
  ddlanguage AS Language,
  cast( domvalue_l as ptweworkpermitprocessingstatus ) AS WorkPermitProcessingStatus,
  ddtext AS WorkPermitProcessingStatusText
FROM dd07t
;