jennon1207
Programmer
Hi!
This is the program:
DECLARE
v_file_name VARCHAR2(1000);
v_pot VARCHAR2(1000);
--
file_locked EXCEPTION;
PRAGMA EXCEPTION_INIT(file_locked,-302000);
--
BEGIN
v_pot := ZNPV_PCK.Get_Pot_Navodila;
IF v_pot is null then
DO_KEY('HELP');
v_file_name := null;
ELSE
v_file_name:= v_pot;
END IF;
--
IF v_file_name IS NOT NULL THEN
Fexec.Run(v_file_name);
END IF;
END;
Now I have to do a key-help trigger that opens different document depending on a form that is opened. Example: if I open "ZNPV.fmb" form, "ZNPV.doc" should open when I press to the key-help butten.
I hope that you understand what I'm trying to say.
I would really be appreciate if you help me.
By!
This is the program:
DECLARE
v_file_name VARCHAR2(1000);
v_pot VARCHAR2(1000);
--
file_locked EXCEPTION;
PRAGMA EXCEPTION_INIT(file_locked,-302000);
--
BEGIN
v_pot := ZNPV_PCK.Get_Pot_Navodila;
IF v_pot is null then
DO_KEY('HELP');
v_file_name := null;
ELSE
v_file_name:= v_pot;
END IF;
--
IF v_file_name IS NOT NULL THEN
Fexec.Run(v_file_name);
END IF;
END;
Now I have to do a key-help trigger that opens different document depending on a form that is opened. Example: if I open "ZNPV.fmb" form, "ZNPV.doc" should open when I press to the key-help butten.
I hope that you understand what I'm trying to say.
I would really be appreciate if you help me.
By!