mdvorkinNov 19, 20202 min readNLS_LANG during Export/Import1. How does NLS affect import/export? Import and export are client products, in the same way as SQL*Plus or Oracle Forms, and will...
mdvorkinNov 19, 20201 min readUser's Active Responsibilities-- Change SYSADMIN to whatever you need select distinct u.user_name, r.responsibility_name, g.start_date, g.end_date from...
mdvorkinNov 19, 20201 min readCancel Concurrent RequestCancell all requests submitted by a user -- Change user name to whatever you need update FND_CONCURRENT_REQUESTS set phase_code = 'C',...
mdvorkinNov 19, 20202 min readScheduled Concurrent Requestsselect s.user_name, per.full_name, p.user_concurrent_program_name || nvl2(r.description,' ('||r.description||')',null) program,...
mdvorkinNov 19, 20201 min readMail Preferences-- Change user name to whatever you need update fnd_user_preferences set preference_value = 'MAILHTM2' where preference_name = 'MAILTYPE'...
mdvorkinNov 19, 20201 min readCompile JSPcd $OA_HTML # Change JSP file name (OracleOasis.jsp) to whatever you need perl $FND_TOP/patch/115/bin/ojspCompile.pl --compile -s...
mdvorkinNov 19, 20201 min readAdd LOV to a Profile1. Define custom lookup XXX_TEST_LOOKUP (Application Developer --> Lookups) 2. Define custom profile (Application Developer --> Profiles)...
mdvorkinNov 19, 20201 min readSet up a database session for manually testing application code using SQL*Plusdeclare m_user_id number := 0; m_resp_id number := 0; m_resp_appl_id number := 0; begin -- Change responibility name to whatever you need...