DBA Data[Home] [Help]

APPS.OKL_LA_STREAM_PVT dependencies on FND_GLOBAL

Line 7101: last_updated_by = FND_GLOBAL.USER_ID, -- BUG:14749215 changes start here

7097: UPDATE OKL_STREAMS
7098: SET say_code = 'HIST',
7099: active_yn = 'N',
7100: date_history = sysdate,
7101: last_updated_by = FND_GLOBAL.USER_ID, -- BUG:14749215 changes start here
7102: last_update_date = sysdate,
7103: last_update_login = FND_GLOBAL.LOGIN_ID -- BUG:14749215 changes end here
7104: WHERE ID = streams_rec.STREAM_ID;
7105: END LOOP;

Line 7103: last_update_login = FND_GLOBAL.LOGIN_ID -- BUG:14749215 changes end here

7099: active_yn = 'N',
7100: date_history = sysdate,
7101: last_updated_by = FND_GLOBAL.USER_ID, -- BUG:14749215 changes start here
7102: last_update_date = sysdate,
7103: last_update_login = FND_GLOBAL.LOGIN_ID -- BUG:14749215 changes end here
7104: WHERE ID = streams_rec.STREAM_ID;
7105: END LOOP;
7106: END LOOP;
7107: END IF;

Line 7600: last_updated_by = FND_GLOBAL.USER_ID, -- BUG:14749215 changes start here

7596: SET say_code = l_say_code_tbl(i),
7597: active_yn = l_active_yn_tbl(i),
7598: date_history = l_date_history_tbl(i),
7599: date_current = l_date_curr_tbl(i),
7600: last_updated_by = FND_GLOBAL.USER_ID, -- BUG:14749215 changes start here
7601: last_update_date = sysdate,
7602: last_update_login = FND_GLOBAL.LOGIN_ID -- BUG:14749215 changes end here
7603: WHERE ID = l_id_tbl(i);
7604:

Line 7602: last_update_login = FND_GLOBAL.LOGIN_ID -- BUG:14749215 changes end here

7598: date_history = l_date_history_tbl(i),
7599: date_current = l_date_curr_tbl(i),
7600: last_updated_by = FND_GLOBAL.USER_ID, -- BUG:14749215 changes start here
7601: last_update_date = sysdate,
7602: last_update_login = FND_GLOBAL.LOGIN_ID -- BUG:14749215 changes end here
7603: WHERE ID = l_id_tbl(i);
7604:
7605: --Added by kthiruva for Debugging
7606: write_to_log('Statuses updated successfully');

Line 9130: last_updated_by = FND_GLOBAL.USER_ID, -- BUG:14749215 changes start here

9126: UPDATE OKL_STREAMS
9127: SET say_code = 'HIST',
9128: active_yn = 'N',
9129: date_history = sysdate,
9130: last_updated_by = FND_GLOBAL.USER_ID, -- BUG:14749215 changes start here
9131: last_update_date = sysdate,
9132: last_update_login = FND_GLOBAL.LOGIN_ID -- BUG:14749215 changes end here
9133: WHERE ID = l_id_tbl(i);
9134: write_to_log('Streams historised successfully');

Line 9132: last_update_login = FND_GLOBAL.LOGIN_ID -- BUG:14749215 changes end here

9128: active_yn = 'N',
9129: date_history = sysdate,
9130: last_updated_by = FND_GLOBAL.USER_ID, -- BUG:14749215 changes start here
9131: last_update_date = sysdate,
9132: last_update_login = FND_GLOBAL.LOGIN_ID -- BUG:14749215 changes end here
9133: WHERE ID = l_id_tbl(i);
9134: write_to_log('Streams historised successfully');
9135:
9136: EXCEPTION

Line 23300: last_updated_by = FND_GLOBAL.USER_ID, -- BUG:14749215 changes start here

23296: UPDATE OKL_STREAMS
23297: SET say_code = 'CURR',
23298: active_yn = 'Y',
23299: date_current = sysdate,
23300: last_updated_by = FND_GLOBAL.USER_ID, -- BUG:14749215 changes start here
23301: last_update_date = sysdate,
23302: last_update_login = FND_GLOBAL.LOGIN_ID -- BUG:14749215 changes end here
23303: WHERE ID = l_id_tbl(i);
23304:

Line 23302: last_update_login = FND_GLOBAL.LOGIN_ID -- BUG:14749215 changes end here

23298: active_yn = 'Y',
23299: date_current = sysdate,
23300: last_updated_by = FND_GLOBAL.USER_ID, -- BUG:14749215 changes start here
23301: last_update_date = sysdate,
23302: last_update_login = FND_GLOBAL.LOGIN_ID -- BUG:14749215 changes end here
23303: WHERE ID = l_id_tbl(i);
23304:
23305: --Added by kthiruva for Debugging
23306: write_to_log('Streams updated succesfully');