I_MfgBuyOffCycleOpActyNtwk

DDL: I_MFGBUYOFFCYCLEOPACTYNTWK Type: view_entity BASIC

Buy Off Cycle

I_MfgBuyOffCycleOpActyNtwk is a Basic CDS View that provides data about "Buy Off Cycle" in SAP S/4HANA. It reads from 1 data source (P_MfgBuyOffCycleOAN) and exposes 12 fields with key field MfgBuyOffCycle.

Data Sources (1)

SourceAliasJoin Type
P_MfgBuyOffCycleOAN P_MfgBuyOffCycleOAN from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Buy Off Cycle view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY MfgBuyOffCycle MfgBuyOffCycle Buyoff
MfgBuyOffStatus MfgBuyOffStatus Status
MfgBuyOffInitiator MfgBuyOffInitiator User Name
OpActyNtwkElement OpActyNtwkElement Element Number
OpActyNtwkInstance OpActyNtwkInstance Instance ID
ShopFloorItem ShopFloorItem Serial.Mat. ID
OpActyNtwkElementElement OpActyNtwkElementElement Operation Activity
OpActyNtwkElementElmntVersCntr OpActyNtwkElementElmntVersCntr OA Version
OperationActivityNetwork OperationActivityNetwork
OpActyNtwkVersionCounter OpActyNtwkVersionCounter
OrderOperationInternalID OrderOperationInternalID
OrderInternalID OrderInternalID Plan No.f.Oper.

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_MfgBuyOffCycleOpActyNtwk.
-- 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 I_MfgBuyOffCycleOpActyNtwk AS
SELECT
  MfgBuyOffCycle,
  MfgBuyOffStatus,
  MfgBuyOffInitiator,
  OpActyNtwkElement,
  OpActyNtwkInstance,
  ShopFloorItem,
  OpActyNtwkElementElement,
  OpActyNtwkElementElmntVersCntr,
  OperationActivityNetwork,
  OpActyNtwkVersionCounter,
  OrderOperationInternalID,
  OrderInternalID
FROM P_MfgBuyOffCycleOAN
;