I_PT_SAFTSHIPFROMADDRESS
C view for SAFT Ship From Address
I_PT_SAFTSHIPFROMADDRESS is a CDS View in S/4HANA. C view for SAFT Ship From Address. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_PT_DeliveryShipFromAddress | view | from | COMPOSITE | View for Delivery Ship from address |
@AbapCatalog.sqlViewName: 'IPTSHIPFRMADDR'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #COMPOSITE
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.dataClass: #MIXED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@EndUserText.label: 'C view for SAFT Ship From Address'
define view I_PT_SAFTShipFromAddress as select from I_DeliveryDocument
association [0..1] to I_Plant as _Plant on _Plant.Plant = $projection.ReceivingPlant
and $projection.DeliveryDocumentType = 'GS'
association [0..1] to I_ShippingPoint as _ShippingPoint on _ShippingPoint.ShippingPoint = $projection.ShippingPoint
and $projection.DeliveryDocumentType != 'GS'
{
key DeliveryDocument,
ReceivingPlant,
ShippingPoint,
DeliveryDocumentType,
COALESCE( _Plant.AddressID, _ShippingPoint.AddressID ) as AddressID
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DELIVERYDOCUMENT",
"I_PLANT",
"I_SHIPPINGPOINT"
],
"ASSOCIATED":
[
"I_PLANT",
"I_SHIPPINGPOINT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/