I_RenegttnCustomizingCndnType

DDL: I_RENEGTTNCUSTOMIZINGCNDNTYPE SQL: IRENEGOCUSTCOND Type: view BASIC Package: APPL_MM_PUR_CTR_RENEGOTIATION

Renegotiation Condition Customizing data

I_RenegttnCustomizingCndnType is a Basic CDS View that provides data about "Renegotiation Condition Customizing data" in SAP S/4HANA. It reads from 1 data source (mmpur_c_def_cond) and exposes 8 fields with key fields PricingProcedure, ConditionType. It has 1 association to related views. It is exposed through 1 OData service (UI_PURCONTRRENEGTTN_MANAGE). Part of development package APPL_MM_PUR_CTR_RENEGOTIATION.

Data Sources (1)

SourceAliasJoin Type
mmpur_c_def_cond mmpur_c_def_cond from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_ConditionTypeText _ConditionTypeText $projection.ConditionType = _ConditionTypeText.ConditionType and _ConditionTypeText.Language = $session.system_language and _ConditionTypeText.ConditionUsage = 'A' and _ConditionTypeText.ConditionApplication = 'M'

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IRENEGOCUSTCOND view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Renegotiation Condition Customizing data view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view

OData Services (1)

ServiceBindingVersionContractRelease
UI_PURCONTRRENEGTTN_MANAGE UI_PURCONTRRENEGTTN_MANAGE V2 C1 NOT_RELEASED

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY PricingProcedure pricingprocedure Procedure
KEY ConditionType conditiontype Condition type
CndnIsApplicableForRenegttn applicable Applicable
IsDefaultValue defaultvalue Default Setting
ConditionTypeName _ConditionTypeText ConditionTypeName Name
ConditionRateValueIsAmount conditionratevalueisamount TRUE
ConditionRateValueIsRatio conditionratevalueisratio TRUE
_ConditionTypeText _ConditionTypeText

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_RenegttnCustomizingCndnType.
-- 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: IRENEGOCUSTCOND

CREATE VIEW I_RenegttnCustomizingCndnType AS
SELECT
  PricingProcedure,
  ConditionType,
  applicable AS CndnIsApplicableForRenegttn,
  defaultvalue AS IsDefaultValue,
  _ConditionTypeText.ConditionTypeName AS ConditionTypeName,
  ConditionRateValueIsAmount,
  ConditionRateValueIsRatio
FROM mmpur_c_def_cond
LEFT OUTER JOIN I_ConditionTypeText AS _ConditionTypeText ON ConditionType = _ConditionTypeText.ConditionType AND _ConditionTypeText.Language = $session.system_language AND _ConditionTypeText.ConditionUsage = 'A' AND _ConditionTypeText.ConditionApplication = 'M'  -- association [1..1]
;