TIERS - Transport Integrated and Enhanced Reporting Solution

General presentation

The application loads data of the transportation shipments, deliveries and shipment costs from ECC (Solvay and Rhodia) into BW.

It is done daily using delta process via process chain schedule.

List of contacts

Objective of the application

Reasons

Usage information

Around 300 users, worldwide with daily update 

History

The Transportation Costs analysis was developed in 2007 to attend the Rhodia users of Logistic processes. The solution had usage several DSO’s and just one cube with many detailed information. The number of tickets about inconsistentes of data and bad performance some of triggers to develop a new application, in this case much more robust and covering also the Solvay data and its users.

The TIERS project was started in the begin of 2015, using a remodeling by layers Layered Scalable Architecture (LSA), in our case: propagation, business, reporting and virtual layers. The current transportation datasources from Rhodia were reused with low change and all datasources from Solvay were activated with low enhancements. Some additional master data were created to avoid duplication of data in different providers, like shipment document, shipment cost item and delivery item.

The development of project was request by the logistic areas and Jean Baptiste concentrated all the requests and generated the functional specification.

The project was started in April/2015 and it was deployed in December/2015 with all users trainned.

 

General Rules

Roles and access

List of application role + menu role  and explanation if we have several applications role with specials rules.

List of application role + menu role  and explanation if we have several applications role with specials rules.

Role Code
Role Description
Explanation
ZR_RCS_CA_M072TR - Transportation costs Newrole menu
ZBI_RCS_TR_A08

New Transport  Costs Analysis

- End User Role

role menu for TIERS, gives access to all cubes under infoarea IA_SD_TR*

Authorization Object ZBI_TR2 / Authorization on Company Code

This role has to be used with the role menu transportation costs

   

NB: The role menu ZR_RCS_ALL_MENU "Role composite with all role Menu and perimeters" gives access to all role menu. When asking for a new role menu, do not forget it is added to that one.

NB: ZBI_RCS_TR_A02 & ZR_RCS_TR_A02 are obsolete

Authorization objects

List of autorisation objects mandatory for the application.

Authorization object
Explanation
  
Company Code (C_COMPCDE)

ZR_TOUT_CA_P01 => All Companies "Solvay"

ZR_*_CA_P01

ZR_ZFR3_CA_P01 => Analysis company Rhodia Opérations ( ZFR3)

 

 

See also file maintained by Authorization team : 

  

Dataflow overview

Functional and Technical rules on Workbench + Reporting

Rules & Explanations

Main documentation:

Preparation

Design

Deployment

Rule to take the GBU code

Read the field C_SUBACT2 (profit center) from master data C_MATPNT3 using plant and material as key.

      SELECT  logsys
              /bic/c_plant
              /bic/c_matpnt3
              /bic/c_pfctr1
              /bic/c_subact2
              co_area
          
INTO  TABLE itb_matpnt2
          
FROM  /bic/pc_matpnt3
         
FOR ALL ENTRIES IN itb_dpsdtr02
          
WHERE /bic/c_plant   itb_dpsdtr02-c_plant
            
AND /bic/c_matpnt3 itb_dpsdtr02-c_matpnt2
            
AND logsys         itb_dpsdtr02-logsys
            
AND objvers        'A'.

        READ TABLE itb_matpnt2 INTO itb_matpnt2_w
          
WITH TABLE KEY logsys    <result_fields>-logsys
                         c_plant   
<result_fields>-/bic/c_plant
                         c_matpnt2 
itb_dpsdtr02_w-c_matpnt2.
        
IF sy-subrc 0.
          <result_fields>
-/bic/c_pfctr1    itb_matpnt2_w-c_pfctr1.
          <result_fields>
-/bic/c_subact2 itb_matpnt2_w-c_subact2.
          <result_fields>
-co_area           itb_matpnt2_w-co_area.

Rule to determine the partner code

        IF itb_dpsdtr02_w-c_vendid  IS NOT INITIAL.
          <result_fields>
