DBA Data[Home] [Help]

APPS.AME_ATTRIBUTE_API dependencies on HR_API

Line 36: * of hr_api.userenv_lang is equivalent to the RDBMS userenv('LANG') function

32: * database will remain unchanged. If false and all validation checks pass,
33: * then the database will be modified.
34: * @param P_LANGUAGE_CODE Specifies to which language the translation values
35: * apply. You can set to the base or any installed language. The default value
36: * of hr_api.userenv_lang is equivalent to the RDBMS userenv('LANG') function
37: * value.
38: * @param P_NAME This is the unique attribute name given to an attribute
39: * while creating it.
40: * @param P_DESCRIPTION This parameter contains the description for the

Line 89: ,p_language_code in varchar2 default hr_api.userenv_lang

85: -- {End Of Comments}
86: --
87: procedure create_ame_attribute
88: (p_validate in boolean default false
89: ,p_language_code in varchar2 default hr_api.userenv_lang
90: ,p_name in varchar2
91: ,p_description in varchar2
92: ,p_attribute_type in varchar2
93: ,p_item_class_id in number

Line 201: * of hr_api.userenv_lang is equivalent to the RDBMS userenv('LANG') function

197: * database will remain unchanged. If false and all validation checks pass,
198: * then the database will be modified.
199: * @param P_LANGUAGE_CODE Specifies to which language the translation values
200: * apply. You can set to the base or any installed language. The default value
201: * of hr_api.userenv_lang is equivalent to the RDBMS userenv('LANG') function
202: * value.
203: * @param P_ATTRIBUTE_ID This uniquely identifies the attribute to be updated.
204: * @param P_DESCRIPTION This is the description of the attribute.
205: * @param P_OBJECT_VERSION_NUMBER Pass in the current version number of the

Line 226: ,p_language_code in varchar2 default hr_api.userenv_lang

222: -- {End Of Comments}
223: --
224: procedure update_ame_attribute
225: (p_validate in boolean default false
226: ,p_language_code in varchar2 default hr_api.userenv_lang
227: ,p_attribute_id in number
228: ,p_description in varchar2 default hr_api.g_varchar2
229: ,p_object_version_number in out nocopy number
230: ,p_start_date out nocopy date

Line 228: ,p_description in varchar2 default hr_api.g_varchar2

224: procedure update_ame_attribute
225: (p_validate in boolean default false
226: ,p_language_code in varchar2 default hr_api.userenv_lang
227: ,p_attribute_id in number
228: ,p_description in varchar2 default hr_api.g_varchar2
229: ,p_object_version_number in out nocopy number
230: ,p_start_date out nocopy date
231: ,p_end_date out nocopy date
232: );