DBA Data[Home] [Help]

APPS.WSH_CREATE_CARRIERS_PKG dependencies on FND_PROFILE

Line 151: l_hz_profile_option := fnd_profile.value('HZ_GENERATE_PARTY_NUMBER');

147:
148: -- Set the Autogenerate Party Number to 'Yes'.
149: -- Bug 7391414 Setting the profile option 'HZ GENERATE PARTY NUMBER' to Yes if it is No or Null
150: l_hz_profile_set := false;
151: l_hz_profile_option := fnd_profile.value('HZ_GENERATE_PARTY_NUMBER');
152:
153: IF (l_hz_profile_option = 'N' or l_hz_profile_option is null ) THEN
154: IF l_debug_on THEN
155: WSH_DEBUG_SV.logmsg(l_module_name,'Setting profile option HZ_GENERATE_PARTY_NUMBER to Yes');

Line 157: fnd_profile.put('HZ_GENERATE_PARTY_NUMBER','Y');

153: IF (l_hz_profile_option = 'N' or l_hz_profile_option is null ) THEN
154: IF l_debug_on THEN
155: WSH_DEBUG_SV.logmsg(l_module_name,'Setting profile option HZ_GENERATE_PARTY_NUMBER to Yes');
156: END IF;
157: fnd_profile.put('HZ_GENERATE_PARTY_NUMBER','Y');
158: l_hz_profile_set := true;
159: END IF;
160:
161:

Line 192: fnd_profile.put('HZ_GENERATE_PARTY_NUMBER',l_hz_profile_option);

188: IF l_hz_profile_set THEN
189: IF l_debug_on THEN
190: WSH_DEBUG_SV.logmsg(l_module_name,'Reverting the value of profile option HZ_GENERATE_PARTY_NUMBER');
191: END IF;
192: fnd_profile.put('HZ_GENERATE_PARTY_NUMBER',l_hz_profile_option);
193: END IF;
194:
195: IF (l_return_status <> 'S') THEN
196: x_return_status := l_return_status;