C_BankAccSentItems

DDL: C_BANKACCSENTITEMS SQL: CSENTITEMS Type: view CONSUMPTION

Bank Account Sent Items

C_BankAccSentItems is a Consumption CDS View that provides data about "Bank Account Sent Items" in SAP S/4HANA. It reads from 1 data source (I_BankAccSentItems) and exposes 17 fields with key field BankAccountChangeRequest. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_BankAccSentItems Req from

Associations (3)

CardinalityTargetAliasCondition
[1..*] C_RequestWithBankAccount _Bankaccount $projection.BankAccountChangeRequest = _Bankaccount.BankAccountChangeRequest
[1..*] C_BankAccountChangeRequestLog _reqLog $projection.BankAccountChangeRequest = _reqLog.BankAccountChangeRequest
[0..1] I_UserContactCard _LastChangedByUser $projection.LastChangedByUser = _LastChangedByUser.ContactCardID

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CSENTITEMS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Bank Account Sent Items view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
UI.headerInfo.typeName My Sent Requests view
UI.headerInfo.typeNamePlural My Sent Requests view
UI.headerInfo.title.label Change Request view
UI.headerInfo.title.value BankAcctChangeReqHeadingText view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY BankAccountChangeRequest I_BankAccSentItems BankAccountChangeRequest Request unique ID
BankAccountActionText I_BankAccSentItems BankAccountActionText
BankAccountAction I_BankAccSentItems BankAccountAction Action
BankAccountReqStatusText I_BankAccSentItems BankAccountReqStatusText
BankAccountChangeRequestStatus I_BankAccSentItems BankAccountChangeRequestStatus Trade Req. Status
BankAccountChangeRequestStep I_BankAccSentItems BankAccountChangeRequestStep Request Step
BankAcctChangeReqHeadingText I_BankAccSentItems BankAcctChangeReqHeadingText View Title
BankAcctChangeRequestDueDate I_BankAccSentItems BankAcctChangeRequestDueDate Promised For
BankAccountReqCreatedDateTime I_BankAccSentItems BankAccountReqCreatedDateTime
BkAcctReqLastChgdDteTme I_BankAccSentItems BkAcctReqLastChgdDteTme
LastChangedByUserFullName _LastChangedByUser FullName Name
LastChangedByUser I_BankAccSentItems LastChangedByUser User Name
Name I_BankAccSentItems Name Zone name
WorkflowStepsSecIsHidden I_BankAccSentItems WorkflowStepsSecIsHidden
_Bankaccount _Bankaccount
_reqLog _reqLog
_LastChangedByUser _LastChangedByUser

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_BankAccSentItems.
-- 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: CSENTITEMS

CREATE VIEW C_BankAccSentItems AS
SELECT
  Req.BankAccountChangeRequest AS BankAccountChangeRequest,
  Req.BankAccountActionText AS BankAccountActionText,
  Req.BankAccountAction AS BankAccountAction,
  Req.BankAccountReqStatusText AS BankAccountReqStatusText,
  Req.BankAccountChangeRequestStatus AS BankAccountChangeRequestStatus,
  Req.BankAccountChangeRequestStep AS BankAccountChangeRequestStep,
  Req.BankAcctChangeReqHeadingText AS BankAcctChangeReqHeadingText,
  Req.BankAcctChangeRequestDueDate AS BankAcctChangeRequestDueDate,
  Req.BankAccountReqCreatedDateTime AS BankAccountReqCreatedDateTime,
  Req.BkAcctReqLastChgdDteTme AS BkAcctReqLastChgdDteTme,
  _LastChangedByUser.FullName AS LastChangedByUserFullName,
  Req.LastChangedByUser AS LastChangedByUser,
  Req.Name AS Name,
  Req.WorkflowStepsSecIsHidden AS WorkflowStepsSecIsHidden
FROM I_BankAccSentItems AS Req
LEFT OUTER JOIN C_RequestWithBankAccount AS _Bankaccount ON BankAccountChangeRequest = _Bankaccount.BankAccountChangeRequest  -- association [1..*]
LEFT OUTER JOIN C_BankAccountChangeRequestLog AS _reqLog ON BankAccountChangeRequest = _reqLog.BankAccountChangeRequest  -- association [1..*]
LEFT OUTER JOIN I_UserContactCard AS _LastChangedByUser ON LastChangedByUser = _LastChangedByUser.ContactCardID  -- association [0..1]
;