Files
VSC/SQL/AX-QueueWithPrintType.sql
claudio 368d6fafea Issue
Code backup
2026-05-10 16:59:01 +02:00

6 lines
212 B
SQL

select b.DESCRIPTION 'Descr', b.PRINTSUBTYPE 'subType' , a.OPTIONALSTR1 'str1'
from PALDC_OPC_PRINTQUEUE a
join PALDC_OPC_PRINTTYPES b
ON a.PRINTTYPE = b.RECID
where b.PRINTTYPE = 4
order by a.RECID asc