A_FreightBookingBP

DDL: A_FREIGHTBOOKINGBP Type: view_entity CONSUMPTION

Freight Booking Business Partner

A_FreightBookingBP is a Consumption CDS View that provides data about "Freight Booking Business Partner" in SAP S/4HANA. It reads from 1 data source (R_TransportationOrderBPTP) and exposes 6 fields with key field TransportationOrderBusPartUUID.

Data Sources (1)

SourceAliasJoin Type
R_TransportationOrderBPTP R_TransportationOrderBPTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Freight Booking Business Partner view
AccessControl.authorizationCheck #MANDATORY view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #CONSUMPTION view
OData.entityType.name FreightBookingBusinessPartner_Type view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY TransportationOrderBusPartUUID TransportationOrderBusPartUUID
TransportationOrderUUID TransportationOrderUUID
BusinessPartnerUUID BusinessPartnerUUID UUID
BusinessPartner BusinessPartner Issuing Authority
TranspOrdBizPartnerFunction TranspOrdBizPartnerFunction BP Role
TranspOrdBizPartnerAddressID TranspOrdBizPartnerAddressID Ship-to address

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 A_FreightBookingBP.
-- 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 A_FreightBookingBP AS
SELECT
  TransportationOrderBusPartUUID,
  TransportationOrderUUID,
  BusinessPartnerUUID,
  BusinessPartner,
  TranspOrdBizPartnerFunction,
  TranspOrdBizPartnerAddressID
FROM R_TransportationOrderBPTP
;