34 lines
951 B
Plaintext
34 lines
951 B
Plaintext
{
|
|
------------------------------------------------------------------------------
|
|
FORMULARIO : GEFMRP015
|
|
OBJETIVO : CAPTURAR LAS INFORMACIONES PERTENECIENTES AL REPORTE DE
|
|
RANKING DE VENDEDORES/CLIENTES ACUMULADO
|
|
DISENO : JUAN F. SOTO
|
|
FECHA : MAYO 22, 1996
|
|
-------------------------------------------------------------------------------
|
|
}
|
|
|
|
database rayovac
|
|
screen
|
|
{
|
|
Ano [f1 ]
|
|
Mes [f2 ]
|
|
Ventas Mayores a[ve ]
|
|
|
|
Vendedor [v ]
|
|
Cliente [n ][g ]
|
|
|
|
}
|
|
end
|
|
tables
|
|
vetb00002,vetb00003
|
|
attributes
|
|
ve = formonly.valor;
|
|
f1 = formonly.p_ano type smallint;
|
|
f2 = formonly.p_mes type smallint;
|
|
v = vetb00002.sec_vend,comments="Digite Codigo de Vendedor";
|
|
n = vetb00002.tipo_cliente;
|
|
g = vetb00002.sec_cliente;
|
|
instructions delimiters " "
|
|
end
|