They get this error whenever the user is logged in the system after a considerable length of time (say 8 hours).
If they re-boot the system, it works okay.
Márcio de Souza Almeida
DBA Oracle / SQLServer / PostgreSQL
Rua Cupa, 139 Apto 85 A
Penha - São Paulo - SP
03640-000 - Brasil http://www.directory.com.br
-- Alteração em 09/02/1997 - Alexandre(EnSof)
-- Motivo : Inibir a linha abaixo para não permitir Titulos Duplicados na Janela Windows
-- O template pegará o título colocado na opcao "TITLE" do CASE*DESIGNER
-- Set_Window_Property(Forms_MDI_Window,Title,GET_ITEM_PROPERTY('CG$CTRL.CG$MN',
-- HINT_TEXT));
-- Fim da Alteração
/* CGGN$CALL_GENERATOR_CODE */
/* Execute the WHEN-NEW-FORM-INSTANCE code that was created by Forms */
/* Generator */
BEGIN
CGBS2$.SET_COORD_STYLE( 'P' );
CGBS2$.SET_QRY_ON_ENTRY( 'Y' );
BEGIN
CG$WHEN_NEW_FORM_INSTANCE;
EXCEPTION
WHEN OTHERS THEN
CGTE$OTHER_EXCEPTIONS;
END;
END;
/*
Set_Window_Property('CG$WINDOW_1',WINDOW_STATE,MAXIMIZE);
Set_window_property('CG$WINDOW_1',Title,Lower(GET_APPLICATION_PROPERTY(USERNAME)));
Set_window_property(FormS_mdi_window,Title,
lower(get_item_property('CG$CTRL.CG$MS',HINT_TEXT))||' - '||
get_item_property('CG$CTRL.CG$MN',HINT_TEXT));
cursor c1 is
select p.cd_assinatura ,
a.cd_veiculo ,
p.cd_contrato_assn ,
p.dt_venda_periodo ,
p.dt_inicio_periodo ,
p.dt_correcao_fim_periodo
from assinatura a,
periodo_assinatura p
where cd_recibo = :blk_01.cd_recibo
and (cd_serie_recibo Is Null
Or RTRIM (LTRIM (cd_serie_recibo)) = RTRIM (LTRIM (:blk_01.cd_serie)) )
and a.cd_assinatura = p.cd_assinatura
and a.cd_periodo_atual = p.cd_periodo;
BEGIN
for reg1 in c1
loop
ncd_assin := reg1.cd_assinatura;
Bookmarks