I have a table with product codes, the first two chars of the product code is the product group.
using the product group I'd like to test the content of certain data.
Would this be proper coding or is there a better way ?
if prodcust_code[:2] == "AB" do:
ABsubroutine
if prodcust_code[:2] == "CC" do:
CCsubroutine
if prodcust_code[:2] == "EF" do:
EFsubroutine
if prodcust_code[:2] == "US" do:
USsubroutine