I_CntrlPurContrSimulation

DDL: I_CNTRLPURCONTRSIMULATION SQL: ICCTRSIMLN Type: view BASIC

Simulation of central purchase contract

I_CntrlPurContrSimulation is a Basic CDS View that provides data about "Simulation of central purchase contract" in SAP S/4HANA. It reads from 1 data source (mmpur_cctr_smlte) and exposes 16 fields with key field CntrlPurContrSimulationUUID.

Data Sources (1)

SourceAliasJoin Type
mmpur_cctr_smlte mmpur_cctr_smlte from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ICCTRSIMLN view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.preserveKey true view
EndUserText.label Simulation of central purchase contract view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.personalData.blocking #REQUIRED view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY CntrlPurContrSimulationUUID cntrlpurcontrsimulationuuid GUID
CntrlPurchaseContractDraftUUID cntrlpurchasecontractdraftuuid Key
CentralPurchaseContract centralpurchasecontract Purchasing Doc.
PurchasingDocumentCategory purchasingdocumentcategory Doc. Category
PurchasingDocumentType purchasingdocumenttype RFQ Type
PurchasingOrganization purchasingorganization Purchasing Organization
CompanyCode companycode Receiver Company Code
PaymentTerms paymentterms Pyt Terms
LogicalSystem logicalsystem Logical System
DocumentCurrency documentcurrency Document Currency
PurchasingGroup purchasinggroup Purchasing Group
DistrResponseMessageUUID distrresponsemessageuuid GUID
CePuCoSimulationIsInProcess cepucosimulationisinprocess Checkbox
SystemMessageType systemmessagetype Message type
CreatedByUser createdbyuser User Name
CePuCoSimulationStartDateTime cepucosimulationstartdatetime Timestamp

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_CntrlPurContrSimulation.
-- 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: ICCTRSIMLN

CREATE VIEW I_CntrlPurContrSimulation AS
SELECT
  CntrlPurContrSimulationUUID,
  CntrlPurchaseContractDraftUUID,
  CentralPurchaseContract,
  PurchasingDocumentCategory,
  PurchasingDocumentType,
  PurchasingOrganization,
  CompanyCode,
  PaymentTerms,
  LogicalSystem,
  DocumentCurrency,
  PurchasingGroup,
  DistrResponseMessageUUID,
  CePuCoSimulationIsInProcess,
  SystemMessageType,
  CreatedByUser,
  CePuCoSimulationStartDateTime
FROM mmpur_cctr_smlte
;