DBA Data[Home] [Help]

APPS.BOM_INVOKE_BO dependencies on ERROR_HANDLER

Line 33: -- 16-MAR-01 Masanori Kimizuka Added wrapper procedures for Error_Handlers

29: --
30: -- HISTORY
31: --
32: -- 09-MAR-01 Refai Farook Initial Creation
33: -- 16-MAR-01 Masanori Kimizuka Added wrapper procedures for Error_Handlers
34: -- and FND_GLOBALS.Apps_Initialize
35: --
36: ***************************************************************************/
37:

Line 103: -- Invoker for Error_Handler procedures/functions

99: , p_output_dir IN VARCHAR2 := NULL
100: , p_debug_filename IN VARCHAR2 := 'BOM_BO_debug.log'
101: );
102:
103: -- Invoker for Error_Handler procedures/functions
104: /*#
105: * This is the invoke call for Initialize method in Error Handler.The user should
106: * use this invoke call to initialize the message list.
107: * @see Error_Handler.Initialize

Line 105: * This is the invoke call for Initialize method in Error Handler.The user should

101: );
102:
103: -- Invoker for Error_Handler procedures/functions
104: /*#
105: * This is the invoke call for Initialize method in Error Handler.The user should
106: * use this invoke call to initialize the message list.
107: * @see Error_Handler.Initialize
108: * @rep:displayname Invoke Initialize
109: * @rep:category BUSINESS_ENTITY BOM_BILL_OF_MATERIAL

Line 107: * @see Error_Handler.Initialize

103: -- Invoker for Error_Handler procedures/functions
104: /*#
105: * This is the invoke call for Initialize method in Error Handler.The user should
106: * use this invoke call to initialize the message list.
107: * @see Error_Handler.Initialize
108: * @rep:displayname Invoke Initialize
109: * @rep:category BUSINESS_ENTITY BOM_BILL_OF_MATERIAL
110: * @rep:scope public
111: * @rep:lifecycle active

Line 116: * This is the invoke call for Reset method in Error Handler.The user should

112: * @rep:compatibility S
113: */
114: PROCEDURE Initialize;
115: /*#
116: * This is the invoke call for Reset method in Error Handler.The user should
117: * use this invoke call to reset the message list to the begining.
118: * @see Error_Handler.Reset
119: * @rep:displayname Invoke Reset
120: * @rep:category BUSINESS_ENTITY BOM_BILL_OF_MATERIAL

Line 118: * @see Error_Handler.Reset

114: PROCEDURE Initialize;
115: /*#
116: * This is the invoke call for Reset method in Error Handler.The user should
117: * use this invoke call to reset the message list to the begining.
118: * @see Error_Handler.Reset
119: * @rep:displayname Invoke Reset
120: * @rep:category BUSINESS_ENTITY BOM_BILL_OF_MATERIAL
121: * @rep:scope public
122: * @rep:lifecycle active

Line 127: * This is the invoke call for Get_Message_List in Error Handler.This invokes the

123: * @rep:compatibility S
124: */
125: PROCEDURE Reset;
126: /*#
127: * This is the invoke call for Get_Message_List in Error Handler.This invokes the
128: * error handling method which returns the entire message list for the business object.
129: * @see Error_Handler.Get_Message_List
130: * @param x_message_list OUT NOCOPY Message List
131: * @rep:scope public

Line 129: * @see Error_Handler.Get_Message_List

125: PROCEDURE Reset;
126: /*#
127: * This is the invoke call for Get_Message_List in Error Handler.This invokes the
128: * error handling method which returns the entire message list for the business object.
129: * @see Error_Handler.Get_Message_List
130: * @param x_message_list OUT NOCOPY Message List
131: * @rep:scope public
132: * @rep:lifecycle active
133: * @rep:compatibility S

Line 138: ( x_message_list OUT NOCOPY Error_Handler.Error_Tbl_Type);

134: * @rep:displayname Invoke Get Message List
135: * @rep:category BUSINESS_ENTITY BOM_BILL_OF_MATERIAL
136: */
137: PROCEDURE Get_Message_List
138: ( x_message_list OUT NOCOPY Error_Handler.Error_Tbl_Type);
139: /*#
140: * This is the invoke call for Get_Entity_Message in Error_Handler.The user should use this
141: * invoke call to enable the error handler to retrieves all Messages for the given entity
142: * @see Eror_Handler.Get_Entity_Message

Line 140: * This is the invoke call for Get_Entity_Message in Error_Handler.The user should use this

136: */
137: PROCEDURE Get_Message_List
138: ( x_message_list OUT NOCOPY Error_Handler.Error_Tbl_Type);
139: /*#
140: * This is the invoke call for Get_Entity_Message in Error_Handler.The user should use this
141: * invoke call to enable the error handler to retrieves all Messages for the given entity
142: * @see Eror_Handler.Get_Entity_Message
143: * @param p_entity_id IN Entity Id
144: * @param x_message_list OUT NOCOPY Message List

Line 141: * invoke call to enable the error handler to retrieves all Messages for the given entity

137: PROCEDURE Get_Message_List
138: ( x_message_list OUT NOCOPY Error_Handler.Error_Tbl_Type);
139: /*#
140: * This is the invoke call for Get_Entity_Message in Error_Handler.The user should use this
141: * invoke call to enable the error handler to retrieves all Messages for the given entity
142: * @see Eror_Handler.Get_Entity_Message
143: * @param p_entity_id IN Entity Id
144: * @param x_message_list OUT NOCOPY Message List
145: * @rep:scope public

Line 153: , x_message_list OUT NOCOPY Error_Handler.Error_Tbl_Type

149: * @rep:category BUSINESS_ENTITY BOM_BILL_OF_MATERIAL
150: */
151: PROCEDURE Get_Entity_Message
152: ( p_entity_id IN VARCHAR2
153: , x_message_list OUT NOCOPY Error_Handler.Error_Tbl_Type
154: );
155: /*#
156: * This is the invoke call for Get_Entity_Message in Error_Handler and it invokes
157: * the method which will retrieve a particular Message at the entity index for an entity

Line 156: * This is the invoke call for Get_Entity_Message in Error_Handler and it invokes

152: ( p_entity_id IN VARCHAR2
153: , x_message_list OUT NOCOPY Error_Handler.Error_Tbl_Type
154: );
155: /*#
156: * This is the invoke call for Get_Entity_Message in Error_Handler and it invokes
157: * the method which will retrieve a particular Message at the entity index for an entity
158: * @see Eror_Handler.Get_Entity_Message
159: * @param p_entity_id IN Entity Id
160: * @param p_entity_index Entity Index

Line 174: * This is the invoke call for Delete_Message in Error_Handler.The user invokes the

170: , p_entity_index IN NUMBER
171: , x_message_text OUT NOCOPY VARCHAR2
172: );
173: /*#
174: * This is the invoke call for Delete_Message in Error_Handler.The user invokes the
175: * error handler method which deletes a particular Messages for an entity at the entity index given
176: * with this call.
177: * @see Eror_Handler.Delete_Message
178: * @param p_entity_id IN Entity Id

Line 175: * error handler method which deletes a particular Messages for an entity at the entity index given

171: , x_message_text OUT NOCOPY VARCHAR2
172: );
173: /*#
174: * This is the invoke call for Delete_Message in Error_Handler.The user invokes the
175: * error handler method which deletes a particular Messages for an entity at the entity index given
176: * with this call.
177: * @see Eror_Handler.Delete_Message
178: * @param p_entity_id IN Entity Id
179: * @param p_entity_index IN Entity Index

Line 191: * This is the invoke call for Delete_Message in Error_Handler.This will invoke the Error_Handler

187: ( p_entity_id IN VARCHAR2
188: , p_entity_index IN NUMBER
189: );
190: /*#
191: * This is the invoke call for Delete_Message in Error_Handler.This will invoke the Error_Handler
192: * method which deletes all Messages for the specified entity.
193: * @see Eror_Handler.Delete_Message
194: * @param p_entity_id IN Entity Id
195: * @rep:scope public

Line 204: * This is the invoke call for the Get_Message in Error_Handler.This invokes the

200: */
201: PROCEDURE Delete_Message
202: ( p_entity_id IN VARCHAR2 );
203: /*#
204: * This is the invoke call for the Get_Message in Error_Handler.This invokes the
205: * Error_Handler to retrieve message from the Message List
206: * @see Error_Handler.Get_Message
207: * @param x_message_text OUT NOCOPY Message Text
208: * @param x_entity_index OUT NOCOPY Entity Index

Line 205: * Error_Handler to retrieve message from the Message List

201: PROCEDURE Delete_Message
202: ( p_entity_id IN VARCHAR2 );
203: /*#
204: * This is the invoke call for the Get_Message in Error_Handler.This invokes the
205: * Error_Handler to retrieve message from the Message List
206: * @see Error_Handler.Get_Message
207: * @param x_message_text OUT NOCOPY Message Text
208: * @param x_entity_index OUT NOCOPY Entity Index
209: * @param x_entity_id OUT NOCOPY Entity Id

Line 206: * @see Error_Handler.Get_Message

202: ( p_entity_id IN VARCHAR2 );
203: /*#
204: * This is the invoke call for the Get_Message in Error_Handler.This invokes the
205: * Error_Handler to retrieve message from the Message List
206: * @see Error_Handler.Get_Message
207: * @param x_message_text OUT NOCOPY Message Text
208: * @param x_entity_index OUT NOCOPY Entity Index
209: * @param x_entity_id OUT NOCOPY Entity Id
210: * @param x_message_type OUT NOCOPY Message Type

Line 224: * This is the invoke call for the Get_Message_Count function in Error_Handler.The user should use this

220: , x_entity_id OUT NOCOPY VARCHAR2
221: , x_message_type OUT NOCOPY VARCHAR2
222: );
223: /*#
224: * This is the invoke call for the Get_Message_Count function in Error_Handler.The user should use this
225: * invoke call to get the number of curretn messages in Message List.
226: * @return Message Count
227: * @see Error_Handler.Get_Message_Count
228: * @rep:displayname Invoke Get Message Count

Line 227: * @see Error_Handler.Get_Message_Count

223: /*#
224: * This is the invoke call for the Get_Message_Count function in Error_Handler.The user should use this
225: * invoke call to get the number of curretn messages in Message List.
226: * @return Message Count
227: * @see Error_Handler.Get_Message_Count
228: * @rep:displayname Invoke Get Message Count
229: * @rep:category BUSINESS_ENTITY BOM_BILL_OF_MATERIAL
230: */
231:

