cancel
Showing results for 
Search instead for 
Did you mean: 

What is the name of the Item Unit of Measure Bar Code table?

Former Member

We need to generate a query to verify all of the bar codes per Item and Unit of Measure.

When I click View System Information and hover my cursor over this edit screen, the table is not displayed. We have 600 items and 11 units of measures. To use the Item Master Data screen to drill down and verify the bar codes will be very tedious and inefficient use of the Warehouse Manager's time.

Thank you

Accepted Solutions (0)

Answers (5)

Answers (5)

former_member840657
Discoverer
0 Kudos

Thanks Abdul for this advice! Best regards!

Abdul
Active Contributor
0 Kudos

Hi juantorres please use DTW to upload the barcodes in bulk

former_member840657
Discoverer
0 Kudos

Thsnks to all for your answers ... it was really helpfull... so, now i would like to ask how i can set in a massive way the default codebar for any Unit of Measure

Former Member
0 Kudos

I found it - the table is the OBCD if anyone is curious

Former Member
0 Kudos

That was quite helpful, thank you.

kothandaraman_nagarajan
Active Contributor
0 Kudos

Hi,

Try this query:

SELECT T0.[ItemCode], T0.[ItemName], T0.[CodeBars], T0.[SalUnitMsr], T0.[BuyUnitMsr] FROM OITM T0 GROUP BY T0.[ItemCode], T0.[ItemName], T0.[CodeBars], T0.[SalUnitMsr], T0.[BuyUnitMsr]

Thanks & Regards,

Nagarajan

Former Member
0 Kudos

Nagarajan,

Your query only displays the bar code for the Inventory Unit of Measure in the OITM table.

Each of our items have UOM measures such as 6-packs, 12-packs, cartons and pallets with their own distinct bar code number based on UOM.

These bar code numbers are not stored in the OITM table and I need to find the Item Bar Code by UOM table in addition to the bar code in the OTM.

Thank you.