GeneXus - Ayuda Porfavor

 
Vista:

Ayuda Porfavor

Publicado por Pedro (73 intervenciones) el 29/01/2007 14:58:35
Lo q me pasa es lo siguiente es que tengo ir actualizando InvFacReaj de pendiendo de la fecha de ingreso la formula q tengi en rulez es la siguiente


InvFacReaj = "1.021" If ProdFec <= FecAnt;
InvFacReaj = "1.01" If ProdFec > FecAnt and ProdFec <= FecReaj1;
InvFacReaj = "1" If ProdFec > FecReaj1;

pero al momento de especificar me sae el siguiente error:


spc0010 Type mismatch in assignment: InvFacReaj = "1.021" ( Numeric = Character).

spc0010 Type mismatch in assignment: InvFacReaj = "1.01" ( Numeric = Character).

spc0010 Type mismatch in assignment: InvFacReaj = "1" ( Numeric = Character).

no se si me falta algun ciclo porfas ayudenme es algo urgente
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:Ayuda Porfavor

Publicado por Patricio Ojeda V (194 intervenciones) el 29/01/2007 15:19:41
Deberias tener:

InvFacReaj = 1.021 If ProdFec <= FecAnt;
InvFacReaj = 1.01 If ProdFec > FecAnt and ProdFec <= FecReaj1;
InvFacReaj = 1 If ProdFec > FecReaj1;

Saludos

Patricio Ojeda V
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar

RE:Ayuda Porfavor

Publicado por Pedro (73 intervenciones) el 29/01/2007 16:00:40
vale men gracias
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar