TSI_BAT_STATUS_entry

DDL: V_TSI_BAT_STATUS_DDL SQL: V_TSI_BAT_STATUS Type: view

TSI_BAT_STATUS_entry is a CDS View in SAP S/4HANA. It reads from 3 data sources (reguhm, regup, crm_jest).

Data Sources (3)

SourceAliasJoin Type
reguhm mda inner
regup regup inner
crm_jest stmap inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName V_TSI_BAT_STATUS view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view

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 TSI_BAT_STATUS_entry.
-- 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: V_TSI_BAT_STATUS

CREATE VIEW TSI_BAT_STATUS_entry AS
SELECT *  -- field list not available in parsed metadata
INNER JOIN reguhm AS mda ON /* join condition not captured in parsed metadata */
INNER JOIN regup ON /* join condition not captured in parsed metadata */
INNER JOIN crm_jest AS stmap ON /* join condition not captured in parsed metadata */
;