SHSM_SHP_VIEW_UNLP

DDL: SHSM_SHP_VIEW_UNLP SQL: SHSMSHPVIEWUNLP Type: view

CDS-based Value Help Selection Method SHP_VIEW_UNLP

SHSM_SHP_VIEW_UNLP is a CDS View that provides data about "CDS-based Value Help Selection Method SHP_VIEW_UNLP" in SAP S/4HANA. It reads from 1 data source (I_BPCustUnldgPtAddrDepdntInfo) and exposes 7 fields with key fields BusinessPartner, AddressID, KUNNR, ABLAD.

Data Sources (1)

SourceAliasJoin Type
I_BPCustUnldgPtAddrDepdntInfo UnloadingPoint from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName SHSMSHPVIEWUNLP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label CDS-based Value Help Selection Method SHP_VIEW_UNLP view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner I_BPCustUnldgPtAddrDepdntInfo BusinessPartner Issuing Authority
KEY AddressID I_BPCustUnldgPtAddrDepdntInfo AddressID Ship-to address
KEY KUNNR I_BPCustUnldgPtAddrDepdntInfo Customer Sold-to Party
KEY ABLAD I_BPCustUnldgPtAddrDepdntInfo UnloadingPointName Unloading Point Name
DEFAB I_BPCustUnldgPtAddrDepdntInfo IsDfltBPUnloadingPoint Default unld.pt
BEGRU
_Customer I_BPCustUnldgPtAddrDepdntInfo _Customer

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 SHSM_SHP_VIEW_UNLP.
-- 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: SHSMSHPVIEWUNLP

CREATE VIEW SHSM_SHP_VIEW_UNLP AS
SELECT
  UnloadingPoint.BusinessPartner AS BusinessPartner,
  UnloadingPoint.AddressID AS AddressID,
  UnloadingPoint.Customer AS KUNNR,
  UnloadingPoint.UnloadingPointName AS ABLAD,
  UnloadingPoint.IsDfltBPUnloadingPoint AS DEFAB,
  UnloadingPoint._Customer.AuthorizationGroup AS BEGRU,
  UnloadingPoint._Customer AS _Customer
FROM I_BPCustUnldgPtAddrDepdntInfo AS UnloadingPoint
;