DBA Data[Home] [Help]

APPS.PAY_CA_BALANCE_VIEW_PKG dependencies on FF_CONTEXTS

Line 114: ctxid ff_contexts.context_id%type,

110: -- Context --
111: -------------
112: type Ctx is record
113: (
114: ctxid ff_contexts.context_id%type,
115: ctxnam ff_contexts.context_name%type,
116: ctxval pay_balance_context_values.value%type
117: );
118:

Line 115: ctxnam ff_contexts.context_name%type,

111: -------------
112: type Ctx is record
113: (
114: ctxid ff_contexts.context_id%type,
115: ctxnam ff_contexts.context_name%type,
116: ctxval pay_balance_context_values.value%type
117: );
118:
119: ----------------------

Line 126: ff_contexts.context_id%type

122: -- BHOMAN - can't PLSQL tables of records, so replace CtxList
123: -- with individual tables for each element
124: -- type CtxList is table of Ctx index by binary_integer;
125: type ListCtxId is table of
126: ff_contexts.context_id%type
127: index by binary_integer;
128: type ListCtxName is table of
129: ff_contexts.context_name%type
130: index by binary_integer;

Line 129: ff_contexts.context_name%type

125: type ListCtxId is table of
126: ff_contexts.context_id%type
127: index by binary_integer;
128: type ListCtxName is table of
129: ff_contexts.context_name%type
130: index by binary_integer;
131: type ListCtxValue is table of
132: pay_balance_context_values.value%type
133: index by binary_integer;