DBA Data[Home] [Help]

APPS.IBE_M_AUTOPLACEMENT_PVT dependencies on FND_PROFILE

Line 29: l_debug := NVL(FND_PROFILE.VALUE('IBE_DEBUG'),'N');

25: IS
26: l_debug VARCHAR2(1);
27:
28: BEGIN
29: l_debug := NVL(FND_PROFILE.VALUE('IBE_DEBUG'),'N');
30:
31: IF g_debug_flag = 'Y' THEN
32: FND_FILE.PUT_LINE(FND_FILE.LOG,p_debug_str);
33: END IF;

Line 813: := FND_PROFILE.VALUE_SPECIFIC('IBE_AUTO_PLACEMENT_CATEGORY_SET',

809:
810: BEGIN
811: g_index := 1;
812: l_category_set_id_str
813: := FND_PROFILE.VALUE_SPECIFIC('IBE_AUTO_PLACEMENT_CATEGORY_SET',
814: null, null, 671);
815: printDebuglog('Category set='||l_category_set_id_str);
816: IF (l_category_set_id_str IS NULL) THEN
817: l_category_set_id_str

Line 818: := FND_PROFILE.VALUE_SPECIFIC('IBE_CATEGORY_SET', null, null, 671);

814: null, null, 671);
815: printDebuglog('Category set='||l_category_set_id_str);
816: IF (l_category_set_id_str IS NULL) THEN
817: l_category_set_id_str
818: := FND_PROFILE.VALUE_SPECIFIC('IBE_CATEGORY_SET', null, null, 671);
819: printDebuglog('Category set from IBE_CATEGORY_SET'||l_category_set_id_str);
820: END IF;
821: l_category_set_id := to_number(l_category_set_id_str);
822: l_organization_id_str

Line 823: := FND_PROFILE.VALUE_SPECIFIC('IBE_ITEM_VALIDATION_ORGANIZATION',

819: printDebuglog('Category set from IBE_CATEGORY_SET'||l_category_set_id_str);
820: END IF;
821: l_category_set_id := to_number(l_category_set_id_str);
822: l_organization_id_str
823: := FND_PROFILE.VALUE_SPECIFIC('IBE_ITEM_VALIDATION_ORGANIZATION',
824: null, null, 671);
825: IF (l_organization_id_str IS NULL) THEN
826: RAISE FND_API.G_EXC_ERROR;
827: ELSE