Technical overview summarizing software routines, code execution flows, and EIQ analytical data creation in Tera Calculation 0.
TeraCalculation0_ShippingDataProcessing.vb ingests raw ShippingData.xlsx into Access DB, executing category conversions, daily aggregations, and master EIQ data generation.
T200 table creation.| Feature / Control | Description |
|---|---|
| Allow Table Deletion Checkbox | Enables permission to purge existing database tables prior to re-processing. |
| Batch Processing 1 Button | Executes end-to-end data ingestion and preliminary summaries. |
| EIQ Data Processing Button | Executes rank classification, generating T180_EIQRank and master T200 tables. |
| View Processed Data Button | Renders generated tables in grid views. |
| Reset Tera Presets Button | Resets rank thresholds and parameters to defaults. |
T100_Data from imported T000_ShippingData.T110_CategoryConversion.Base variables: calcC = Int(Pieces / CasePack), calcB = Pieces - (calcC × CasePack)
| Category | Metric | Formula |
|---|---|---|
| Line Level (G) | G-Pcs | Pieces |
| Line Level (G) | G-Cases | Pieces / CasePack |
| Line Level (G) | G-PL | G-Cases / PalletTier |
| Line Level (G) | G-Vol | G-Cases × CaseCBM |
| Line Level (G) | G-Wt | G-Cases × CaseWeight |
| Case Level (C) | C-Pcs | calcC × CasePack |
| Case Level (C) | C-Cases | calcC |
| Case Level (C) | C-PL | C-Cases / PalletTier |
| Case Level (C) | C-Vol | C-Cases × CaseCBM |
| Case Level (C) | C-Wt | C-Cases × CaseWeight |
| Piece Level (B) | B-Pcs | calcB |
| Piece Level (B) | B-Cases | B-Pcs / CasePack |
| Piece Level (B) | B-PL | B-Cases / PalletTier |
| Piece Level (B) | B-Vol | B-Cases × CaseCBM |
| Piece Level (B) | B-Wt | B-Cases × CaseWeight |