DBA Data[Home] [Help]

APPS.EGO_COMMON_PVT dependencies on FND_PROFILE

Line 102: FROM FND_PROFILE_OPTIONS

98: X_RETURN_STATUS := 'S';
99:
100: --first get the profile option name given the profile option id
101: SELECT PROFILE_OPTION_NAME INTO L_PROFILE_OPTION_NAME
102: FROM FND_PROFILE_OPTIONS
103: WHERE PROFILE_OPTION_ID = P_PROFILE_OPTION_ID;
104:
105:
106: IF(P_MODE = 'delete') THEN

Line 133: L_FND_RETURN_STATUS := FND_PROFILE.SAVE_USER( L_PROFILE_OPTION_NAME

129: END IF;
130:
131: --now this is the profile we need to update. so call FND API to do that.
132: L_FND_RETURN_STATUS := FALSE;
133: L_FND_RETURN_STATUS := FND_PROFILE.SAVE_USER( L_PROFILE_OPTION_NAME
134: ,P_PROFILE_OPTION_VALUE
135: );
136: IF(L_FND_RETURN_STATUS) THEN
137: X_RETURN_STATUS := 'S';