Tempo aproximado para leitura: 00:00:20 min
Ocorrência
Ao acessar Árvores de Processo > Tabelas de Refêrencia > Tabela de Produtos SIMP, corre a mensagem "table or view does not exist" ,PROTIPOCERTIFICACAO.
Ambiente
TOTVS Agro - TOTVS Agro - PRO - Controle Processamento Industrial - Todas as versões
Causa
O erro ocorre por falta da tabela PROTIPOCERTIFICACAO.
Solução
Para solucionar essa ocorrência, realize os seguintes passos:
1.Execute a criação do script abaixo;
-- Create table
create table PROTIPOCERTIFICACAO
(
id_tipo VARCHAR2(20) not null,
descricao_tipo VARCHAR2(20)
)
tablespace PIMS_DATA
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
next 1M
minextents 1
maxextents unlimited
);
-- Create/Recreate primary, unique and foreign key constraints
alter table PROTIPOCERTIFICACAO
add constraint ID_TIPO_PK primary key (ID_TIPO)
using index
tablespace PIMS_DATA
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
next 1M
minextents 1
maxextents unlimited
);
0 Comentários