I have a problem with a Display field:
In the Browse view it shows up exactly as expected, using this statement
Code: Select all
CONCAT (pro_short_name,'-#',pma_serial_nr)
Any hints anyone how to fix this?
Code: Select all
CONCAT (pro_short_name,'-#',pma_serial_nr)
Code: Select all
SELECT CONCAT (pro_short_name,'-#',pma_serial_nr) FROM your_table
Code: Select all
CONCAT (tab_product.pro_short_name,'-#',tab_product_manuf.pma_serial_nr)
FROM
tab_product_manuf
JOIN tab_product ON tab_product.tab_product_id = tab_product_manuf.tab_product_manuf_id
Code: Select all
CONCAT (pro_short_name,'-#',pma_serial_nr)
Code: Select all
SELECT
tab_product.pro_short_name,
tab_product.pro_long_name,
tab_product.pro_order_nr,
tab_product_manuf.pma_serial_nr,
tab_product_manuf.pma_product_id,
tab_product_manuf.pma_jointid,
tab_product_manuf.pma_customer_id,
tab_customer.cus_name_official,
tab_customer.cus_name_internal
FROM
tab_product
JOIN tab_product_manuf ON tab_product_manuf.pma_product_id = tab_product.tab_product_id
JOIN tab_customer ON tab_customer.tab_customer_id = tab_product_manuf.pma_customer_id
Code: Select all
WHERE your_primary_key_column = '#RECORD_ID#'
Yes, you can do that.PS: in the ID field of the Object properties, I have written a "fantasy name", which I assume is okay, right?