C_OpActyInstcPlndWrkInstrnVers

DDL: C_OPACTYINSTCPLNDWRKINSTRNVERS Type: view_entity CONSUMPTION

WI for Plan Data application

C_OpActyInstcPlndWrkInstrnVers is a Consumption CDS View that provides data about "WI for Plan Data application" in SAP S/4HANA. It reads from 4 data sources (I_MfgWorkInstruction, I_MfgWorkInstructionVersion, I_OpActyInstceNtwkElmntBasic, I_ProcgExecOperationActivity) and exposes 9 fields with key fields WorkInstruction, WorkInstructionVersionCounter, Language, OpActyNtwkElement, OpActyNtwkInstance.

Data Sources (4)

SourceAliasJoin Type
I_MfgWorkInstruction MfgWorkInstruction inner
I_MfgWorkInstructionVersion MfgWorkInstructionVersion from
I_OpActyInstceNtwkElmntBasic OpActyInstceOpActyNtwkElmnt inner
I_ProcgExecOperationActivity ProcgExecOperationActivity inner

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label WI for Plan Data application view
VDM.viewType #CONSUMPTION view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY WorkInstruction
KEY WorkInstructionVersionCounter I_MfgWorkInstructionVersion MfgWorkInstructionVersCounter Version No.
KEY Language
KEY OpActyNtwkElement I_ProcgExecOperationActivity OpActyNtwkElement Element Number
KEY OpActyNtwkInstance
MfgWorkInstructionContent I_MfgWorkInstructionVersion MfgWorkInstructionContent Content
LanguageName I_MfgWorkInstructionVersion LanguageName Name
_Lang I_MfgWorkInstructionVersion _Lang
_OpActyNtwkInstanceBasic I_OpActyInstceNtwkElmntBasic _OpActyNtwkInstanceBasic

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 C_OpActyInstcPlndWrkInstrnVers.
-- 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 C_OpActyInstcPlndWrkInstrnVers AS
SELECT
  cast ( MfgWorkInstructionVersion.MfgWorkInstruction as mpe_wi_id preserving type ) AS WorkInstruction,
  MfgWorkInstructionVersion.MfgWorkInstructionVersCounter AS WorkInstructionVersionCounter,
  cast ( MfgWorkInstructionVersion.Language as spras preserving type ) AS Language,
  ProcgExecOperationActivity.OpActyNtwkElement AS OpActyNtwkElement,
  cast ( OpActyInstceOpActyNtwkElmnt.OpActyNtwkInstance as mpe_oan_instance_id preserving type ) AS OpActyNtwkInstance,
  MfgWorkInstructionVersion.MfgWorkInstructionContent AS MfgWorkInstructionContent,
  MfgWorkInstructionVersion.LanguageName AS LanguageName,
  MfgWorkInstructionVersion._Lang AS _Lang,
  OpActyInstceOpActyNtwkElmnt._OpActyNtwkInstanceBasic AS _OpActyNtwkInstanceBasic
FROM I_MfgWorkInstructionVersion AS MfgWorkInstructionVersion
INNER JOIN I_ProcgExecOperationActivity AS ProcgExecOperationActivity ON /* join condition not captured in parsed metadata */
INNER JOIN I_MfgWorkInstruction AS MfgWorkInstruction ON /* join condition not captured in parsed metadata */
INNER JOIN I_OpActyInstceNtwkElmntBasic AS OpActyInstceOpActyNtwkElmnt ON /* join condition not captured in parsed metadata */
;