DBA Data[Home] [Help]

PACKAGE: APPS.FFHUTL

Source


1 package ffhutl AUTHID CURRENT_USER as
2 /* $Header: ffhutl.pkh 115.0 99/07/16 02:03:09 porting ship $ */
3 /*
4   Copyright (c) Oracle Corporation (UK) Ltd 1993.
5   All rights reserved
6 
7   Name:   ffhutl
8 
9   Description:
10 
11   Change List
12   -----------
13   P Gowers       10-MAR-1993     Rename package to ffhutl
14 */
15 --
16 -------------------------------- load_harness --------------------------------
17 -- NAME
18 --   load_harness
19 -- DESCRIPTION
20 --   Copies the FDIU contents for a given formula into a harness table
21 --   which links each item with a value. The whole set of harness items
22 --   are referenced by formula_id and the value of userenv('SESSIONID')
23 --
24 procedure load_harness (p_formula_id in number);
25 --
26 ------------------------------- delete_harness -------------------------------
27 -- NAME
28 --   delete_harness
29 -- DESCRIPTION
30 --   Deletes all entries in the harness for the current user determined by
31 --   userenv('SESSIONID')
32 --
33 procedure delete_harness;
34 --
35 end ffhutl;