-/bic/c_pnty3py     'VEND'.
          <result_fields>
-/bic/c_3rparty  itb_dpsdtr02_w-c_vendid.
          
SHIFT <result_fields>-/bic/c_3rparty LEFT DELETING LEADING '0'          .
        
ENDIF.
        
IF itb_dpsdtr02_w-c_shiptid   IS NOT INITIAL.
          <result_fields>
-/bic/c_pnty3py     'CUST'.
          <result_fields>
-/bic/c_3rparty  itb_dpsdtr02_w-c_shiptid.
          
SHIFT <result_fields>-/bic/c_3rparty LEFT DELETING LEADING '0'          .
        
ENDIF.

Rule to determine the departure and destination code

        IF itb_dpsdtr02_w-c_dpnode2   IS NOT INITIAL.

          <result_fields>-/bic/c_pntydp   'NODE'.
          <result_fields>
-/bic/c_pntdp2    itb_dpsdtr02_w-c_dpnode2.
        
ENDIF.
        
IF itb_dpsdtr02_w-c_dpshpn2  IS NOT INITIAL.
          <result_fields>
-/bic/c_pntydp   'SHIPP'.
          w_shppnt   
itb_dpsdtr02_w-c_dpshpn2.
          <result_fields>
-/bic/c_pntdp2    w_shppnt.
        
ENDIF.
        
IF itb_dpsdtr02_w-c_dpplnt2  IS NOT INITIAL.
          <result_fields>
-/bic/c_pntydp   'PLANT'.
          <result_fields>
-/bic/c_pntdp2    itb_dpsdtr02_w-c_dpplnt2.
        
ENDIF.
        
IF itb_dpsdtr02_w-c_dpvend2   IS NOT INITIAL.
          <result_fields>
-/bic/c_pntydp   'VEND'.
          <result_fields>
-/bic/c_pntdp2    itb_dpsdtr02_w-c_dpvend2.
          
SHIFT <result_fields>-/bic/c_pntdp2 LEFT DELETING LEADING '0'.
        
ENDIF.
        
IF itb_dpsdtr02_w-c_dpcust2   IS NOT INITIAL.
          <result_fields>
-/bic/c_pntydp   'CUST'.
          <result_fields>
-/bic/c_pntdp2    itb_dpsdtr02_w-c_dpcust2.
          
SHIFT <result_fields>-/bic/c_pntdp2 LEFT DELETING LEADING '0'.
        
ENDIF.
 

Rule to determine the reference month

        IF itb_dpsdtr01_w-dtcomplact IS NOT INITIAL.    " (shipment completion date)
          <result_fields>-rstt_rmnth itb_dpsdtr01_w-dtcomplact(6).
        ELSE.
          IF itb_dpsdtr01_w-dtcompl_pl IS NOT INITIAL.
            <result_fields>-rstt_rmnth itb_dpsdtr01_w-dtcompl_pl(6).     " (shipment planned completion date)
          ELSE.
            <result_fields>-rstt_rmnth itb_dpsdtr01_w-erdat(6).     " (shipment creation date)
          ENDIF.
        ENDIF.

Unit conversions

The Unit conversion is done in the Bex queries (Quantity Conversion Type), after user chooses the unit conversion on reports

Transactionnal data are stored in sales unit

There are many "special" units on Solvay ERP, ie: 1KG, 1TN, VKG, KRE, 

Important : 

Quantities are not converted when loading data, and are not store into cubes (The conversion is done when running the report)

So, if a conversion is missing for a material ask the material referent to 

1- manage the conversion on ERP Side by managed the material master (MM03) / unit of measure tab

2- the day after, when the DSO UOMCMAT2 is filled, the conversion is applied in the reports. It applies to whole data without any reloading.

The conversion type created by TIERS queries is QCT_MATNR4 (see below the setup for it).


BW Quantity Conversion


