DBA Data[Home] [Help]

APPS.JG_RX_IR_PKG dependencies on AP_SYSTEM_PARAMETERS

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

272: fnd_client_info.set_currency_context(p_set_of_book_id);
273: end if;
274: /* End Switch User Context */
275:
276: /* Get Sort By Alternate Option - Now this profile is moved to AP_SYSTEM_PARAMETERS table
277: if (nvl(fnd_profile.value('AP_SORT_BY_ALTERNATE'), 'N')= 'Y') then
278: h_sort_by_alternate :='Y';
279: ELSE
280: h_sort_by_alternate :='N';

Line 287: FROM AP_SYSTEM_PARAMETERS;

283:
284: begin
285: SELECT nvl(sort_by_alternate_field,'N') --Bug 5591940
286: INTO h_sort_by_alternate
287: FROM AP_SYSTEM_PARAMETERS;
288:
289: exception when others then
290: h_sort_by_alternate := 'N';
291: end;