Deprecated
This CDS view is deprecated in S/4HANA. Use C_REContractAssignSubjectQ_2 instead. View all deprecated CDS views →

C_REContractAssignSubjectQ

DDL: C_RECONTRACTASSIGNSUBJECTQ SQL: CRECONTRASSSUBQ Type: view CONSUMPTION

RE Contract Subject Assignments Query

C_REContractAssignSubjectQ (Consumption)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

C_REContractAssignSubjectQ is a Consumption CDS View that provides data about "RE Contract Subject Assignments Query" in SAP S/4HANA. It reads from 1 data source (I_REContractAssignSubject) and exposes 29 fields.

SAP API Hub

StateDeprecated
Line of BusinessCross Applications
Application ComponentRE-FX-CN
CapabilitiesAnalytical Query
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_REContractAssignSubject I_REContractAssignSubject from

Parameters (2)

NameTypeDefault
P_ValidFrom vdm_validitystart
P_ValidTo vdm_validityend

Annotations (16)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName CRECONTRASSSUBQ view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label RE Contract Subject Assignments Query view
Metadata.ignorePropagatedAnnotations true view
Analytics.query true view
VDM.viewType #CONSUMPTION view
ObjectModel.modelingPattern #ANALYTICAL_QUERY view
OData.publish true view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor C_REContractAssignSubjectQ_2 view

Fields (29)

KeyFieldSource TableSource FieldDescription
CompanyCode CompanyCode Receiver Company Code
RealEstateContract RealEstateContract Real Estate Contract
InternalRealEstateNumber InternalRealEstateNumber Internal Key of Real Estate Object
ObjectInternalID ObjectInternalID Object number
Responsible Responsible Person Responsible
ResponsibleUserFullName ResponsibleUserFullName User Description
REContractName REContractName Contract Name
ContractStartDate ContractStartDate Contract Start Date
ContractEndDate ContractEndDate Contract End Date
REContractFirstEndDate REContractFirstEndDate Date of First Contract End
REContractNumberOld REContractNumberOld Number of Old Contract
REAuthorizationGroup REAuthorizationGroup Authorization Group
ValuationRelevance ValuationRelevance Valuation Relevance
CompanyCodeName CompanyCodeName Name of Company Code or Company
REContractType REContractType Contract Type
REContractTypeName REContractTypeName Contract Type Name
ObjectValidFrom ObjectValidFrom Relation Valid From
ObjectValidTo ObjectValidTo Validity End Date
REContractSubjectNumber REContractSubjectNumber Contract Object Number
REContractSubjectDescription REContractSubjectDescription Name of Contract Object
ExternalId ExternalId External Identification for Contract Object
REContractSubjectClass REContractSubjectClass Contract Object Class
REContractSubjectClassName REContractSubjectClassName Short Text for Fixed Values
REContractSubjectType REContractSubjectType Type of Contract Object
REContractSubjectTypeName REContractSubjectTypeName Description of Contract Object Type
REAccountingObject REAccountingObject Object Number Account Assignment
REAccountingObjectType REAccountingObjectType Object Type
REAccountingObjectName REAccountingObjectName Complete Object Identification, for Example BE 1000/123
NumberOfREContracts NumberOfREContracts

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_REContractAssignSubjectQ.
-- 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: CRECONTRASSSUBQ
-- Parameters: P_ValidFrom : vdm_validitystart, P_ValidTo : vdm_validityend

CREATE VIEW C_REContractAssignSubjectQ AS
SELECT
  CompanyCode,
  RealEstateContract,
  InternalRealEstateNumber,
  ObjectInternalID,
  Responsible,
  ResponsibleUserFullName,
  REContractName,
  ContractStartDate,
  ContractEndDate,
  REContractFirstEndDate,
  REContractNumberOld,
  REAuthorizationGroup,
  ValuationRelevance,
  CompanyCodeName,
  REContractType,
  REContractTypeName,
  ObjectValidFrom,
  ObjectValidTo,
  REContractSubjectNumber,
  REContractSubjectDescription,
  ExternalId,
  REContractSubjectClass,
  REContractSubjectClassName,
  REContractSubjectType,
  REContractSubjectTypeName,
  REAccountingObject,
  REAccountingObjectType,
  REAccountingObjectName,
  NumberOfREContracts
FROM I_REContractAssignSubject
;