DBA Data[Home] [Help]

APPS.WMS_OP_RUNTIME_PVT_APIS dependencies on FND_NEW_MESSAGES

Line 16: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE

12: PROCEDURE insert_plan_instance(
13: p_insert_rec IN wms_op_plan_instances%ROWTYPE
14: , x_return_status OUT NOCOPY VARCHAR2
15: , x_msg_count OUT NOCOPY NUMBER
16: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE
17: );
18:
19: /**
20: *

Procedure:Update_Plan_instance

Line 31: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE

27: PROCEDURE update_plan_instance(
28: p_update_rec IN wms_op_plan_instances%ROWTYPE
29: , x_return_status OUT NOCOPY VARCHAR2
30: , x_msg_count OUT NOCOPY NUMBER
31: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE
32: );
33:
34: /**
35: *

Procedure:Delete_Plan_instance

Line 46: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE

42: PROCEDURE delete_plan_instance(
43: p_op_plan_instance_id IN NUMBER
44: , x_return_status OUT NOCOPY VARCHAR2
45: , x_msg_count OUT NOCOPY NUMBER
46: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE
47: );
48:
49: /**
50: *

Procedure:Archive_Plan_instance

Line 64: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE);

60: PROCEDURE archive_plan_instance(
61: p_op_plan_instance_id IN NUMBER
62: , x_return_status OUT NOCOPY VARCHAR2
63: , x_msg_count OUT NOCOPY NUMBER
64: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE);
65:
66: /**
67: *

Procedure:Complete_Plan_instance
68: * This procedure inserts data into the table WMS_OP_PLAN_INSTANCES.


Line 78: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE

74: PROCEDURE complete_plan_instance(
75: p_op_plan_instance_id IN NUMBER
76: , x_return_status OUT NOCOPY VARCHAR2
77: , x_msg_count OUT NOCOPY NUMBER
78: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE
79: );
80:
81: /**
82: *

Procedure:Insert_operation_instance

Line 93: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE

89: PROCEDURE insert_operation_instance(
90: p_insert_rec IN wms_op_operation_instances%ROWTYPE
91: , x_return_status OUT NOCOPY VARCHAR2
92: , x_msg_count OUT NOCOPY NUMBER
93: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE
94: );
95:
96: /**
97: *

Procedure:Update_Operation_instance

Line 108: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE

104: PROCEDURE update_operation_instance(
105: p_update_rec IN wms_op_operation_instances%ROWTYPE
106: , x_return_status OUT NOCOPY VARCHAR2
107: , x_msg_count OUT NOCOPY NUMBER
108: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE
109: );
110:
111: /**
112: *

Procedure:Delete_Operation_instance

Line 123: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE

119: PROCEDURE delete_operation_instance(
120: p_operation_instance_id NUMBER
121: , x_return_status OUT NOCOPY VARCHAR2
122: , x_msg_count OUT NOCOPY NUMBER
123: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE
124: );
125:
126:
127: /**

Line 139: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE

135: PROCEDURE update_dipatched_tasks(
136: p_wdt_rec IN wms_dispatched_tasks%ROWTYPE
137: , x_return_status OUT NOCOPY VARCHAR2
138: , x_msg_count OUT NOCOPY NUMBER
139: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE
140: );
141:
142: /**
143: *

Procedure:Insert_Dispatched_tasks

Line 157: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE

153: p_wdt_rec IN wms_dispatched_tasks%ROWTYPE
154: , p_source_task_id IN NUMBER
155: , x_return_status OUT NOCOPY VARCHAR2
156: , x_msg_count OUT NOCOPY NUMBER
157: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE
158: );
159:
160: /**
161: *

Procedure:Delete_Dispatched_taska

Line 176: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE

172: p_source_task_id IN NUMBER
173: , p_wms_task_type IN NUMBER
174: , x_return_status OUT NOCOPY VARCHAR2
175: , x_msg_count OUT NOCOPY NUMBER
176: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE
177: );
178:
179: /**
180: *

Procedure:Archive_Dispatched_tasks

Line 192: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE

188:
189: PROCEDURE archive_dispatched_tasks(
190: x_return_status OUT NOCOPY VARCHAR2
191: , x_msg_count OUT NOCOPY NUMBER
192: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE
193: , p_task_id IN NUMBER
194: , p_source_task_id IN NUMBER
195: , p_activity_type_id IN NUMBER
196: , p_op_plan_instance_id IN NUMBER

Line 207: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE

203: p_wdt_rec IN wms_dispatched_tasks%ROWTYPE
204: , p_source_task_id IN NUMBER
205: , x_return_status OUT NOCOPY VARCHAR2
206: , x_msg_count OUT NOCOPY NUMBER
207: , x_msg_data OUT NOCOPY fnd_new_messages.MESSAGE_TEXT%TYPE
208: );
209:
210:
211: END wms_op_runtime_pvt_apis;