R_CrdtMAcctTmpLimitIncr

DDL: R_CRDTMACCTTMPLIMITINCR Type: view BASIC

Credit Mgmt Acct: Temp. Limit Increase

R_CrdtMAcctTmpLimitIncr is a Basic CDS View that provides data about "Credit Mgmt Acct: Temp. Limit Increase" in SAP S/4HANA. It reads from 1 data source (bp3100) and exposes 16 fields with key fields BusinessPartner, CreditSegment, CrdtAcctInformationCategory, CrdtAcctInformationType, SequenceNumber. It has 5 associations to related views.

Data Sources (1)

SourceAliasJoin Type
bp3100 bp3100 from

Associations (5)

CardinalityTargetAliasCondition
[0..1] I_BusinessPartner _BusinessPartner $projection.BusinessPartner = _BusinessPartner.BusinessPartner
[0..1] I_CreditManagementSegment _CreditManagementSegment $projection.CreditSegment = _CreditManagementSegment.CreditSegment
[0..1] I_CrdtAcctInfoCategory _CrdtAcctInfoCategory $projection.CrdtAcctInformationCategory = _CrdtAcctInfoCategory.CrdtAcctInformationCategory
[0..1] I_CrdtAcctInformationType _CrdtAcctInformationType $projection.CrdtAcctInformationCategory = _CrdtAcctInformationType.CrdtAcctInformationCategory and $projection.CrdtAcctInformationType = _CrdtAcctInformationType.CrdtAcctInformationType
[0..1] I_Currency _Currency $projection.TransactionCurrency = _Currency.Currency

Annotations (12)

NameValueLevelField
EndUserText.label Credit Mgmt Acct: Temp. Limit Increase view
AbapCatalog.sqlViewName RCRDTMACCT50 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #A view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner partner With Partner
KEY CreditSegment Criterion
KEY CrdtAcctInformationCategory addtype Information Category
KEY CrdtAcctInformationType data_type Type
KEY SequenceNumber counter Version
ExceptionIsCreditCheckRelevant Indicator
AddlCreditDocAmtInTransacCrcy amnt WTax Amt in LC
TransactionCurrency curr Valuation Crcy
ValidityStartDate Valid-From Date
ValidityEndDate Valid-To Date
AdditionalCreditDocComment text User Group
_BusinessPartner _BusinessPartner
_CreditManagementSegment _CreditManagementSegment
_CrdtAcctInfoCategory _CrdtAcctInfoCategory
_CrdtAcctInformationType _CrdtAcctInformationType
_Currency _Currency

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 R_CrdtMAcctTmpLimitIncr.
-- 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 R_CrdtMAcctTmpLimitIncr AS
SELECT
  partner AS BusinessPartner,
  cast(criter as ukm_credit_sgmnt preserving type) AS CreditSegment,
  addtype AS CrdtAcctInformationCategory,
  data_type AS CrdtAcctInformationType,
  counter AS SequenceNumber,
  cast(xfeld as ukm_check_relevant preserving type ) AS ExceptionIsCreditCheckRelevant,
  amnt AS AddlCreditDocAmtInTransacCrcy,
  curr AS TransactionCurrency,
  cast(datefr as ukm_validity_start_date preserving type ) AS ValidityStartDate,
  cast(dateto as ukm_validity_end_date preserving type) AS ValidityEndDate,
  text AS AdditionalCreditDocComment
FROM bp3100
LEFT OUTER JOIN I_BusinessPartner AS _BusinessPartner ON BusinessPartner = _BusinessPartner.BusinessPartner  -- association [0..1]
LEFT OUTER JOIN I_CreditManagementSegment AS _CreditManagementSegment ON CreditSegment = _CreditManagementSegment.CreditSegment  -- association [0..1]
LEFT OUTER JOIN I_CrdtAcctInfoCategory AS _CrdtAcctInfoCategory ON CrdtAcctInformationCategory = _CrdtAcctInfoCategory.CrdtAcctInformationCategory  -- association [0..1]
LEFT OUTER JOIN I_CrdtAcctInformationType AS _CrdtAcctInformationType ON CrdtAcctInformationCategory = _CrdtAcctInformationType.CrdtAcctInformationCategory AND CrdtAcctInformationType = _CrdtAcctInformationType.CrdtAcctInformationType  -- association [0..1]
LEFT OUTER JOIN I_Currency AS _Currency ON TransactionCurrency = _Currency.Currency  -- association [0..1]
;