DBA Data[Home] [Help]

APPS.IGS_EN_WORKFLOW dependencies on WF_EVENT_T

Line 13: --kkillams 10-03-2003 Replaced wf_event_t.AddParameterToList with wf_event.AddParameterToList api

9: Change History
10: Who When What
11: ddey 30th April,2003 Bug # 2829275 The new procedures are added as a part of UK Correspondence - Part -1 FD
12: vchappid 25-Jul-01 Two new procedures are added
13: --kkillams 10-03-2003 Replaced wf_event_t.AddParameterToList with wf_event.AddParameterToList api
14: -- to show params in the workflow out queue and able to derive the parameters
15: from the outside after event is raised, w.r.t. bug 2840171
16: knaraset 18-Nov-2003 Added procedure student_placement_event, for placement build
17: stutta 14-Apr-2005 Replaced all references to FND_USER.customer_id to

Line 219: l_event_t wf_event_t;

215: -- Change History:
216: -- Who When What
217: --
218: -------------------------------------------------------------------------------------------------
219: l_event_t wf_event_t;
220: l_parameter_list_t wf_parameter_list_t;
221: l_itemKey varchar2(100);
222: ln_seq_val NUMBER;
223:

Line 294: -- initialize the wf_event_t object

290: FETCH cur_int_type INTO l_cur_int_type;
291: CLOSE cur_int_type;
292:
293: --
294: -- initialize the wf_event_t object
295: --
296:
297: wf_event_t.Initialize(l_event_t);
298:

Line 297: wf_event_t.Initialize(l_event_t);

293: --
294: -- initialize the wf_event_t object
295: --
296:
297: wf_event_t.Initialize(l_event_t);
298:
299:
300: --
301: -- Adding the parameters to the parameter list

Line 355: l_event_t wf_event_t;

351: -- Change History:
352: -- Who When What
353: --
354: -------------------------------------------------------------------------------------------------
355: l_event_t wf_event_t;
356: l_parameter_list_t wf_parameter_list_t;
357: l_itemKey varchar2(100);
358: ln_seq_val NUMBER;
359:

Line 421: -- initialize the wf_event_t object

417: FETCH cur_discontinue_reason INTO l_cur_discontinue_reason;
418: CLOSE cur_discontinue_reason;
419:
420: --
421: -- initialize the wf_event_t object
422: --
423:
424: wf_event_t.Initialize(l_event_t);
425:

Line 424: wf_event_t.Initialize(l_event_t);

420: --
421: -- initialize the wf_event_t object
422: --
423:
424: wf_event_t.Initialize(l_event_t);
425:
426:
427: --
428: -- Adding the parameters to the parameter list

Line 484: l_event_t wf_event_t;

480: -- Who When What
481: --
482: -------------------------------------------------------------------------------------------------
483:
484: l_event_t wf_event_t;
485: l_parameter_list_t wf_parameter_list_t;
486: l_itemKey varchar2(100);
487: ln_seq_val NUMBER;
488:

Line 536: -- initialize the wf_event_t object

532: FETCH cur_user_id INTO l_cur_user_id ;
533: CLOSE cur_user_id ;
534:
535: --
536: -- initialize the wf_event_t object
537: --
538:
539: wf_event_t.Initialize(l_event_t);
540:

Line 539: wf_event_t.Initialize(l_event_t);

535: --
536: -- initialize the wf_event_t object
537: --
538:
539: wf_event_t.Initialize(l_event_t);
540:
541:
542: --
543: -- Adding the parameters to the parameter list

Line 602: l_event_t wf_event_t;

598: -- Who When What
599: --
600: -------------------------------------------------------------------------------------------------
601:
602: l_event_t wf_event_t;
603: l_parameter_list_t wf_parameter_list_t;
604: l_itemKey varchar2(100);
605: ln_seq_val NUMBER;
606:

Line 656: -- initialize the wf_event_t object

652: FETCH cur_user_id INTO l_cur_user_id ;
653: CLOSE cur_user_id ;
654:
655: --
656: -- initialize the wf_event_t object
657: --
658:
659: wf_event_t.Initialize(l_event_t);
660:

Line 659: wf_event_t.Initialize(l_event_t);

655: --
656: -- initialize the wf_event_t object
657: --
658:
659: wf_event_t.Initialize(l_event_t);
660:
661:
662: --
663: -- Adding the parameters to the parameter list

Line 1579: l_event_t wf_event_t;

1575: WHERE party_id = cp_person_id;
1576:
1577: l_cur_prof_value cur_prof_value%ROWTYPE;
1578: l_cur_pers_number cur_pers_number%ROWTYPE;
1579: l_event_t wf_event_t;
1580: l_parameter_list_t wf_parameter_list_t;
1581: l_itemKey varchar2(100);
1582: ln_seq_val NUMBER;
1583:

Line 1604: -- initialize the wf_event_t object

1600: FETCH cur_pers_number INTO l_cur_pers_number;
1601: CLOSE cur_pers_number;
1602:
1603: --
1604: -- initialize the wf_event_t object
1605: --
1606: wf_event_t.Initialize(l_event_t);
1607:
1608: --

Line 1606: wf_event_t.Initialize(l_event_t);

1602:
1603: --
1604: -- initialize the wf_event_t object
1605: --
1606: wf_event_t.Initialize(l_event_t);
1607:
1608: --
1609: -- Adding the parameters to the parameter list
1610: --

Line 1653: l_wf_event_t WF_EVENT_T;

1649: -------------------------------------------------------------------
1650: IS
1651:
1652: l_n_key NUMBER;
1653: l_wf_event_t WF_EVENT_T;
1654: l_wf_parameter_list_t WF_PARAMETER_LIST_T;
1655:
1656: CURSOR c_uoo( cp_n_uoo_id IN NUMBER,
1657: p_c_load_cal IN VARCHAR2,

Line 1701: -- initialize the wf_event_t object

1697: l_c_user_name fnd_user.user_name%TYPE;
1698: l_c_perm_type VARCHAR2(2000);
1699:
1700: BEGIN
1701: -- initialize the wf_event_t object
1702: --
1703: WF_EVENT_T.Initialize(l_wf_event_t);
1704: --
1705: -- set the event name

Line 1703: WF_EVENT_T.Initialize(l_wf_event_t);

1699:
1700: BEGIN
1701: -- initialize the wf_event_t object
1702: --
1703: WF_EVENT_T.Initialize(l_wf_event_t);
1704: --
1705: -- set the event name
1706: --
1707: l_wf_event_t.setEventName( pEventName => 'oracle.apps.igs.en.withdraw_perm');

Line 1707: l_wf_event_t.setEventName( pEventName => 'oracle.apps.igs.en.withdraw_perm');

1703: WF_EVENT_T.Initialize(l_wf_event_t);
1704: --
1705: -- set the event name
1706: --
1707: l_wf_event_t.setEventName( pEventName => 'oracle.apps.igs.en.withdraw_perm');
1708: --
1709: -- event key to identify uniquely
1710: --
1711: -- set the parameter list

Line 1713: l_wf_event_t.setParameterList ( pParameterList => l_wf_parameter_list_t );

1709: -- event key to identify uniquely
1710: --
1711: -- set the parameter list
1712: --
1713: l_wf_event_t.setParameterList ( pParameterList => l_wf_parameter_list_t );
1714: --
1715: -- now add the parameters to the parameter list
1716:
1717: OPEN c_uoo(p_n_uoo_id,p_c_load_cal, p_n_load_seq_num);