Currency conversion

 

 The reports are all based on amounts in Local Currency Those amounts come directly from RCS/PF1. If user selects a currency in the prompt the query will convert, otherwise it will return the values in local currency.

This conversion is based on the ZRH2 rate (coming from RCS). 

 

The current available rates applied to ALL data (even past data) independently of the date.

  

For base amount we use the shipment cost Amount, shipment condition amount and purchase values. 

We applied conversion type ZRH2 for transportation costs - CTK_ZRH2TR (see setup below) :

 



BW Currency Conversion

Dependencies with other applications

 

Rhodia PO schedule lines (DB_PUSL1)

Solvay PO schedule lines (DB_PUSL2)

Rhodia CUB_VS (value stream)

Rhodia CUB_DIPL (industrial dashboard)

 

Data loadings

Info providers and objects loaded

1 - Main Process Chain

This process chain is responsible to trigger and syncronize all TIERS processes chains for Solvay and Rhodia. It is scheduled to run every workday inside the Daily process chain (RSP_DAILY) after general master data PC, around 3AM (French time).

    

2 - Propagation Layer

 This process chain is responsible to run the loads between source system and first layer in BW.

3 - Business Layer

 This process chain is responsible to load the second layer in BW taking data from propagation layer.

4 - Master data

 This process chain is responsible to load all the master data attributes in BW.

5 - Text & maintenance

 This process chain is responsible to load all the master data texts in BW.

Loading frequency

Daily inside the daily process chain

Average performance & monitoring

Daily process chain is loaded in 2 hours with around 30k lines in DELTA mode for a total of 10M lines in cubes. 

See below an extract of 1 month of monitoring

 

Key FigureEstimation
~ Average Process Chain Runtime90 to 120 minutes
~ Average nb of rows loaded per load

Shipment Header: Solvay 6K, Rhodia 2K

Shipment&Deliveries: Solvay 40K, Rhodia 10K

Shipment Costs: Solvay 9K, Rhodia 4K

Shipment&Purchases: Solvay 110K, Rhodia 24K

Shipment Conditions: Solvay 32K, Rhodia 152K

1.200K records (all providers)

~ Total nb of rows loaded (if full)

Data is stored since 2014

Propagation Layer = Solvay 20.000K, Rhodia 10.000K

Business Layer = Solvay 15.000K, Rhodia 8.000K

Reporting = Solvay 15.000K, Rhodia 8.000K

Master data = Solvay 11.000K, Rhodia 5.000K

~ Average Runtime for 10k lines30 minutes

 

For details about application load monitoring, click in following link: Application Monitoring

Record Keeping

User defined that 3 full years stored is enough to be maintained in BW.

There is no automatic process to remove historical data, so any request about historical deletion should be done by user with Freshdesk ticket.

 

Modeling

Info areas

Master Data

Propagation Layer

Business Layer

Reporting Layer

Virtual Layer

Multi provider

MVSDTR01 - Shipm & Delivery & Cost & Cond & PO/Inv (Sol&Rho)

Data Flow

Dimensions

Key figures


Main KPI calculations

Main functionalities

Main datasources based on SAP tables

Main dimensions for the data

 

Reporting

Calculated & Restricted key figures

