DBA Data[Home] [Help]

APPS.MTH_UTIL_PKG dependencies on FND_PROFILE

Line 993: select fnd_profile.value(p_profile_name) into v_profile_value from dual;

989: --Initialize the session for default values -1.
990: /* fnd_global.apps_initialize(v_uid, v_rid, v_applid); */
991:
992: --select the value of the profile into the local variable.
993: select fnd_profile.value(p_profile_name) into v_profile_value from dual;
994:
995: --Return the value.
996: RETURN(v_profile_value);
997:

Line 1022: v_profile := FND_PROFILE.VALUE('MTH_UDA_EQUIPMENT_PROFILE');

1018:
1019: BEGIN
1020:
1021: -- Get the profile value, it will be of form h_id:level_no
1022: v_profile := FND_PROFILE.VALUE('MTH_UDA_EQUIPMENT_PROFILE');
1023:
1024: -- based on the position of :, retrieve h_id
1025: v_pos := INSTR(v_profile,':');
1026: v_hId := SUBSTR(v_profile,1,v_pos-1);

Line 1056: v_profile := FND_PROFILE.VALUE('MTH_UDA_EQUIPMENT_PROFILE');

1052:
1053: BEGIN
1054:
1055: -- Get the profile value, it will be of form h_id:level_no
1056: v_profile := FND_PROFILE.VALUE('MTH_UDA_EQUIPMENT_PROFILE');
1057:
1058: -- based on the position of :, retrieve h_id
1059: v_pos := INSTR(v_profile,':');
1060: v_length := LENGTH(v_profile);