32 lines
938 B
Plaintext
32 lines
938 B
Plaintext
{
|
|
------------------------------------------------------------------------------
|
|
FORMULARIO : GEFMRP016
|
|
OBJETIVO : CAPTURAR LAS INFORMACIONES PERTENECIENTES AL REPORTE DE
|
|
RANKING DE VENDEDORES/PRODUCTOS ACUMULADO
|
|
DISENO : JUAN F. SOTO
|
|
FECHA : MAYO 22, 1996
|
|
-------------------------------------------------------------------------------
|
|
}
|
|
|
|
database rayovac
|
|
screen
|
|
{
|
|
Ano [f1 ]
|
|
Mes [f2 ]
|
|
Vendedor [v ]
|
|
Producto [n][g][t ][s ]
|
|
}
|
|
end
|
|
tables
|
|
vetb00002,vetb00003
|
|
attributes
|
|
f1 = formonly.p_ano type smallint;
|
|
f2 = formonly.p_mes type smallint;
|
|
v = vetb00002.sec_vend,comments="Digite Codigo de Vendedor";
|
|
n = vetb00003.cod_n,autonext;
|
|
g = vetb00003.cod_grupo;
|
|
t = vetb00003.cod_tipo;
|
|
s = vetb00003.cod_sec;
|
|
instructions delimiters " "
|
|
end
|