DBA Data[Home] [Help]

APPS.OKL_GENERATE_ACCRUALS_PVT dependencies on FND_GLOBAL

Line 2172: ,last_updated_by = FND_GLOBAL.USER_ID -- bug:14742784 Change Starts here

2168: -- Do bulk update
2169: FORALL i IN l_selv_tbl.FIRST..l_selv_tbl.LAST
2170: UPDATE okl_strm_elements
2171: SET accrued_yn = 'Y'
2172: ,last_updated_by = FND_GLOBAL.USER_ID -- bug:14742784 Change Starts here
2173: ,last_update_date = sysdate
2174: ,last_update_login = FND_GLOBAL.LOGIN_ID -- bug:14742784 change ends here
2175: where id = l_selv_tbl(i);
2176:

Line 2174: ,last_update_login = FND_GLOBAL.LOGIN_ID -- bug:14742784 change ends here

2170: UPDATE okl_strm_elements
2171: SET accrued_yn = 'Y'
2172: ,last_updated_by = FND_GLOBAL.USER_ID -- bug:14742784 Change Starts here
2173: ,last_update_date = sysdate
2174: ,last_update_login = FND_GLOBAL.LOGIN_ID -- bug:14742784 change ends here
2175: where id = l_selv_tbl(i);
2176:
2177: --
2178: -- Bug 4662173. Commenting below call for performance reasons.