C_BalanceAuditTrailCustomer

DDL: C_BALANCEAUDITTRAILCUSTOMER SQL: CFINS_BAT_CUSTOM Type: view CONSUMPTION

Customers for Balance Audit Trail

C_BalanceAuditTrailCustomer is a Consumption CDS View that provides data about "Customers for Balance Audit Trail" in SAP S/4HANA. It reads from 1 data source (I_BalanceAuditTrailCustomer) and exposes 9 fields with key fields Customer, CompanyCode.

Data Sources (1)

SourceAliasJoin Type
I_BalanceAuditTrailCustomer I_BalanceAuditTrailCustomer from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CFINS_BAT_CUSTOM view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Customers for Balance Audit Trail view
Search.searchable true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.personalData.blocking #REQUIRED view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY Customer Customer Sold-to Party
KEY CompanyCode CompanyCode Receiver Company Code
AuthorizationGroup AuthorizationGroup AuthorizGroup
CustomerName CustomerName Name of Customer
CustomerSearchText CustomerSearchText
CityName CityName Name
Country Country Venue: Ctry/Reg
StreetName StreetName Text
PostalCode PostalCode Postal Code

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_BalanceAuditTrailCustomer.
-- 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: CFINS_BAT_CUSTOM

CREATE VIEW C_BalanceAuditTrailCustomer AS
SELECT
  Customer,
  CompanyCode,
  AuthorizationGroup,
  CustomerName,
  CustomerSearchText,
  CityName,
  Country,
  StreetName,
  PostalCode
FROM I_BalanceAuditTrailCustomer
;