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. Thanks for the reply. Basically I try to check it when saving to draft. Validation is set to data add/update. And it's fired alright since I have status bar info before each line on my uf macro...
-
Hi. I might be wrong but this might be due to c# version as well? Since string interpolation was first presented @ c# 10 (?). I know this does not answer your original question but I was wondering ...
-
Hi, Have you tried running it as a sql report , with a function button ? (see my screenshot in previous reply)
-
Hi Bummer, I'm Sorry but I'm using MSSQL and that works fine in managment studio + SBO. Do you have some sort of Query tool in HANA where you can go though the syntax and see where the TSQL error i...
-
Hi, Not sure about the Hana syntax , thought it's a regular Tsql. Try just doing it without the variable as follows in the sql condition (?) , also replace the field you query with your field (th...
-
you can check for special chars with tsql DECLARE @str nvarchar(max)='test' SELECT 1 WHERE @str NOT LIKE '%[^a-zA-Z0-9]%'
-
Hi, not my native language but looks like a cast error ? heres what works for me (c#) Item myItem=form.Items.Item("BOY_1"); Grid myGrid=(Grid)myItem.Specific;
-
Very nice. I think I need to update my sbo in order to use that feature.
-
Hi Dynamic code works but store values arent supported afaik.
-
Hi, Try to set a @store value using sql instead and then check against it . use the SQL() syntax