I_ConditionContractStdVH

DDL: I_CONDITIONCONTRACTSTDVH Type: view COMPOSITE Package: WCB_API_A2A_CC_VDM

Condition Contract

I_ConditionContractStdVH (Composite)

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

Sales

I_ConditionContractStdVH is a Composite CDS View that provides data about "Condition Contract" in SAP S/4HANA. It reads from 1 data source (I_ConditionContract) and exposes 21 fields with key field ConditionContract. It is exposed through 14 OData services (ASQL_F3254, ASQL_F3594A, ASQL_F3658A, ...). Part of development package WCB_API_A2A_CC_VDM.

SAP Help Documentation

CategoryCondition Contract
Data CategoryValue Help
Purpose
This CDS view exposes the values for the condition contract. To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view must have a role with the following restriction types set to read access: BEGRU_KNA1 (Authorization Group for Customers) BEGRU_LFA1 (Authorization Group for Suppliers) ORG_AREA (Organizational Area) CONTR_TYP (Condition Contract Type) BEGRU_BUPA_GRP (Authorization Group for Business Partners) BUKRS_KOSTL (Company Code/Cost Center) You can use the Display Restriction Types app to find out in which business catalogs these restriction types are included.

Structure
Important Fields Important fields in this view include the following: Field Name Description ConditionContract Condition Contract CndnContrType Condition Contract Type CndnContrTypeDesc Condition Contract Type Description Customer Customer ExternalDocumentReferenceID External Document Identifier CndnContrValidFrom Valid From CndnContrValidTo Valid To

View on SAP Help Portal →

SAP API Hub

CategoryComposite
StateC1
Line of BusinessSales
Application ComponentLO-GT-CHB
CapabilitiesData Provider for Value Help,Data Source for Search
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Not Released
PackageSales for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view exposes the values for the Condition Contract.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
I_ConditionContract I_ConditionContract from

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName ICNDNCNTR_SVH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey ConditionContract view
ObjectModel.modelingPattern #VALUE_HELP_PROVIDER view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.internalName #LOCAL view
EndUserText.label Condition Contract view
Metadata.ignorePropagatedAnnotations true view
UI.textArrangement #TEXT_FIRST view
Search.searchable true view
Consumption.ranked true view

OData Services (14)

ServiceBindingVersionContractRelease
ASQL_F3254 ASQL_F3254 C2 NOT_RELEASED
ASQL_F3594A ASQL_F3594A C2 NOT_RELEASED
ASQL_F3658A ASQL_F3658A C2 NOT_RELEASED
ASQL_F4165 ASQL_F4165 C2 NOT_RELEASED
ASQL_F4578 ASQL_F4578 C2 NOT_RELEASED
ASQL_F4964 ASQL_F4964 C2 NOT_RELEASED
ASQL_F5856 ASQL_F5856 C2 NOT_RELEASED
ASQL_F7437 ASQL_F7437 C2 NOT_RELEASED
ASQL_F7846 ASQL_F7846 C2 NOT_RELEASED
ASQL_F7847 ASQL_F7847 C2 NOT_RELEASED
ASQL_F7848 ASQL_F7848 C2 NOT_RELEASED
ASQL_F7849 ASQL_F7849 C2 NOT_RELEASED
ASQL_F7850 ASQL_F7850 C2 NOT_RELEASED
ASQL_F7851 ASQL_F7851 C2 NOT_RELEASED

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY ConditionContract ConditionContract Condition Contract
CndnContrType CndnContrType Condition Contract Type
CndnContrTypeDesc Condition Contract Type Description
Customer Customer Customer as Partner of a Condition Contract
PriorSupplier PriorSupplier Prior Supplier
Supplier Supplier Supplier as Partner of a Condition Contract
DistributionChannel DistributionChannel Distribution Channel
Division Division Internal Division ID
PurchasingGroup PurchasingGroup Purchasing Group
PurchasingOrganization PurchasingOrganization Purchasing Organization
SalesOrganization SalesOrganization Sales Organization
PersonWorkAgreement PersonWorkAgreement Worker as Partner of a Condition Contract
CompanyCode CompanyCode Receiver Company Code
CndnContrWorkerCostCenter CndnContrWorkerCostCenter Worker Cost Center
ExternalDocumentReferenceID ExternalDocumentReferenceID External Document Identifier
CndnContrValidFrom CndnContrValidFrom Valid From
CndnContrValidTo CndnContrValidTo Valid To
_Customer _Customer
_PriorSupplier _PriorSupplier
_Supplier _Supplier
_PersonWorkAgreement _PersonWorkAgreement

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_ConditionContractStdVH.
-- 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_ConditionContractStdVH AS
SELECT
  ConditionContract,
  CndnContrType,
  _CndnContrType._Text[1: Language = $session.system_language ].CndnContrTypeDesc AS CndnContrTypeDesc,
  Customer,
  PriorSupplier,
  Supplier,
  DistributionChannel,
  Division,
  PurchasingGroup,
  PurchasingOrganization,
  SalesOrganization,
  PersonWorkAgreement,
  CompanyCode,
  CndnContrWorkerCostCenter,
  ExternalDocumentReferenceID,
  CndnContrValidFrom,
  CndnContrValidTo
FROM I_ConditionContract
;