I_InvgCsMActyIncdntStatus

DDL: I_INVGCSMACTYINCDNTSTATUS SQL: IACTINCSTATUS Type: view BASIC

Basic View for ICM Activity and Incident Status

I_InvgCsMActyIncdntStatus is a Basic CDS View that provides data about "Basic View for ICM Activity and Incident Status" in SAP S/4HANA. It reads from 1 data source (crm_jest) and exposes 4 fields with key fields mandt, InvgCsMOrderUUID, InvgCsMActyIncdntStatus.

Data Sources (1)

SourceAliasJoin Type
crm_jest crm_jest from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IACTINCSTATUS view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Basic View for ICM Activity and Incident Status view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY mandt mandt Editing Client
KEY InvgCsMOrderUUID objnr Val. Obj. No.
KEY InvgCsMActyIncdntStatus stat Status of Time-Dependent Document Linkage
InvgCsMActyIncdntStsIsInactive inact TRUE

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_InvgCsMActyIncdntStatus.
-- 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: IACTINCSTATUS

CREATE VIEW I_InvgCsMActyIncdntStatus AS
SELECT
  mandt,
  objnr AS InvgCsMOrderUUID,
  stat AS InvgCsMActyIncdntStatus,
  inact AS InvgCsMActyIncdntStsIsInactive
FROM crm_jest
;