Funciones de SQL Server en Data WIndow
Saludos, espero puedan ayudarme.
Estoy programando un Data Windows (Fre Form) y los registros que necesito mostrar deben cumplir la siguiente consulta:
- SELECT ID_ARTI,DESCRIPCION, DBO.FU_ULTMOV(ID_ARTI) AS Movimiento,DBO.FU_ITEMULTMOV(ID_ARTI) Item,DBO.FU_PRECULTMOV(ID_ARTI)*1.19 AS PRECIOCOMPRA,(DBO.FU_PRECULTMOV(ID_ARTI)*1.19)*1.33 AS Precio_Sugerido,pps FROM TBIN_ARTICULOS WHERE IND_ACTIVO ='S'
order by DESCRIPCION
Es decir estoy tratando de llamar a funciones del SQL a través del Data Windows y me sale un error:
SQL STATE 3700
Cannot find either column DBO or the user-defined function or agregate FU_ULTMOV().....
Espero puedan ayudarme y gracias de antemano
Estoy programando un Data Windows (Fre Form) y los registros que necesito mostrar deben cumplir la siguiente consulta:
- SELECT ID_ARTI,DESCRIPCION, DBO.FU_ULTMOV(ID_ARTI) AS Movimiento,DBO.FU_ITEMULTMOV(ID_ARTI) Item,DBO.FU_PRECULTMOV(ID_ARTI)*1.19 AS PRECIOCOMPRA,(DBO.FU_PRECULTMOV(ID_ARTI)*1.19)*1.33 AS Precio_Sugerido,pps FROM TBIN_ARTICULOS WHERE IND_ACTIVO ='S'
order by DESCRIPCION
Es decir estoy tratando de llamar a funciones del SQL a través del Data Windows y me sale un error:
SQL STATE 3700
Cannot find either column DBO or the user-defined function or agregate FU_ULTMOV().....
Espero puedan ayudarme y gracias de antemano
Respuesta de achafio
1