DBA Data[Home] [Help]

APPS.INV_TM dependencies on INV_TM

Line 1: PACKAGE BODY inv_tm AS

1: PACKAGE BODY inv_tm AS
2: /* $Header: INVTMB.pls 120.1 2005/07/01 13:07:05 appldev ship $ */
3: -- FUNCTION launch
4: -- This function would call the inventory concurrent manager
5: -- to process a transaction in synchronous mode.

Line 113: fnd_message.set_name('INV', 'INV_TM_TIME_OUT');

109:
110: --rc_field := rtvl;
111: IF rtvl = 1 THEN
112: -- FND_Message.debug('Remote Call Failed: Timed-Out');
113: fnd_message.set_name('INV', 'INV_TM_TIME_OUT');
114: fnd_msg_pub.add;
115: -- dbms_output.put_line(fnd_message.get);
116: -- dbms_output.put_line('timeout');
117: RETURN (FALSE);

Line 122: fnd_message.set_name('INV', 'INV_TM_MGR_NOT_AVAIL');

118: ELSIF rtvl = 2 THEN
119: -- FND_Message.debug('Remote Call Failed: Manager Unavailable');
120: -- dbms_output.put_line('Error in INVTM: '|| fnd_message.get);
121: -- dbms_output.put_line('no meessage from dbms_pipe, manager unavailable');
122: fnd_message.set_name('INV', 'INV_TM_MGR_NOT_AVAIL');
123: fnd_msg_pub.add;
124: RETURN (FALSE);
125: ELSIF rtvl = 3 THEN
126: fnd_message.set_name('FND','CONC-DG-Inactive No Manager');

Line 180: END inv_tm;

176: ELSE
177: RETURN (FALSE);
178: END IF;
179: END launch;
180: END inv_tm;