DBA Data[Home] [Help]

APPS.CSE_COST_COLLECTOR dependencies on FND_GLOBAL

Line 10: IF nvl(fnd_global.conc_request_id, -1) <> -1 THEN

6: PROCEDURE debug(p_message IN varchar2) IS
7: BEGIN
8: IF (l_debug = 'Y') THEN
9: cse_debug_pub.add (p_message);
10: IF nvl(fnd_global.conc_request_id, -1) <> -1 THEN
11: fnd_file.put_line(fnd_file.log,p_message);
12: END IF;
13: END IF;
14: EXCEPTION

Line 228: l_user_id := fnd_global.user_id ;

224: cse_util_pkg.check_item_trackable(p_inventory_item_id, l_eib_trackable_flag);
225:
226: IF l_eib_trackable_flag = 'TRUE' AND l_txn_source_type_id IS NOT NULL AND p_cost_element_id = 1 THEN
227:
228: l_user_id := fnd_global.user_id ;
229:
230: OPEN org_name_cur(p_exp_org_id);
231: FETCH org_name_cur INTO l_org_name ;
232: CLOSE org_name_cur ;

Line 526: l_user_id := fnd_global.user_id ;

522: BEGIN
523: cse_util_pkg.write_log('Reversing the expenditures, for serialized items which are
524: being returned from Installed location');
525:
526: l_user_id := fnd_global.user_id ;
527: SELECT sysdate INTO l_sysdate FROM sys.dual ;
528: i := 0;
529: FOR csi_txn_rec IN csi_txn_cur
530: LOOP