C_JITOutbSqncShipToPartyVH

DDL: C_JITOUTBSQNCSHIPTOPARTYVH Type: view_entity CONSUMPTION

Ship To Party

C_JITOutbSqncShipToPartyVH is a Consumption CDS View that provides data about "Ship To Party" in SAP S/4HANA. It reads from 1 data source (I_JITCustomer) and exposes 6 fields with key fields ShipToParty, CustomerUUID.

Data Sources (1)

SourceAliasJoin Type
I_JITCustomer I_JITCustomer from

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Ship To Party view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.representativeKey ShipToParty view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ShipToParty ShipToParty Ship-To Party (obsolete)
KEY CustomerUUID CustomerUUID NodeID
OrganizationBPName1 Description
BusinessPartnerName
_CustomerToBusinessPartner _CustomerToBusinessPartner
_Customer _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 C_JITOutbSqncShipToPartyVH.
-- 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.

CREATE VIEW C_JITOutbSqncShipToPartyVH AS
SELECT
  ShipToParty,
  CustomerUUID,
  _CustomerToBusinessPartner._BusinessPartner.OrganizationBPName1 AS OrganizationBPName1,
  _CustomerToBusinessPartner._BusinessPartner.BusinessPartnerName AS BusinessPartnerName
FROM I_JITCustomer
;