36 lines
1.2 KiB
Plaintext
36 lines
1.2 KiB
Plaintext
{
|
|
-------------------------------------------------------------------------------
|
|
FORMULARIO : ACFMMT003
|
|
OBJETIVO : Pantalla para Capturar los valores de Depreciacion
|
|
Acumulada de un activo.
|
|
PROGRAMADOR : Tadeo A. Ferreras
|
|
FECHA REALIZACION : Sept. 28, 1993
|
|
-------------------------------------------------------------------------------
|
|
}
|
|
SCHEMA smarmotech
|
|
screen size 24 by 80
|
|
{
|
|
|
|
Codigo de Activo [f ] [f1 ]
|
|
Fecha de Compra [c ]
|
|
Fecha de Eliminacion [v ]
|
|
[j]
|
|
Usuario Creador[f2 ] Usuario Modificador[f3 ]
|
|
Fecha Creacion [f5 ] Fecha Modificacion [f6 ]
|
|
}
|
|
end
|
|
tables
|
|
actb00001
|
|
attributes
|
|
c = actb00001.fech_compra,noentry, format = "dd/mm/yy";
|
|
v = actb00001.fech_elim,format = "dd/mm/yy";
|
|
f = actb00001.codigo,autonext,comments = "Digite el codigo del activo";
|
|
f1 = formonly.descripcion,noentry;
|
|
j = actb00001.status_t,noentry;
|
|
f2 = actb00001.us_crea,noentry;
|
|
f3 = actb00001.us_mod,noentry;
|
|
f5 = actb00001.fech_crea,noentry;
|
|
f6 = actb00001.fech_mod,noentry;
|
|
instructions delimiters " "
|
|
end
|