1
I made an application to manage all the IT equipment in a company, I can list how many of each type of equipment there are in total, and I can also show only one specific type, like laptops or desktops, but I can’t make a list showing how many laptops or printers I have in a certain branch. (I will attach prints). I would like that when I typed the name of a certain branch in the second field, only the equipment of that branch appeared.
This is the code for my Event Load in the Web Panel in the Events tab
Event Load
&EquipQtn = count(Nome_Equipamento)
&FilialStartCheck = (Nome_Filial)
EndEvent
That’s my Grid code on the Web Panel
TipoEquipamentoNome like '%'+&EquipStartCheck.Trim()+'%';
Nome_Filial like '%'+&FilialStartCheck.Trim()+'%';