NameDescription
BW_CKF_MVSDTR01_0001No of Containers
BW_CKF_MVSDTR01_0002Distance (SUM ship)
BW_CKF_MVSDTR01_0003Gross W. dels. (SUM del item)
BW_CKF_MVSDTR01_0004Net W, dels. (SUM del item)
BW_CKF_MVSDTR01_0005Gross W, dels. (SUM delivery)
BW_CKF_MVSDTR01_0006Net W, dels. (SUM delivery)
BW_CKF_MVSDTR01_0007Gross W, dels. (SUM ship)
BW_CKF_MVSDTR01_0008Net W, dels. (SUM ship)
BW_CKF_MVSDTR01_0010No of handling units (MAX delitem)
BW_CKF_MVSDTR01_0011No of handling units
BW_CKF_MVSDTR01_0014Detailed Shpt. condition value
BW_CKF_MVSDTR01_0015Invoiced Value
BW_CKF_MVSDTR01_0016Accrual, Net value shipment
BW_CKF_MVSDTR01_0017# Ship Relevant for SADH below 30 min
BW_CKF_MVSDTR01_0018# Ship Relevant for SADH
BW_CKF_MVSDTR01_0020Distance (SUM stage)
BW_CKF_MVSDTR01_0021No of Shipments
BW_CKF_MVSDTR01_0023No of handling units (MAX stage)
BW_CKF_MVSDTR01_0024No of Stages (by detail)
BW_CKF_MVSDTR01_0025No of Stages (by Stage)
BW_CKF_MVSDTR01_0026No of Stages
BW_CKF_MVSDTR01_0027No of Delivery Items
BW_CKF_MVSDTR01_0028No of Deliveries
BW_CKF_MVSDTR01_0032CO² Emission Factor
BW_CKF_MVSDTR01_0040#Ship Relevant for Loading duration
BW_CKF_MVSDTR01_0041#Ship Relevant for Queue time
BW_CKF_MVSDTR01_0042#Ship Relevant for On Site duration
BW_CKF_MVSDTR01_0045Number of HOTS
BW_CKF_MVSDTR01_0046#Ship Relevant for booking leadtime
BW_CKF_MVSDTR01_0052Net W. dels in VKG (SUM del item)
BW_CKF_MVSDTR01_0053Net W. dels in VKG (SUM delivery)
BW_CKF_MVSDTR01_0054Net W. dels in VKG (SUM ship)
BW_CKF_MVSDTR01_0055Net W. dels in VTN (SUM del item)
BW_CKF_MVSDTR01_0056Net W. dels in VTN (SUM delivery)
BW_CKF_MVSDTR01_0057Net W. dels in VTN (SUM ship)
BW_CKF_MVSDTR01_0070Gross W. dels. (MAX stage)
BW_CKF_MVSDTR01_0071Net W. dels. (MAX stage)
BW_CKF_MVSDTR01_0072Net W. dels in VKG (MAX stage)
BW_CKF_MVSDTR01_0073Net W. dels in VTN (MAX stage)
BW_CKF_MVSDTR01_0081Distance (max delivery)
BW_CKF_MVSDTR01_0082Distance (max delitem)
BW_CKF_MVSDTR01_0090Loading Duration (Days)
BW_CKF_MVSDTR01_0091Transit time (Days)
BW_CKF_MVSDTR01_0092Booking leadtime (Days)
BW_CKF_MVSDTR01_0093HOTD delay (in days)
BW_CKF_MVSDTR01_0094HOTS delay (in days)
BW_CKF_MVSDTR01_0095On site duration (Days)
BW_CKF_MVSDTR01_0096Queue time at plant (Days)
BW_CKF_MVSDTR01_0097Planned Transp Time (Days)
BW_CKF_MVSDTR01_0098SADH in min (by ship)
  
BW_RKF_MVSDTR01_0001Number of Legs
BW_RKF_MVSDTR01_0002Extra-costs accrual CP

 

Main queries

1 - Shipment cost details analysis

Technical Name: BW_QRY_MVSDTR01_0010

Public 

 

2 - Shipment cost vs invoice analysis 

Technical Name: BW_QRY_MVSDTR01_0011

Public 

 

3 - Shipment status and events 

Technical Name: BW_QRY_MVSDTR01_0012
Public
      

4 - CO²  Emissions TIERS 

Technical Name: BW_QRY_MVSDTR01_0013



5 - Shipment Events TIERS 

Technical Name : BW_QRY_MVSDTR02_0001

Queries used to load QV applications

Matrix between queries and info objects

Query descriptionCost deatailed analysisAccrual vs invoiceStatuses and eventsEvent reportingCO2 Footprint
Technical nameMVSDTR01_0010MVSDTR01_0011MVSDTR01_0012MVSDTR002_0001MVSDTR01_0013
      
