I_ARLockboxVH

DDL: I_ARLOCKBOXVH SQL: IARLOCKBOXVH Type: view BASIC

Lockboxes at our House Banks

I_ARLockboxVH is a Basic CDS View that provides data about "Lockboxes at our House Banks" in SAP S/4HANA. It reads from 1 data source (t049l) and exposes 4 fields with key fields CompanyCode, LockboxInternalID.

Data Sources (1)

SourceAliasJoin Type
t049l t049l from

Annotations (11)

NameValueLevelField
EndUserText.label Lockboxes at our House Banks view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.sqlViewName IARLOCKBOXVH view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.representativeKey LockboxInternalID view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode bukrs Value
KEY LockboxInternalID lockb Lockbox
Lockbox Lockbox Number
HouseBank hbkid House Bank

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 I_ARLockboxVH.
-- 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: IARLOCKBOXVH

CREATE VIEW I_ARLockboxVH AS
SELECT
  bukrs AS CompanyCode,
  lockb AS LockboxInternalID,
  cast( lcknr as far_lbnum ) AS Lockbox,
  hbkid AS HouseBank
FROM t049l
;