DBA Data[Home] [Help]

APPS.IEM_DIAG_UTILS_PVT dependencies on FND_PROFILE

Line 19: if (FND_PROFILE.VALUE('IEM_DEFAULT_CUSTOMER_NUMBER') is null or FND_PROFILE.VALUE('IEM_DEFAULT_CUSTOMER_ID') is null) then

15: BEGIN
16:
17:
18: -- Check if user has entered an default customer number in Profile
19: if (FND_PROFILE.VALUE('IEM_DEFAULT_CUSTOMER_NUMBER') is null or FND_PROFILE.VALUE('IEM_DEFAULT_CUSTOMER_ID') is null) then
20: l_cust_prof_null := 'true';
21: end if;
22:
23: -- Check if user has entered an default resource number in Profile

Line 24: if (FND_PROFILE.VALUE('IEM_SRVR_ARES') is null or FND_PROFILE.VALUE('IEM_DEFAULT_RESOURCE_NUMBER') is null) then

20: l_cust_prof_null := 'true';
21: end if;
22:
23: -- Check if user has entered an default resource number in Profile
24: if (FND_PROFILE.VALUE('IEM_SRVR_ARES') is null or FND_PROFILE.VALUE('IEM_DEFAULT_RESOURCE_NUMBER') is null) then
25: l_resource_prof_null := 'true';
26: end if;
27:
28: x_customer_num_isnull := l_cust_prof_null;