DBA Data[Home] [Help]

APPS.PAY_US_BALANCE_VIEW_PKG dependencies on FF_CONTEXTS

Line 120: ctxid ff_contexts.context_id%type,

116: -- Context --
117: -------------
118: type Ctx is record
119: (
120: ctxid ff_contexts.context_id%type,
121: ctxnam ff_contexts.context_name%type,
122: ctxval pay_balance_context_values.value%type
123: );
124:

Line 121: ctxnam ff_contexts.context_name%type,

117: -------------
118: type Ctx is record
119: (
120: ctxid ff_contexts.context_id%type,
121: ctxnam ff_contexts.context_name%type,
122: ctxval pay_balance_context_values.value%type
123: );
124:
125: ----------------------

Line 132: ff_contexts.context_id%type

128: -- BHOMAN - can't PLSQL tables of records, so replace CtxList
129: -- with individual tables for each element
130: -- type CtxList is table of Ctx index by binary_integer;
131: type ListCtxId is table of
132: ff_contexts.context_id%type
133: index by binary_integer;
134: type ListCtxName is table of
135: ff_contexts.context_name%type
136: index by binary_integer;

Line 135: ff_contexts.context_name%type

131: type ListCtxId is table of
132: ff_contexts.context_id%type
133: index by binary_integer;
134: type ListCtxName is table of
135: ff_contexts.context_name%type
136: index by binary_integer;
137: type ListCtxValue is table of
138: pay_balance_context_values.value%type
139: index by binary_integer;