Oracle - LLamar a un report desde form

 
Vista:

LLamar a un report desde form

Publicado por Mada (4 intervenciones) el 08/09/2006 17:25:32
Hola necesito vuestra ayuda...intento llamar a un report desde un form y no me deja, me da error e esta durante mucho rato buscando el report bloqueandome el ordenador..el código es el siguiente:

DECLARE
repid REPORT_OBJECT;
V_REP VARCHAR2(100);
BEGIN
REPID := FIND_REPORT_OBJECT(' NOMBRE DE MI REPORT');
V_REP := RUN_REPORT_OBJECT(REPID);
END;

Gracias anticipadas!!
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

RE:LLamar a un report desde form

Publicado por Jose (2 intervenciones) el 16/09/2006 09:02:15
Prueba con:

Run_PRODUCT(REPORTS,'path al report hasta escribir el nombre sin extension',SYNCHRONOUS, RUNTIME, FILESYSTEM,'' ,NULL);
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar