I_FldLogsVoyAssignmentStsText
Shipment Assignment Type - Text
I_FldLogsVoyAssignmentStsText is a Basic CDS View that provides data about "Shipment Assignment Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields Language, FldLogsShptAssignmentStatus. It is exposed through 1 OData service (UI_SHIPMENTCONTAINERPACKG). It is used in 1 Fiori application: Pack Container. Part of development package FLOG_SHIPMENT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Shipment Assignment Type - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_SHIPMENTCONTAINERPACKG | UI_SHIPMENTCONTAINERPACKG | V2 | C1 | NOT_TO_BE_RELEASED_STABLE |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| F5786 | Pack Container | Transactional | An application in Field Logistics to pack the outbound delivery items, handling unit into a container, seal the container and issue the items. Kit is a logical grouping of components required to perform a maintenance operation at a demand plant. A kit could include stock, non-stock, or rental items. Once the delivery for outbound process is fully picked, they can be assigned to a suitable container. The delivery items, handling unit and kit items should be able to assign single or multiple voyage.. |
Pack Container
Business Role: Warehouse Clerk (Oil & Gas)
With this feature you can view the outbound deliveries that are picked and ready for loading or packing into a container. The status can be set to allow the packing to assign the deliveries to an existing Field Logistics container . You can also include a step for sealing to record upto to 5 seals for the packed container. Trigger the goods issue for all deliveries in the container.
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | ddlanguage | ||
| KEY | FldLogsShptAssignmentStatus | Item Type | ||
| FldLogsShptAssignmentStsText | ddtext | Item Type Description |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Shipment Assignment Type - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality:#A,
sizeCategory: #S,
dataClass: #MIXED
}
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
define view entity I_FldLogsVoyAssignmentStsText
as select from dd07t
{
@UI.hidden : true
@Semantics.language: true
key ddlanguage as Language,
@EndUserText.label: 'Item Type'
@ObjectModel.text.element : ['FldLogsShptAssignmentStsText']
@UI.textArrangement :#TEXT_ONLY
key cast( domvalue_l as abap.char(2)) as FldLogsShptAssignmentStatus,
@EndUserText.label: 'Item Type Description'
@Semantics.text: true
ddtext as FldLogsShptAssignmentStsText
}
where
domname = 'FLOG_SHPTASSGMTSTATUS'
and ddlanguage = $session.system_language
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA