A_CreditManagementAccount

DDL: A_CREDITMANAGEMENTACCOUNT Type: view_entity CONSUMPTION Package: ODATA_CREDIT_MGMT_MASTER

Credit Accounts

A_CreditManagementAccount is a Consumption CDS View that provides data about "Credit Accounts" in SAP S/4HANA. It reads from 1 data source (R_CreditMgmtAccountTP) and exposes 17 fields with key fields BusinessPartner, CreditSegment. It is exposed through 2 OData services (API_CRDTMBUSINESSPARTNER, ASQL_F5574). Part of development package ODATA_CREDIT_MGMT_MASTER.

Data Sources (1)

SourceAliasJoin Type
R_CreditMgmtAccountTP R_CreditMgmtAccountTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Credit Accounts view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #A view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view

OData Services (2)

ServiceBindingVersionContractRelease
API_CRDTMBUSINESSPARTNER API_CRDTMBUSINESSPARTNER V2 C2 C1
ASQL_F5574 ASQL_F5574 C2 NOT_RELEASED

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner BusinessPartner Issuing Authority
KEY CreditSegment CreditSegment Credit Segment
BusinessPartnerIsCritical BusinessPartnerIsCritical Special Attention
CreditAccountIsBlocked CreditAccountIsBlocked Blocked
CreditAccountBlockReason CreditAccountBlockReason Block Reason
CreditAccountResubmissionDate CreditAccountResubmissionDate Resubmission On
CreditLimitAmount CreditLimitAmount Credit Limit
CreditLimitValidityEndDate CreditLimitValidityEndDate Valid To
CreditLimitLastChangeDate CreditLimitLastChangeDate Changed On
CreditLimitCalculatedAmount CreditLimitCalculatedAmount Calculated
CreditLimitIsZero CreditLimitIsZero Limit Is Zero
CreditLimitRequestedAmount CreditLimitRequestedAmount Requested
CrdtLmtIsReqdFrmAutomCalc CrdtLmtIsReqdFrmAutomCalc Calculated
CreditLimitReqdValidityEndDate CreditLimitReqdValidityEndDate Valid (Reque.)
CreditLimitRequestDate CreditLimitRequestDate Requested On
CreditSegmentCurrency CreditSegmentCurrency Currency
_BusinessPartner _BusinessPartner

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 A_CreditManagementAccount.
-- 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 A_CreditManagementAccount AS
SELECT
  BusinessPartner,
  CreditSegment,
  BusinessPartnerIsCritical,
  CreditAccountIsBlocked,
  CreditAccountBlockReason,
  CreditAccountResubmissionDate,
  CreditLimitAmount,
  CreditLimitValidityEndDate,
  CreditLimitLastChangeDate,
  CreditLimitCalculatedAmount,
  CreditLimitIsZero,
  CreditLimitRequestedAmount,
  CrdtLmtIsReqdFrmAutomCalc,
  CreditLimitReqdValidityEndDate,
  CreditLimitRequestDate,
  CreditSegmentCurrency
FROM R_CreditMgmtAccountTP
;