C_CrdtMgmtBPNegativeEvent
Credit Mgmt Negative Event
C_CrdtMgmtBPNegativeEvent is a Consumption CDS View that provides data about "Credit Mgmt Negative Event" in SAP S/4HANA. It reads from 1 data source (R_CrdtMBPNegativeEvent) and exposes 29 fields with key fields BusinessPartner, CreditSegment, CrdtAcctInformationCategory, CrdtAcctInformationType, AdditionalCreditDocSequence. It has 2 associations to related views. It is exposed through 2 OData services (ASQL_F7367, UI_CRDTMGMTADDLINFO_DISPLAY). Part of development package ODATA_CREDIT_MGMT_MASTER_LIST.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| R_CrdtMBPNegativeEvent | R_CrdtMBPNegativeEvent | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_BusinessPartnerCreditProfile | _CreditProfile | _CreditProfile.BusinessPartner = $projection.BusinessPartner |
| [0..1] | I_CreditManagementAccount | _CreditAccount | _CreditAccount.BusinessPartner = $projection.BusinessPartner and _CreditAccount.CreditSegment = $projection.CreditSegment |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Metadata.allowExtensions | true | view |
OData Services (2)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| ASQL_F7367 | ASQL_F7367 | C2 | NOT_RELEASED | |
| UI_CRDTMGMTADDLINFO_DISPLAY | UI_CRDTMGMTADDLINFO_DISP | V2 | C1 | NOT_RELEASED |
Fields (29)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessPartner | Issuing Authority | ||
| KEY | CreditSegment | CreditSegment | Credit Segment | |
| KEY | CrdtAcctInformationCategory | CrdtAcctInformationCategory | Information Category | |
| KEY | CrdtAcctInformationType | CrdtAcctInformationType | Type | |
| KEY | AdditionalCreditDocSequence | SequenceNumber | Sort sequence | |
| ValidityStartDate | ValidityStartDate | Validity Start Date | ||
| ValidityEndDate | ValidityEndDate | ValidTo | ||
| AdditionalCreditDocComment | AdditionalCreditDocComment | |||
| BusinessPartnerFullName | _BusinessPartner | BusinessPartnerFullName | Broker Name | |
| CrdtAcctInformationTypeName | ||||
| CreditRiskClass | _CreditProfile | CreditRiskClass | Credit Risk Class | |
| CreditRiskClassName | ||||
| CreditWorthinessScoreValue | _CreditProfile | CreditWorthinessScoreValue | ||
| CreditCheckRule | _CreditProfile | CreditCheckRule | ||
| CreditCheckRuleName | ||||
| CreditScoreAndLimitCalcRule | _CreditProfile | CreditScoreAndLimitCalcRule | ||
| CrdtScoreAndLimitCalcRuleName | ||||
| CrdtMgmtBusinessPartnerGroup | _CreditProfile | CrdtMgmtBusinessPartnerGroup | ||
| CrdtMgmtBusPartnerGroupName | ||||
| _BusinessPartner | _BusinessPartner | |||
| _CrdtAcctInfoCategory | _CrdtAcctInfoCategory | |||
| _CrdtAcctInformationType | _CrdtAcctInformationType | |||
| _CreditManagementSegment | _CreditManagementSegment | |||
| _CreditProfile | _CreditProfile | |||
| _RiskClass | _CreditProfile | _RiskClass | ||
| _CheckRule | _CreditProfile | _CheckRule | ||
| _CalcRule | _CreditProfile | _CalcRule | ||
| _CrdtMBusPartnerGroup | _CreditProfile | _CrdtMBusPartnerGroup | ||
| _CreditAccount | _CreditAccount |
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_CrdtMgmtBPNegativeEvent.
-- 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 C_CrdtMgmtBPNegativeEvent AS
SELECT
cast ( BusinessPartner as bu_partner preserving type ) AS BusinessPartner,
CreditSegment,
CrdtAcctInformationCategory,
CrdtAcctInformationType,
SequenceNumber AS AdditionalCreditDocSequence,
ValidityStartDate,
ValidityEndDate,
AdditionalCreditDocComment,
_BusinessPartner.BusinessPartnerFullName AS BusinessPartnerFullName,
_CrdtAcctInformationType._Text[1:Language=$session.system_language].CrdtAcctInformationTypeName AS CrdtAcctInformationTypeName,
_CreditProfile.CreditRiskClass AS CreditRiskClass,
_CreditProfile._RiskClass._Text[1:Language=$session.system_language].CreditRiskClassName AS CreditRiskClassName,
_CreditProfile.CreditWorthinessScoreValue AS CreditWorthinessScoreValue,
_CreditProfile.CreditCheckRule AS CreditCheckRule,
_CreditProfile._CheckRule._Text[1:Language=$session.system_language].CreditCheckRuleName AS CreditCheckRuleName,
_CreditProfile.CreditScoreAndLimitCalcRule AS CreditScoreAndLimitCalcRule,
_CreditProfile._CalcRule._Text[1:Language=$session.system_language].CrdtScoreAndLimitCalcRuleName AS CrdtScoreAndLimitCalcRuleName,
_CreditProfile.CrdtMgmtBusinessPartnerGroup AS CrdtMgmtBusinessPartnerGroup,
_CreditProfile._CrdtMBusPartnerGroup._Text[1:Language=$session.system_language].CrdtMgmtBusPartnerGroupName AS CrdtMgmtBusPartnerGroupName,
_CreditProfile._RiskClass AS _RiskClass,
_CreditProfile._CheckRule AS _CheckRule,
_CreditProfile._CalcRule AS _CalcRule,
_CreditProfile._CrdtMBusPartnerGroup AS _CrdtMBusPartnerGroup
FROM R_CrdtMBPNegativeEvent
LEFT OUTER JOIN I_BusinessPartnerCreditProfile AS _CreditProfile ON _CreditProfile.BusinessPartner = BusinessPartner -- association [0..1]
LEFT OUTER JOIN I_CreditManagementAccount AS _CreditAccount ON _CreditAccount.BusinessPartner = BusinessPartner AND _CreditAccount.CreditSegment = CreditSegment -- association [0..1]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- OData Services in SAP S/4HANA Explained
- Service Bindings and Service Definitions in SAP S/4HANA
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA