DBA Data[Home] [Help]

APPS.JG_RX_IR_PKG dependencies on AP_SYSTEM_PARAMETERS

Line 305: /* Get Sort By Alternate Option - Now this profile is moved to AP_SYSTEM_PARAMETERS table

301: fnd_client_info.set_currency_context(h_set_of_books_id);
302: end if;
303: /* End Switch User Context */
304:
305: /* Get Sort By Alternate Option - Now this profile is moved to AP_SYSTEM_PARAMETERS table
306: if (nvl(fnd_profile.value('AP_SORT_BY_ALTERNATE'), 'N')= 'Y') then
307: h_sort_by_alternate :='Y';
308: ELSE
309: h_sort_by_alternate :='N';

Line 316: FROM AP_SYSTEM_PARAMETERS;

312:
313: begin
314: SELECT nvl(sort_by_alternate_field,'N') --Bug 5591940
315: INTO h_sort_by_alternate
316: FROM AP_SYSTEM_PARAMETERS;
317:
318: exception when others then
319: h_sort_by_alternate := 'N';
320: end;