General "Core entry keys"
COMPANYCOMPANYCOMPANYCOMPANYCOMPANY
PROMPT UNITPROMPT UNITPROMPT UNIT PROMPT UNIT
PROMPT CURRENCYPROMPT CURRENCY   
System originSystem originSystem originSystem originSystem origin
BFC GBUBFC GBUBFC GBUBFC GBUBFC GBU
Site (PUSITE) - C-PSITESite (PUSITE)Site (PUSITE)Site (PUSITE)Site (PUSITE)
Actual completion Year / MonthActual completion Year / MonthActual completion Year / MonthActual completion Year / MonthActual completion Year / Month
Shipment departure countryShipment departure countryShipment departure countryShipment departure countryShipment departure country
Shipment destination countryShipment destination countryShipment destination countryShipment destination countryShipment destination country
Forwd. AgentForwd. AgentForwd. AgentForwd. Agent 
      
 Product Hierarchy    
Query Specific axes
Material plant    
Bulk / PackedPO numberRouteEvent typeZone
3RD PartyShpiment cost item categoryDG classEvent reason for deviation 
Shpiment cost item category    
      
 Transportation ModeTransportation ModeTransportation ModeTransportation ModeTransportation Mode
For those who want to detail
PlantPlantPlantPlantPlant
Departure Geo ZoneDeparture Geo ZoneDeparture Geo ZoneDeparture Geo ZoneDeparture Geo Zone
Transportation planning pointTransportation planning pointTransportation planning pointTransportation planning pointTransportation planning point
Planed completion datePlaned completion datePlaned completion datePlaned completion datePlaned completion date
Actual completion dateActual completion dateActual completion dateActual completion dateActual completion date
Shipment numberShipment numberShipment numberShipment numberShipment number
Shipping conditionShipping conditionShipping conditionShipping conditionShipping condition
Shipment typeShipment typeShipment typeShipment typeShipment type
      
"By default" shown Measures (among those available)     
 Accrual Net value shipment (CP)Accrual Net value shipment (CP)Gross weightNb of eventGross Weight
 Gross Weight (PU)Invoiced value (CP)Nb of shipmentsEvent durationDistance
 Net Weight (PU)Net weight (PU)Nb of containers CO2 Tons
 Cost per Unit (Net)Gross Weight (PU)Nb of deliveries  
 Cost per unit (Gross)Cost per unit (Net)Nb of HU  
  Cost per unit (Gross)# ship relevant for loading duration  
  Invoice - accrual Gap# ship relevant for On site duration  
  Provisionning accuracy# ship relevant for Queue time  
   # ship relevant for Trnasit time  
   Average loading duration  
 Keep all others as optionalKeep all others as optionalAverage On site duration  
   Average Queue time  
   Average Transit duration  
   % OTD  
   % OTS  
   Average distance  
      
"By default" shown Rows (among those available)     
 Source sytemSource SystemSource sytemSource SystemSource system
 Site (CPLANT PSITE)Site (CPLANT PSITE)Site (CPLANT PSITE)Site (CPLANT PSITE)Site
 Shipment destination CountryForward agentForward agentForward agentShip Shipping type
    Event type 
    Event reason 
      
All navigational attributes :     
OrganizationSource systemSource systemSource systemSource systemSource system
 BFC GBUBFC GBUBFC GBUBFC GBUBFC GBU
 PlantPlantPlantPlantPlant
 Site (Plant C-PSite)Site (Plant C-PSite)Site (Plant C-PSite)Site (Plant C-PSite)Site (Plant C-PSite)
 Company codeCompany codeCompany codeCompany codeCompany code
