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 215: l_user_id := fnd_global.user_id ;

211: cse_util_pkg.check_item_trackable(p_inventory_item_id, l_eib_trackable_flag);
212:
213: IF l_eib_trackable_flag = 'TRUE' AND l_txn_source_type_id IS NOT NULL AND p_cost_element_id = 1 THEN
214:
215: l_user_id := fnd_global.user_id ;
216:
217: OPEN org_name_cur(p_exp_org_id);
218: FETCH org_name_cur INTO l_org_name ;
219: CLOSE org_name_cur ;

Line 513: l_user_id := fnd_global.user_id ;

509: BEGIN
510: cse_util_pkg.write_log('Reversing the expenditures, for serialized items which are
511: being returned from Installed location');
512:
513: l_user_id := fnd_global.user_id ;
514: SELECT sysdate INTO l_sysdate FROM sys.dual ;
515: i := 0;
516: FOR csi_txn_rec IN csi_txn_cur
517: LOOP