DBA Data[Home] [Help]

APPS.EDR_ERES_EVENT_PUB dependencies on FND_WF_EVENT

Line 29: PAYLOAD FND_WF_EVENT.PARAM_TABLE ,

25: /*
26: TYPE ERES_EVENT_REC_TYPE IS RECORD
27: ( EVENT_NAME VARCHAR2(80) ,
28: EVENT_KEY VARCHAR2(240) ,
29: PAYLOAD FND_WF_EVENT.PARAM_TABLE ,
30: ERECORD_ID NUMBER ,
31: EVENT_STATUS VARCHAR2(20)
32: );
33: */

Line 141: -- p_payload IN fnd_wf_event.param_table Required

137: -- p_event_name IN VARCHAR2(80) Optional
138: -- The event name for which the payload has to be validated
139: -- p_event_key IN VARCHAR2(240) Optional
140: -- The event key for which the payload has to be validated
141: -- p_payload IN fnd_wf_event.param_table Required
142: -- The name-value pair of parameters to be validated
143: -- p_mode IN VARCHAR2(20) Optional
144: -- The mode of validation. This can have two possible
145: -- values 'STRICT' or null. This parameter is used

Line 173: p_payload IN fnd_wf_event.param_table ,

169: x_msg_count OUT NOCOPY NUMBER ,
170: x_msg_data OUT NOCOPY VARCHAR2 ,
171: p_event_name IN VARCHAR2 default NULL ,
172: p_event_key IN VARCHAR2 default NULL ,
173: p_payload IN fnd_wf_event.param_table ,
174: p_mode IN VARCHAR2 default NULL
175: );
176:
177: -- Start of comments

Line 189: -- p_payload IN fnd_wf_event.param_table Required

185: -- IN p_event_name IN VARCHAR2(80) Optional
186: -- The event name for which the payload has to be validated
187: -- p_event_key IN VARCHAR2(240) Optional
188: -- The event key for which the payload has to be validated
189: -- p_payload IN fnd_wf_event.param_table Required
190: -- The name-value pair of parameters to be validated
191: --
192: -- RETURN :Boolean
193: -- If the payload is valid it would return TRUE else it would

Line 207: p_payload IN fnd_wf_event.param_table

203:
204: FUNCTION VALIDATE_PAYLOAD_FORMS
205: ( p_event_name IN VARCHAR2 ,
206: p_event_key IN VARCHAR2 ,
207: p_payload IN fnd_wf_event.param_table
208: )
209: RETURN BOOLEAN;
210:
211: -- Start of comments