DBA Data[Home] [Help]

APPS.IGS_AD_SS_APPL_UPD_PAGE dependencies on WF_EVENT_T

Line 825: l_event_t wf_event_t;

821: --Change History:
822: --Who When What
823: ----------------------------------------------------------------
824:
825: l_event_t wf_event_t;
826: l_parameter_list_t wf_parameter_list_t;
827: l_itemKey varchar2(100);
828:
829: -- Getting the Profile value for the profile IGS_WF_ENABLE, to check if workflow is installed in the environment

Line 856: -- initialize the wf_event_t object

852: OPEN c_seq_num;
853: FETCH c_seq_num INTO l_seq_val_screen_int_s ;
854: CLOSE c_seq_num ;
855:
856: -- initialize the wf_event_t object
857: wf_event_t.Initialize(l_event_t);
858:
859: -- Adding the parameters to the parameter list
860: wf_event.AddParameterToList (p_name => 'P_PERSON_ID',p_value=> p_person_id ,p_parameterlist => l_parameter_list_t);

Line 857: wf_event_t.Initialize(l_event_t);

853: FETCH c_seq_num INTO l_seq_val_screen_int_s ;
854: CLOSE c_seq_num ;
855:
856: -- initialize the wf_event_t object
857: wf_event_t.Initialize(l_event_t);
858:
859: -- Adding the parameters to the parameter list
860: wf_event.AddParameterToList (p_name => 'P_PERSON_ID',p_value=> p_person_id ,p_parameterlist => l_parameter_list_t);
861: wf_event.AddParameterToList (p_name => 'P_ADMISSION_APPL_NUMBER', p_value => p_admission_appl_number, p_parameterlist => l_parameter_list_t);