DBA Data[Home] [Help]

APPS.QA_SS_OM dependencies on QA_PLANS

Line 5: plan_id qa_plans.plan_id%type,

1: package qa_ss_om AUTHID CURRENT_USER as
2: /* $Header: qltssomb.pls 115.4 2002/11/27 19:33:34 jezheng ship $ */
3:
4: type plan_info_rec is record (
5: plan_id qa_plans.plan_id%type,
6: name qa_plans.name%type,
7: description qa_plans.description%type,
8: meaning fnd_common_lookups.meaning%type);
9:

Line 6: name qa_plans.name%type,

2: /* $Header: qltssomb.pls 115.4 2002/11/27 19:33:34 jezheng ship $ */
3:
4: type plan_info_rec is record (
5: plan_id qa_plans.plan_id%type,
6: name qa_plans.name%type,
7: description qa_plans.description%type,
8: meaning fnd_common_lookups.meaning%type);
9:
10: type plan_tab_type is table of plan_info_rec index by binary_integer;

Line 7: description qa_plans.description%type,

3:
4: type plan_info_rec is record (
5: plan_id qa_plans.plan_id%type,
6: name qa_plans.name%type,
7: description qa_plans.description%type,
8: meaning fnd_common_lookups.meaning%type);
9:
10: type plan_tab_type is table of plan_info_rec index by binary_integer;
11: