DBA Data[Home] [Help]

APPS.XNP_CORE dependencies on FND_PROFILE

Line 300: fnd_profile.get

296:
297: l_enable_nrc_flag := g_enable_nrc_flag;
298:
299: /**
300: fnd_profile.get
301: (name => 'ENABLE_NRC'
302: ,val => l_enable_nrc_flag
303: ) ;
304: **/

Line 1263: -- fnd_profile.get

1259: -- Get the initial porting status from the profiles
1260:
1261: l_new_status_type_code := g_default_porting_status;
1262:
1263: -- fnd_profile.get
1264: -- (name => 'DEFAULT_PORTING_STATUS'
1265: -- ,val => l_new_status_type_code) ;
1266:
1267: IF (l_new_status_type_code IS null) THEN

Line 1654: --- fnd_profile.get

1650: -- Get the initial porting status from the profiles
1651:
1652: l_new_status_type_code := g_default_porting_status;
1653:
1654: --- fnd_profile.get
1655: --- (name => 'DEFAULT_PORTING_STATUS'
1656: --- ,val => l_new_status_type_code) ;
1657:
1658: IF (l_new_status_type_code IS null) THEN

Line 1931: FND_PROFILE.GET

1927:
1928: l_new_status_type_code := g_default_porting_status;
1929:
1930: /***
1931: FND_PROFILE.GET
1932: (NAME => 'DEFAULT_PORTING_STATUS'
1933: ,VAL => l_new_status_type_code) ;
1934: ***/
1935:

Line 6381: FND_PROFILE.GET(name => 'ENABLE_NRC',

6377:
6378: BEGIN
6379: BEGIN
6380:
6381: FND_PROFILE.GET(name => 'ENABLE_NRC',
6382: val => g_enable_nrc_flag);
6383:
6384: FND_PROFILE.GET(name => 'DEFAULT_PORTING_STATUS',
6385: val => g_default_porting_status);

Line 6384: FND_PROFILE.GET(name => 'DEFAULT_PORTING_STATUS',

6380:
6381: FND_PROFILE.GET(name => 'ENABLE_NRC',
6382: val => g_enable_nrc_flag);
6383:
6384: FND_PROFILE.GET(name => 'DEFAULT_PORTING_STATUS',
6385: val => g_default_porting_status);
6386:
6387: END;
6388: