Hi everyone.
I have a stored procedure which just give the cityID in the tbaleCities. I use that as my PV. but I received 3 parameters. The problem is in my VBScreen in the PV section I set...
"xsp_LiqCiudades_PV", "bLiqCiudades.EstadoID"; 0; 0; 0; 1, "bLiqCiudades.MunicipioID"; 0; 0; 0; 1, (both with wildcard on)
And this is my SP
CREATE PROCEDURE xsp_LiqCiudades_PV
@parm1 VARCHAR(10),
@parm2 varchar(10),
@parm3 varchar(10)
AS
SELECT * FROM xv_LiqCiudades WHERE EstadoID like @parm1 and MunicipioID like @parm2 AND CiudadID like @parm3
On my pvchkEvent I only have the next code
RetVal = PVChkFetch1(PNULL, CSR_LiqCiudades, ChkStrg, bLiqCiudades)
but when I hit the F3 key to fire the pvList I get an error with the title of the topic for each param...
I really hope I make my own understand and you can help me.
In advance, thank you very much for the support