DBA Data[Home] [Help]

PACKAGE: APPS.QA_SS_ATTACHMENT

Source


1 PACKAGE qa_ss_attachment AUTHID CURRENT_USER AS
2 /* $Header: qltssatb.pls 115.4 2002/11/27 19:30:43 jezheng ship $ */
3 
4     --
5     -- Attachment Entry Points for Collection Plans.
6     --
7 
8     --
9     -- This function whether there is attachment for the plan.
10     -- Returns DISABLED if there is attachment cannot be used.
11     --         FULL if attachment can be used and there is an attachment.
12     --         EMPTY if attachment can be used but there is no attachment.
13     --
14     FUNCTION qa_plans_attachment_status(plan_id number) RETURN varchar2;
15 
16     --
17     -- This function calls the fnd_webattach.summary procedure to start
18     -- viewing the attachment.  If from_url is specified, then the Back
19     -- icon in the attachment form will take user back to this URL.
20     --
21     PROCEDURE qa_plans_view_attachment(plan_id number,
22         from_url varchar2 DEFAULT null);
23 
24     --
25     -- This function whether there is attachment for the specification.
26     -- Returns DISABLED if there is attachment cannot be used.
27     --         FULL if attachment can be used and there is an attachment.
28     --         EMPTY if attachment can be used but there is no attachment.
29     --
30     FUNCTION qa_specs_attachment_status(spec_id number) RETURN varchar2;
31 
32     --
33     -- This function calls the fnd_webattach.summary procedure to start
34     -- viewing the attachment.  If from_url is specified, then the Back
35     -- icon in the attachment form will take user back to this URL.
36     --
37     PROCEDURE qa_specs_view_attachment(spec_id number,
38         from_url varchar2 DEFAULT null);
39 
40 END qa_ss_attachment;
41