CRMS4_IU_C_CTHIP

DDL: CRMS4_IU_C_CTHIP SQL: CRMS4IUVCCTHIP Type: view

Utilities Contract Header Item Period

CRMS4_IU_C_CTHIP is a CDS View that provides data about "Utilities Contract Header Item Period" in SAP S/4HANA. It reads from 1 data source (CRMS4_IU_C_CTH) and exposes 28 fields with key fields objtype_h, object_id.

Data Sources (1)

SourceAliasJoin Type
CRMS4_IU_C_CTH CRMS4_IU_C_CTH from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName CRMS4IUVCCTHIP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Utilities Contract Header Item Period view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (28)

KeyFieldSource TableSource FieldDescription
KEY objtype_h objtype_h Trans. Cat.
KEY object_id object_id Transaction ID
posting_date posting_date Posting Date
header_guid header_guid Unique Identifier
contend_max contend_max
process_type process_type Type of Data
installation _ContractItem installation Installation
pod_int_ui _ContractItem pod_int_ui PoD
premise _ContractItem premise Premise
isu_contract _ContractItem isu_contract Contract
Division _ContractItem Division Internal Division ID
contstart
contend _ContractItem contend Contract End Date
product_id _ContractItem product_id Simulated Product ID
product _ContractItem product Product Sold
ordered_prod _ContractItem ordered_prod Product
partner_prod _ContractItem partner_prod Partner Product
product_kind _ContractItem product_kind Prod. Tech. Typ
order_date _ContractItem order_date Posting Date
stat_error _ContractItem stat_error Error Status
stat_open _ContractItem stat_open Open
UtilsExternalPointOfDelivery
int_obj_no
root_config _ContractPeriod root_config RtCnfIndic
exist_vckey _ContractPeriod exist_vckey IndicVariantKey
_BusinessPartner _BusinessPartner
_ContractItem _ContractItem
_ContractPeriod _ContractPeriod

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 CRMS4_IU_C_CTHIP.
-- 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: CRMS4IUVCCTHIP

CREATE VIEW CRMS4_IU_C_CTHIP AS
SELECT
  objtype_h,
  object_id,
  posting_date,
  header_guid,
  contend_max,
  process_type,
  _ContractItem.installation AS installation,
  _ContractItem.pod_int_ui AS pod_int_ui,
  _ContractItem.premise AS premise,
  _ContractItem.isu_contract AS isu_contract,
  _ContractItem.Division AS Division,
  _ContractItem.contend AS contend,
  _ContractItem.product_id AS product_id,
  _ContractItem.product AS product,
  _ContractItem.ordered_prod AS ordered_prod,
  _ContractItem.partner_prod AS partner_prod,
  _ContractItem.product_kind AS product_kind,
  _ContractItem.order_date AS order_date,
  _ContractItem.stat_error AS stat_error,
  _ContractItem.stat_open AS stat_open,
  _ContractItem._PointOfDelivery.UtilsExternalPointOfDelivery AS UtilsExternalPointOfDelivery,
  _ContractPeriod.root_config AS root_config,
  _ContractPeriod.exist_vckey AS exist_vckey
FROM CRMS4_IU_C_CTH
;