40 lines
1019 B
Plaintext
40 lines
1019 B
Plaintext
{
|
|
-------------------------------------------------------------------------
|
|
NOMBRE : cgfmmt002
|
|
OBJETIVO : Capturar las informaciones de los tipos de transacciones
|
|
DISENO : Ing. Juan F.Soto
|
|
FECHA REALIZADO : Septiembre 28, 1993.
|
|
MODULO UTILIZA : cgprmt002
|
|
--------------------------------------------------------------------------
|
|
}
|
|
database marmotech
|
|
screen
|
|
{
|
|
Codigo Transaccion [c1 ]
|
|
Clave Alfabetica [c2 ]
|
|
Descripcion [c3 ]
|
|
[g]
|
|
|
|
Usuario Creador [c6 ] Usuario Modificador [c7 ]
|
|
Fecha Creacion [c8 ] Fecha Modificacion [c9 ]
|
|
|
|
}
|
|
end
|
|
tables
|
|
cgtb00003
|
|
attributes
|
|
|
|
c1 = cgtb00003.tipo,reverse;
|
|
c2 = cgtb00003.clave,reverse,upshift;
|
|
c3 = cgtb00003.descripcion,reverse,upshift;
|
|
|
|
g = cgtb00003.status_t,noentry;
|
|
c6 = cgtb00003.us_crea,noentry;
|
|
c7 = cgtb00003.us_mod,noentry;
|
|
c8 = cgtb00003.fech_crea,noentry;
|
|
c9 = cgtb00003.fech_mod,noentry;
|
|
|
|
instructions
|
|
delimiters " "
|
|
end
|