Oracle - Menu Inhabilitado en Forms 6i

 
Vista:

Menu Inhabilitado en Forms 6i

Publicado por Audilio Pinto (1 intervención) el 25/01/2012 22:59:28
Hola quisiera saber si alguin sabe porque esta saliendo este erro, cuando ejecuto la pantalla principal de un aplicacion de forms-oracle. el error que me esta dando es el siguuiente : frm-10247: No hay articulos activos en el menu raiz de la aplicacion. les dejo lo que hice para ver si me levanta la aplicacion con el menu, si alguien me puede ayudar se lo agradezco:
create or replace view FRM50_ENABLED_ROLES as
select urp.granted_role role,
sum(distinct decode(rrp.granted_role,
'ORAFORMS$OSC',2,
'ORAFORMS$BGM',4,
'ORAFORMS$DBG',1,0)) flag
from sys.user_role_privs urp, role_role_privs rrp
where urp.granted_role = rrp.role (+)
and urp.granted_role not like 'ORAFORMS$%'
group by urp.granted_role;

--create public synonym FRM50_ENABLED_ROLES for system.FRM50_ENABLED_ROLES;
create public synonym FRM50_ENABLED_ROLES for FRM50_ENABLED_ROLES;

create role ORAFORMS$OSC;
create role ORAFORMS$DBG;
create role ORAFORMS$BGM;
--
grant select on FRM50_ENABLED_ROLES to public;
grant all opction ;
--
select *
from All_OBJECTS
where OBJECT_name like '%FRM%';
--
ORAFORMS$OSC, ORAFORMS$DBG, ORAFORMS$BGM;
--
GRANT ALL PRIVILEGES TO apinto {user, | role, |PUBLIC} ;
--
select *
from FRM50_ENABLED_ROLES;
--
grant inserta_perez to alu20;
--
grant ORAFORMS$OSC, ORAFORMS$DBG, ORAFORMS$BGM to apinto;

grant CONNECT,DBA,RESOURCE to apinto;
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder