27 lines
946 B
Plaintext
27 lines
946 B
Plaintext
schema smarmotech
|
|
screen size 24 by 80
|
|
{
|
|
|
|
Numero de Cuenta [f003 ] T o t a l e s
|
|
Documento [f005 ] \g---------------------\g
|
|
Departamento [f004] Debito [f1 ]
|
|
Fecha Inicial [f000 ] Credito [f2 ]
|
|
Fecha Final [f001 ] Diferencia[f3 ]
|
|
|
|
}
|
|
end
|
|
tables
|
|
cgtb00004
|
|
attributes
|
|
f003 = cgtb00004.cuenta_no,comments = "Digite el numero de cuenta";
|
|
f004 = cgtb00004.departamento,comments = "Digite el departamento";
|
|
f005 = cgtb00004.ref,comments = "Digite Dcto deseado ",upshift;
|
|
f000 = formonly.fecha1 type date,format = "dd/mm/yyyy",
|
|
comments = "Digite la fecha Inicial";
|
|
f001 = formonly.fecha2 type date,format = "dd/mm/yyyy",
|
|
comments = "Digite la fecha Final";
|
|
f1 = formonly.t_debito,noentry;
|
|
f2 = formonly.t_credito,noentry;
|
|
f3 = formonly.diferencia,noentry;
|
|
end
|