Line 234: * This is the invoke call for the Dump_Message in Error Handler.This invoke call enables the

230: */
231:
232: FUNCTION Get_Message_Count RETURN NUMBER;
233: /*#
234: * This is the invoke call for the Dump_Message in Error Handler.This invoke call enables the
235: * Error_Handler to create a dump of message using dbms output.
236: * @see Error_Handler.Dump_Message_List
237: * @rep:displayname Invoke Get Message Count
238: * @rep:category BUSINESS_ENTITY BOM_BILL_OF_MATERIAL

Line 235: * Error_Handler to create a dump of message using dbms output.

231:
232: FUNCTION Get_Message_Count RETURN NUMBER;
233: /*#
234: * This is the invoke call for the Dump_Message in Error Handler.This invoke call enables the
235: * Error_Handler to create a dump of message using dbms output.
236: * @see Error_Handler.Dump_Message_List
237: * @rep:displayname Invoke Get Message Count
238: * @rep:category BUSINESS_ENTITY BOM_BILL_OF_MATERIAL
239: */

Line 236: * @see Error_Handler.Dump_Message_List

232: FUNCTION Get_Message_Count RETURN NUMBER;
233: /*#
234: * This is the invoke call for the Dump_Message in Error Handler.This invoke call enables the
235: * Error_Handler to create a dump of message using dbms output.
236: * @see Error_Handler.Dump_Message_List
237: * @rep:displayname Invoke Get Message Count
238: * @rep:category BUSINESS_ENTITY BOM_BILL_OF_MATERIAL
239: */
240: PROCEDURE Dump_Message_List;