DBA Data[Home] [Help]

APPS.BOM_BUSINESS_EVENT_PKG dependencies on WF_PARAMETER_LIST_T

Line 14: | raise_Event method. wf_parameter_list_t can be initialized |

10: | User of this API would use one of the defined constants |
11: | and call the raise event with the necessary parameters |
12: | Any Event that requires parameters must first call the |
13: | first call the Add_Parameter_To_List and then call the |
14: | raise_Event method. wf_parameter_list_t can be initialized |
15: | as := wf_parameter_list_t() |
16: | History: |
17: |-------- |
18: | 01-Sept-2003 Rahul Chitko Initial Creation |

Line 15: | as := wf_parameter_list_t() |

11: | and call the raise event with the necessary parameters |
12: | Any Event that requires parameters must first call the |
13: | first call the Add_Parameter_To_List and then call the |
14: | raise_Event method. wf_parameter_list_t can be initialized |
15: | as := wf_parameter_list_t() |
16: | History: |
17: |-------- |
18: | 01-Sept-2003 Rahul Chitko Initial Creation |
19: +==========================================================================*/

Line 50: , p_Parameter_List IN OUT NOCOPY wf_parameter_list_t

46: /* Added for bug 8462879*/
47: G_SUBSCRIPTION_EXC EXCEPTION; --Subscription Exception defined
48: PROCEDURE Raise_Event( p_Event_Name IN VARCHAR2
49: , p_Event_Key IN VARCHAR2
50: , p_Parameter_List IN OUT NOCOPY wf_parameter_list_t
51: );
52:
53: PROCEDURE Add_Parameter_To_List( p_Parameter_Name IN VARCHAR2
54: , p_Value IN VARCHAR2

Line 55: , p_parameter_List IN OUT NOCOPY wf_parameter_list_t

51: );
52:
53: PROCEDURE Add_Parameter_To_List( p_Parameter_Name IN VARCHAR2
54: , p_Value IN VARCHAR2
55: , p_parameter_List IN OUT NOCOPY wf_parameter_list_t
56: );
57:
58: /* Utility procedures */
59: