DBA Data[Home] [Help]

APPS.IBE_SEARCH_SETUP_PVT dependencies on FND_PROFILE

Line 248: l_use_category_search := FND_PROFILE.VALUE_specific('IBE_USE_CATEGORY_SEARCH',671,0,671);

244: FND_FILE.PUT_LINE(FND_FILE.LOG,' Populating search table IBE_CT_IMEDIA_SEARCH');
245: FND_FILE.PUT_LINE(FND_FILE.LOG,' This may take a while depending on how many rows');
246: FND_FILE.PUT_LINE(FND_FILE.LOG,' you have in mtl_system_items_tl table');
247:
248: l_use_category_search := FND_PROFILE.VALUE_specific('IBE_USE_CATEGORY_SEARCH',671,0,671);
249:
250: /* Profile for fuzzy search is defaulted to 'No' so if found to be null
251: it is set to 'No' in the next line
252: */

Line 254: l_use_fuzzy_search := FND_PROFILE.VALUE_specific('IBE_FUZZY_SEARCH',671,0,671);

250: /* Profile for fuzzy search is defaulted to 'No' so if found to be null
251: it is set to 'No' in the next line
252: */
253:
254: l_use_fuzzy_search := FND_PROFILE.VALUE_specific('IBE_FUZZY_SEARCH',671,0,671);
255:
256: if(l_use_fuzzy_search is null )
257: then
258: l_use_fuzzy_search := 'N' ;

Line 269: l_search_category_set := FND_PROFILE.VALUE_specific('IBE_SEARCH_CATEGORY_SET',671,0,671);

265: if (G_TEST_FLAG_ON) --{
266: then
267: l_search_category_set := G_TEST_SEARCH_CATEGORY_SET;
268: else
269: l_search_category_set := FND_PROFILE.VALUE_specific('IBE_SEARCH_CATEGORY_SET',671,0,671);
270: end if; --}
271:
272: --Get product status profile IBE_SEARCH_WEB_STATUS;
273: if (G_TEST_FLAG_ON)

Line 277: l_search_web_status := FND_PROFILE.VALUE_specific('IBE_SEARCH_WEB_STATUS',671,0,671);

273: if (G_TEST_FLAG_ON)
274: then
275: l_search_web_status := G_TEST_SEARCH_WEB_STATUS;
276: else
277: l_search_web_status := FND_PROFILE.VALUE_specific('IBE_SEARCH_WEB_STATUS',671,0,671);
278: end if; --}
279:
280: FND_FILE.PUT_LINE(FND_FILE.LOG,' IBE_SEARCH_CATEGORY_SET = ' || l_search_category_set);
281: FND_FILE.PUT_LINE(FND_FILE.LOG,' IBE_SEARCH_WEB_STATUS = ' || l_search_web_status);