Forms Dateiauswahl

declare v_datei varchar2(255);
begin
begin
	v_datei := get_file_name('\\ckz02\ckcdisk', null, 'alle Dokumente (*.*)|*.*|');
	if v_datei is not null then
     :kna_objects_dokumente.dokument := v_datei;
  end if;
	exception	   
		when others then
   	     message(sqlerrm);
	end;
end;