Nadav Caridi
- Actividad total 163
- Última actividad
- Miembro desde
- Siguiendo 0 usuarios
- Lo siguen 0 usuarios
- Votos 5
- Suscripciones 62
Comentarios
Actividad reciente de Nadav Caridi-
Hi, I guess I'd right click on UF window remove, and then import (?)
-
Hi Rahul, I think you better do it with two queries , would be easier for you to read and understand if you're new to this so query 2 should look like this (to get the group code): (select top 1 ...
-
Hi In that case you need an join from the oitm to oitt or just create a 2nd condition with another select IF ( NOT EXISTS (SELECT TOP 1 o.code FROM dbo.OITT o WHERE o.code=$[$38.1.0]) AND (put 2n...
-
Hi , Maybe Just try IF NOT EXISTS (SELECT TOP 1 o.code FROM dbo.OITT o WHERE o.code=$[$38.1.0]) BEGIN SELECT 'STOP' [result]END Good Luck
-
Hi, I'd just work around it and create a function button directly with the IPT + add a click validation to tie a UF. Good Luck , Nadi.
-
Comentario oficial Hi , Does that even work as an SQL ? I always start off by running the command on SSMS to see that I'm using the proper SQL syntax with real values.
-
Sure , maybe theres a better way to do this with B1UP , I'm not sure. Glad it worked.
-
ok try use dynamic code as follows : SAPbouiCOM.ComboBox myCombo = (SAPbouiCOM.ComboBox)form.Items.Item("3").Specific;myCombo.Select("S", SAPbouiCOM.BoSearchKey.psk_ByValue);
-
Hi , you can use set focus / send keys with enter after setting the value, just be aware that send keys isn't recommended by boyum. might be a cleaner way to do this (?)
-
Hi Alain, not sure I understand .. If using dynamic code you can use recordset object to query . But I fee like it would be easier to use line loop .