DBA Data[Home] [Help]

APPS.WF_ITEM_TYPES_VL_PUB dependencies on WF_CORE

Line 69: Wf_Core.Context('wf_item_types_vl_pub', 'fetch_item_type', p_name);

65: WHERE name = p_name;
66:
67: EXCEPTION
68: WHEN OTHERS THEN
69: Wf_Core.Context('wf_item_types_vl_pub', 'fetch_item_type', p_name);
70: wf_item_definition.Error;
71:
72: END fetch_item_type;
73:

Line 117: Wf_Core.Context('wf_item_types_vl_pub', 'draw_item_type_list');

113: END LOOP;
114:
115: EXCEPTION
116: WHEN OTHERS THEN
117: Wf_Core.Context('wf_item_types_vl_pub', 'draw_item_type_list');
118: wf_item_definition.Error;
119:
120: END draw_item_type_list;
121:

Line 146: wf_core.translate('WFITD_ITEM_TYPE_DETAILS'),

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: /*
150: ** Print out all item attribute display names in the pl*sql table

Line 159: summary="' || wf_core.translate('WFITD_ITEM_TYPE_DETAILS') || '"');

155: ** Open a new table for each item_type so you can control the spacing
156: ** between each attribute
157: */
158: htp.tableOpen(cattributes=>'border=0 cellpadding=2 cellspacing=0
159: summary="' || wf_core.translate('WFITD_ITEM_TYPE_DETAILS') || '"');
160:
161: /*
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

Line 170: wf_core.translate('WFITD_ITEM_TYPE_NAME'),

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'),
171: 0);
172:
173: /*
174: ** Create the internal name row in the table.

Line 177: wf_core.translate('WFITD_INTERNAL_NAME'),

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: /*
181: ** Create the description row in the table

Line 184: wf_core.translate('DESCRIPTION'),

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: /*
188: ** Create the selector row in the table

Line 191: wf_core.translate('WFITD_SELECTOR'),

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: /*
195: ** Call function to print the read/write/execute roles

Line 229: Wf_Core.Context('wf_item_types_vl_pub', 'draw_item_type_details');

225: END LOOP;
226:
227: EXCEPTION
228: WHEN OTHERS THEN
229: Wf_Core.Context('wf_item_types_vl_pub', 'draw_item_type_details');
230: wf_item_definition.Error;
231:
232: END draw_item_type_details;
233: