33 lines
923 B
Plaintext
33 lines
923 B
Plaintext
schema smarmotech
|
|
LAYOUT (TEXT="RANKING VENTAS POR PRODUCTO")
|
|
GRID
|
|
{
|
|
Ano [f1 ]
|
|
Mes [f2 ]
|
|
Cantidad Registros [ca ]
|
|
Raking por: [va ]
|
|
|
|
|
|
Producto [n ][g ][t ][s ]
|
|
|
|
|
|
|
|
}
|
|
end
|
|
tables
|
|
vetb00002,vetb00003
|
|
ATTRIBUTES
|
|
|
|
f1 = formonly.p_ano;
|
|
COMBOBOX f2 = formonly.p_mes,ITEMS=(("1","ENERO"),("2","FEBRERO"),("3","MARZO"),("4","ABRIL"),("5","MAYO"),("6","JUNIO"),("7","JULIO"),("8","AGOSTO"),("9","SEPTIEMBRE"),("10","OCTUBRE"),("11","NOVIEMBRE"),("12","DICIEMBRE"));
|
|
|
|
ca = formonly.cantidad_registros,REQUIRED;
|
|
COMBOBOX va = formonly.tipo_ranking,INCLUDE=("CANTIDAD","VALOR"),DEFAULT="CANTIDAD";
|
|
n = vetb00003.cod_n,autonext;
|
|
g = vetb00003.cod_grupo;
|
|
t = vetb00003.cod_tipo;
|
|
s = vetb00003.cod_sec;
|
|
|
|
instructions delimiters " "
|
|
end
|