ShipmentShipment numberShipment numberShipment numberShipment number 
 Departure countryDeparture countryDeparture countryDeparture country 
 Destination countryDestination countryDestination countryDestination country 
 Forwarding agentForwarding agentForwarding agentForwarding agent 
 Transportation planning pointTransportation planning pointTransportation planning pointTransportation planning point 
 Actual Completion dateActual Completion dateActual Completion dateActual Completion date 
 Actual completion date (Month) YYYY/MMActual completion date (Month) YYYY/MMActual completion date (Month) YYYY/MMActual completion date (Month) YYYY/MM 
 Actual completion date (Quarter) YYYY/QActual completion date (Quarter) YYYY/QActual completion date (Quarter) YYYY/QActual completion date (Quarter) YYYY/Q 
 Actual completion date Year (YYYY)Actual completion date Year (YYYY)Actual completion date Year (YYYY)Actual completion date Year (YYYY) 
 Actual date for Start of shipmentActual date for Start of shipmentActual date for Start of shipmentActual date for Start of shipment 
 Planned shipment completion datePlanned shipment completion datePlanned shipment completion datePlanned shipment completion date 
 Planned shipment completion date (YYYY-MM)    
 Shipment destination pointShipment destination pointShipment destination pointShipment destination point 
 Shipment destination point typeShipment destination point typeShipment destination point typeShipment destination point type 
 Shipment departure pointShipment departure pointShipment departure pointShipment departure point 
 Shipment departure point typeShipment departure point typeShipment departure point typeShipment departure point type 
 RouteRouteRoute  
 Shipment packaging materialShipment packaging materialShipment packaging material  
 Shipment shipping typeShipment shipping typeShipment shipping type  
 Transportation modeTransportation modeTransportation modeTransportation modeTransportation mode
   Departure point - TR zone  
   Departure point - Zip code  
   Destination point TR zone  
   Destination point Zip code  
  Shipment Shipping lineShipment Shipping line  
Shipment stageShip Stage sequence numberShip Stage sequence numberShip Stage sequence number  
 Ship stage departure pointShip stage departure pointShip stage departure point  
 Ship stage departure point typeShip stage departure point typeShip stage departure point type  
 Ship stage destination pointShip stage destination pointShip stage destination point  
 Shipment stage destination point typeShipment stage destination point typeShipment stage destination point type  
 Leg indicatorLeg indicatorLeg indicator  
DeliveryDelivery    
 Delivery Item    
 Delivery distribution channel    
 Material    
 Material plant    
 DG class DG class  
 UN number UN number  
 3rd Party 3rd Party  
 3rd Party type 3rd Party type  
   3rd partry - TRzone  
   3rd party - Location  
   3rd party - Zip code  
 Transportation group (Bulk / Packed) Transportation group (Bulk / Packed)  
 Transportation group detail Transportation group detail  
 Material hierarchy Material hierarchy  
Shipment x deliveryShipping conditionShipping conditionShipping condition  
Shipment cost itemShipment cost numberShipment cost number   
 Item numberItem number   
 Service agentService agent   
 Shipment cost item categoryShipment cost item category   
 Shipment cost posting dateShipment cost posting date   
 Shipment cost posting date - Month (YYYY/MM)Shipment cost posting date - Month (YYYY/MM)   
  PO Number   
  Invoice Number   
Cost conditionCondition typeCondition type   
Event   Event actual start date (day) 
    Event actual end date (day) 

 

Broadcast

 

Maintenance

Known bugs

Recurring procedure

List recurring procedures

Planned Evolution

Useful transactions to be used for checking data

Transaction
Description
Corresponding table
Comments
VT03NShipments

VTTK, VTTS

in ERP
VI03Shipment Costs

VFKK, VFKP

in ERP 
VL03NDeliveries

LIKP, LIPS

 in ERP 
VA03Sales Orders

VBAK, VBAP

in ERP 
ME23NPurchase Orders

EKKO, EKPO, EKBE

in ERP 
RSUOMUnit conversion

T005

in BW 
RSCURCurrency conversion

TCURR

in BW 

 

 



https://wiki.solvay.com/display/TECHREP/BW+Authorizations?src=contextnavpagetreemode