DBA Data[Home] [Help]

APPS.FND_SESSION_MANAGEMENT dependencies on WF_PARAMETER_T

Line 196: l_parameterList(1) := wf_parameter_t('p_user_id', p_user_id);

192: l_parameterList := WF_PARAMETER_LIST_T(null);
193:
194: --Populate the first subscript with param1, then extend the varray.
195:
196: l_parameterList(1) := wf_parameter_t('p_user_id', p_user_id);
197:
198: l_parameterList.EXTEND;
199:
200: --Populate the second, but do not extend (will get an ORA-30625 if you do.)

Line 202: l_parameterList(2) := wf_parameter_t('p_session_id', p_session_id);

198: l_parameterList.EXTEND;
199:
200: --Populate the second, but do not extend (will get an ORA-30625 if you do.)
201:
202: l_parameterList(2) := wf_parameter_t('p_session_id', p_session_id);
203:
204: --Raise the event
205:
206: begin