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 49: , p_Parameter_List IN OUT NOCOPY wf_parameter_list_t

45: G_COMPONENT_ADDED_EVENT CONSTANT VARCHAR2(240) := 'oracle.apps.bom.component.created';
46:
47: PROCEDURE Raise_Event( p_Event_Name IN VARCHAR2
48: , p_Event_Key IN VARCHAR2
49: , p_Parameter_List IN OUT NOCOPY wf_parameter_list_t
50: );
51:
52: PROCEDURE Add_Parameter_To_List( p_Parameter_Name IN VARCHAR2
53: , p_Value IN VARCHAR2

Line 54: , p_parameter_List IN OUT NOCOPY wf_parameter_list_t

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