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 867: := FND_PROFILE.VALUE_SPECIFIC('IBE_AUTO_PLACEMENT_CATEGORY_SET',

863:
864: BEGIN
865: g_index := 1;
866: l_category_set_id_str
867: := FND_PROFILE.VALUE_SPECIFIC('IBE_AUTO_PLACEMENT_CATEGORY_SET',
868: null, null, 671);
869: printDebuglog('Category set='||l_category_set_id_str);
870: IF (l_category_set_id_str IS NULL) THEN
871: l_category_set_id_str

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

868: null, null, 671);
869: printDebuglog('Category set='||l_category_set_id_str);
870: IF (l_category_set_id_str IS NULL) THEN
871: l_category_set_id_str
872: := FND_PROFILE.VALUE_SPECIFIC('IBE_CATEGORY_SET', null, null, 671);
873: printDebuglog('Category set from IBE_CATEGORY_SET'||l_category_set_id_str);
874: END IF;
875: l_category_set_id := to_number(l_category_set_id_str);
876: l_organization_id_str

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

873: printDebuglog('Category set from IBE_CATEGORY_SET'||l_category_set_id_str);
874: END IF;
875: l_category_set_id := to_number(l_category_set_id_str);
876: l_organization_id_str
877: := FND_PROFILE.VALUE_SPECIFIC('IBE_ITEM_VALIDATION_ORGANIZATION',
878: null, null, 671);
879: IF (l_organization_id_str IS NULL) THEN
880: RAISE FND_API.G_EXC_ERROR;
881: ELSE