DBA Data[Home] [Help]

APPS.WF_ITEM_TYPES_VL_PUB dependencies on WF_ITEM_DEFINITION_UTIL_PUB

Line 104: wf_item_definition_util_pub.create_hotlink_to_details (

100: ** The creation of the anchor from the summary frame to the detail
101: ** frame was very complex so I've extracted the function into its
102: ** own routine.
103: */
104: wf_item_definition_util_pub.create_hotlink_to_details (
105: p_wf_item_types_vl_tbl(l_record_num).name,
106: p_effective_date,
107: 'ITEM_TYPE',
108: p_wf_item_types_vl_tbl(l_record_num).name,

Line 145: wf_item_definition_util_pub.draw_detail_section_title (

141:
142: /*
143: ** Draw the section title for the item type detail section
144: */
145: wf_item_definition_util_pub.draw_detail_section_title (
146: wf_core.translate('WFITD_ITEM_TYPE_DETAILS'),
147: 0);
148:
149: /*

Line 166: wf_item_definition_util_pub.create_details_hotlink_target (

162: ** Create the target for the hotlink from the summary view. Also
163: ** create the first row in the table which is always the display
164: ** name for the object.
165: */
166: wf_item_definition_util_pub.create_details_hotlink_target (
167: 'ITEM_TYPE',
168: p_wf_item_types_vl_tbl(l_record_num).name,
169: p_wf_item_types_vl_tbl(l_record_num).display_name,
170: wf_core.translate('WFITD_ITEM_TYPE_NAME'),

Line 176: wf_item_definition_util_pub.draw_detail_prompt_value_pair (

172:
173: /*
174: ** Create the internal name row in the table.
175: */
176: wf_item_definition_util_pub.draw_detail_prompt_value_pair (
177: wf_core.translate('WFITD_INTERNAL_NAME'),
178: p_wf_item_types_vl_tbl(l_record_num).name);
179:
180: /*

Line 183: wf_item_definition_util_pub.draw_detail_prompt_value_pair (

179:
180: /*
181: ** Create the description row in the table
182: */
183: wf_item_definition_util_pub.draw_detail_prompt_value_pair (
184: wf_core.translate('DESCRIPTION'),
185: p_wf_item_types_vl_tbl(l_record_num).description);
186:
187: /*

Line 190: wf_item_definition_util_pub.draw_detail_prompt_value_pair (

186:
187: /*
188: ** Create the selector row in the table
189: */
190: wf_item_definition_util_pub.draw_detail_prompt_value_pair (
191: wf_core.translate('WFITD_SELECTOR'),
192: p_wf_item_types_vl_tbl(l_record_num).wf_selector);
193:
194: /*

Line 197: wf_item_definition_util_pub.draw_read_write_exe_details(

193:
194: /*
195: ** Call function to print the read/write/execute roles
196: */
197: wf_item_definition_util_pub.draw_read_write_exe_details(
198: p_wf_item_types_vl_tbl(l_record_num).read_role,
199: p_wf_item_types_vl_tbl(l_record_num).write_role,
200: p_wf_item_types_vl_tbl(l_record_num).execute_role,
201: TRUE);

Line 206: wf_item_definition_util_pub.draw_custom_protect_details(

202:
203: /*
204: ** Call function to print the customization/protection levels
205: */
206: wf_item_definition_util_pub.draw_custom_protect_details(
207: p_wf_item_types_vl_tbl(l_record_num).custom_level,
208: p_wf_item_types_vl_tbl(l_record_num).protect_level);
209:
210: /*