How to Get a List of Items That Does Not Have GTIN Code Defined

How to Get a List of Items That Does Not Have GTIN Code Defined

Release Date: 04/27/2018

Q - How do I get a list of items that does not have the GTIN code defined?

A - You can do so by using PSQL relational engine.  If you have an application that can access the Elliott database through SQL statement, then you can use that application. Otherwise, you can use the PSQL Control Center provided as part of the PSQL client.

First, the table name for GTIN is IMGTINFI.  You can get a list of items that has GTIN defined with the following SQL statement:

    select DISTINCT gtin_item_no from IMGTINFI

But since each item can have multiple GTIN codes, you should suppress the duplication item number by using the following SQL statement:

    select DISTINCT gtin_item_no from IMGTINFI

The Item table is IMITMFIL.  To get a list of items that do not have GTIN codes, you can use a sub-query statement technique like the following:

   SELECT ITEM_NO FROM IMITMFIL WHERE ITEM_NO NOT IN
     (select DISTINCT gtin_item_no from IMGTINFI);


EMK

    • Related Articles

    • Feature - Display Multiple GTIN Units of Measure

      This feature allows the user to set up multiple units of measure for an item in the GTIN table. This will allow the user to see the GTIN quanitiy as it is stocked in the multiple GTIN units of measure. A maximum of three units of measure are ...
    • Feature - Disallow GTIN in UPC Code Field in Item Extra Data

      Release Date: 10/25/21 Version: 8.5 and Above EDI partners may not accept a GTIN (14-digit UPC code) as a valid UPC code. A new Global Setup option has been added to prevent a GTIN from being added to the item extra data field designated as the UPC ...
    • Feature - Support GTIN Based on Two Different UPC Codes

      Date Released - 7/27/16 The purpose of this feature is to allow the user more flexibility when setting up GTIN codes. GTIN (Global Trading Item Number) is a 14-digit UPC code with the package code as the first digit + a 13-digit UPC code. For a ...
    • I Get a Message -- "Ship Via Code Setup" -- and the Picking Ticket Does Not Print

      Release Date: 07/08/2024 Version: 7.x & Up Q: I am trying to print a picking ticket, but I get this message: "Order# 123456 Skipped - Ship Via Code Setup." How do I fix this? A: The message indicates the ship via for the order is not configured to ...
    • CPR01MNT Customer Order Processing User-Defined Code Maintenance

      User-Defined Code Maintenance Application Overview This feature gives you the ability to assign a “User-Defined Code” in the COP line item screen for special tracking purposes. In the Order Line Item Entry Screen, the system will prompt you to enter ...