DBA Data[Home] [Help]

APPS.HR_KI_OPTION_TYPES_API dependencies on HR_API

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

36: * database will remain unchanged. If false and all validation checks pass,
37: * then the database will be modified.
38: * @param p_language_code Specifies to which language the translation values
39: * apply. You can set to the base or any installed language. The default value
40: * of hr_api.userenv_lang is equivalent to the RDBMS userenv('LANG') function
41: * value.
42: * @param p_option_type_key Unique key to identify the record.
43: * @param p_display_type The display name that will be visible in the UI.
44: * @param p_option_name Name of the option type to be created.

Line 63: ,p_language_code in varchar2 default hr_api.userenv_lang

59: -- {End Of Comments}
60: --
61: procedure create_option_type
62: (p_validate in boolean default false
63: ,p_language_code in varchar2 default hr_api.userenv_lang
64: ,p_option_type_key in varchar2
65: ,p_display_type in varchar2
66: ,p_option_name in varchar2
67: ,p_option_type_id out nocopy number

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

96: * database will remain unchanged. If false and all validation checks pass,
97: * then the database will be modified.
98: * @param p_language_code Specifies to which language the translation values
99: * apply. You can set to the base or any installed language. The default value
100: * of hr_api.userenv_lang is equivalent to the RDBMS userenv('LANG') function
101: * value.
102: * @param p_display_type The display name that will be visible in the UI.
103: * @param p_option_name Name of the option type to be updated.
104: * @param p_option_type_id Unique internal identifier for the record to be

Line 123: ,p_language_code in varchar2 default hr_api.userenv_lang

119: -- {End Of Comments}
120: --
121: procedure update_option_type
122: (p_validate in boolean default false
123: ,p_language_code in varchar2 default hr_api.userenv_lang
124: ,p_display_type in varchar2 default hr_api.g_varchar2
125: ,p_option_name in varchar2 default hr_api.g_varchar2
126: ,p_option_type_id in number
127: ,p_object_version_number in out nocopy number

Line 124: ,p_display_type in varchar2 default hr_api.g_varchar2

120: --
121: procedure update_option_type
122: (p_validate in boolean default false
123: ,p_language_code in varchar2 default hr_api.userenv_lang
124: ,p_display_type in varchar2 default hr_api.g_varchar2
125: ,p_option_name in varchar2 default hr_api.g_varchar2
126: ,p_option_type_id in number
127: ,p_object_version_number in out nocopy number
128: );

Line 125: ,p_option_name in varchar2 default hr_api.g_varchar2

121: procedure update_option_type
122: (p_validate in boolean default false
123: ,p_language_code in varchar2 default hr_api.userenv_lang
124: ,p_display_type in varchar2 default hr_api.g_varchar2
125: ,p_option_name in varchar2 default hr_api.g_varchar2
126: ,p_option_type_id in number
127: ,p_object_version_number in out nocopy number
128: );
129: --