DBA Data[Home] [Help]

APPS.JTF_RS_WF_INTEGRATION_PUB dependencies on WF_PARAMETER_LIST_T

Line 74: AddParameterToList - adds name and value to wf_parameter_list_t

70: (p_resource_id IN number)
71: RETURN varchar2;
72:
73: /*
74: AddParameterToList - adds name and value to wf_parameter_list_t
75: If the list is null, will initialize, otherwise just adds to the end of list
76: */
77:
78: /*#

Line 80: * This procedure is used to add the parameters to the list, wf_parameter_list_t

76: */
77:
78: /*#
79: * Add Parameters to the List
80: * This procedure is used to add the parameters to the list, wf_parameter_list_t
81: * @param p_name Name
82: * @param p_value Value
83: * @param p_parameterlist Workflow Parameter List
84: * @rep:scope private

Line 89: p_parameterlist in out nocopy wf_parameter_list_t);

85: * @rep:displayname Get Workflow Role for a Resource
86: */
87: PROCEDURE AddParameterToList(p_name in varchar2,
88: p_value in varchar2,
89: p_parameterlist in out nocopy wf_parameter_list_t);
90:
91: /* This procedure creates a record in wf_local_roles table
92: and a self relate record in wf_local_user_roles table
93: for the redource_id passed. */