DBA Data[Home] [Help]

APPS.FND_DOCUMENT_MANAGEMENT dependencies on FND_DOCUMENT_MANAGEMENT

Line 1: PACKAGE BODY fnd_document_management AS

1: PACKAGE BODY fnd_document_management AS
2: /* $Header: AFWFDMGB.pls 120.8.12000000.3 2007/02/28 08:01:54 hgandiko ship $ */
3:
4: /*
5: ** We need need to fetch URL prefix from WF_WEB_AGENT in wf_resources

Line 71: parameter_list OUT NOCOPY fnd_document_management.fnd_dm_product_parms_tbl_type

67:
68: ============================================================================*/
69: PROCEDURE get_product_parameter_list
70: (product_function_id IN NUMBER,
71: parameter_list OUT NOCOPY fnd_document_management.fnd_dm_product_parms_tbl_type
72: )
73: IS
74:
75: /*

Line 117: Wf_Core.Context('fnd_document_management',

113: END LOOP;
114:
115: EXCEPTION
116: WHEN OTHERS THEN
117: Wf_Core.Context('fnd_document_management',
118: 'get_product_parameter_list',
119: to_char(product_function_id));
120: RAISE;
121:

Line 186: Wf_Core.Context('fnd_document_management',

182: p_function_syntax := NULL;
183: p_product_function_id := 0;
184: p_icon_name := NULL;
185: WHEN OTHERS THEN
186: Wf_Core.Context('fnd_document_management',
187: 'get_function_defintion',
188: to_char(p_node_id),
189: p_function_name);
190: RAISE;

Line 196: Wf_Core.Context('fnd_document_management',

192: END;
193:
194: EXCEPTION
195: WHEN OTHERS THEN
196: Wf_Core.Context('fnd_document_management',
197: 'get_function_defintion',
198: to_char(p_node_id),
199: p_function_name);
200: RAISE;

Line 280: Wf_Core.Context('fnd_document_management',

276: END IF;
277:
278: EXCEPTION
279: WHEN OTHERS THEN
280: Wf_Core.Context('fnd_document_management',
281: 'create_html_syntax',
282: p_function_name,
283: p_node_connect_syntax,
284: p_function_syntax,

Line 314: l_document_attributes fnd_document_management.fnd_document_attributes;

310: l_version Varchar2(10) := NULL;
311: l_document_name Varchar2(240) := NULL;
312: l_username Varchar2(320); -- Username to query /*Bug2001012*/
313: l_document_url Varchar2(4000) := NULL;
314: l_document_attributes fnd_document_management.fnd_document_attributes;
315: l_dummy boolean; -- Bug5161758 HTML injection
316:
317: BEGIN
318: -- Bug5161758 HTML injection

Line 323: fnd_document_management.error;

319: begin
320: l_dummy := wf_core.CheckIllegalChars(username,true);
321: exception
322: when OTHERS then
323: fnd_document_management.error;
324: return;
325: end;
326: l_username := upper(username);
327:

Line 331: fnd_document_management.ParseDocInfo(document_identifier,

327:
328: /*
329: ** get all the components of the document attribute
330: */
331: fnd_document_management.ParseDocInfo(document_identifier,
332: l_dm_node_id,
333: l_document_id,
334: l_version);
335:

Line 361: fnd_document_management.get_display_document_url (

357:
358: /*
359: ** Get the HTML text for displaying the document
360: */
361: fnd_document_management.get_display_document_url (
362: l_username,
363: document_identifier,
364: FALSE,
365: FALSE,

Line 373: '/fnd_document_management.create_display_document_url?'||

369:
370: ELSE
371:
372: launch_document_URL := dm_base_url||
373: '/fnd_document_management.create_display_document_url?'||
374: 'document_identifier='||
375: wfa_html.conv_special_url_chars(document_identifier)||
376: '&username='||l_username;
377:

Line 385: fnd_document_management.get_document_attributes(l_username,

381:
382: /*
383: ** get the document name
384: */
385: fnd_document_management.get_document_attributes(l_username,
386: document_identifier,
387: l_document_attributes);
388:
389:

Line 403: fnd_document_management.get_display_document_url (

399:
400: /*
401: ** Get the HTML text for displaying the document
402: */
403: fnd_document_management.get_display_document_url (
404: l_username,
405: document_identifier,
406: FALSE,
407: FALSE,

Line 423: '/fnd_document_management.create_display_document_url?'||

419:
420: launch_document_URL :=
421: ' 2320:
2321: FNDDMCopywindow = window.open("'||
2322: wfa_html.base_url||
2323: '/fnd_document_management.show_transport_message'||
2324: '", "FNDDMCopywindow", transport_attr);
2325:
2326: FNDDMwindow.focus();
2327:

Line 2340: Wf_Core.Context('fnd_document_management',

2336: htp.p('');
2337:
2338: EXCEPTION
2339: WHEN OTHERS THEN
2340: Wf_Core.Context('fnd_document_management',
2341: 'get_open_dm_attach_window');
2342: RAISE;
2343:
2344: END get_open_dm_attach_window;

Line 2376: '/fnd_document_management.set_document_form_fields'||

2372:
2373: IF (frame_name is not null) THEN
2374:
2375: l_callback_url := '"'||dm_base_url||
2376: '/fnd_document_management.set_document_form_fields'||
2377: '?document_identifier='||
2378: 'DM:-NodeId-:-ObjectId-:-Version-'||
2379: '^document_name=-ObjectName-'||
2380: '^document_name_field=top.opener.parent.'||frame_name||

Line 2390: '/fnd_document_management.set_document_form_fields'||

2386:
2387: ELSE
2388:
2389: l_callback_url := '"'||dm_base_url||
2390: '/fnd_document_management.set_document_form_fields'||
2391: '?document_identifier='||
2392: 'DM:-NodeId-:-ObjectId-:-Version-'||
2393: '^document_name=-ObjectName-'||
2394: '^document_name_field=top.opener.parent.document.'||

Line 2406: Wf_Core.Context('fnd_document_management',

2402: callback_url := wfa_html.conv_special_url_chars(l_callback_url);
2403:
2404: EXCEPTION
2405: WHEN OTHERS THEN
2406: Wf_Core.Context('fnd_document_management',
2407: 'set_document_id_html',
2408: form_name,
2409: document_id_field_name,
2410: document_name_field_name);

Line 2538: l_document_attributes fnd_document_management.fnd_document_attributes;

2534: l_document_name Varchar2(240) := NULL;
2535: c_title Varchar2(240) := NULL;
2536: l_toolbar_color Varchar2(10) := '#0000cc';
2537: l_url_syntax Varchar2(2000) := NULL;
2538: l_document_attributes fnd_document_management.fnd_document_attributes;
2539: l_dummy boolean; -- Bug5161758 HTML injection
2540: BEGIN
2541: -- Bug5161758 HTML injection
2542: begin

Line 2546: fnd_document_management.error;

2542: begin
2543: l_dummy := wf_core.CheckIllegalChars(username,true);
2544: exception
2545: when OTHERS then
2546: fnd_document_management.error;
2547: return;
2548: end;
2549: l_username := upper(username);
2550:

Line 2554: fnd_document_management.ParseDocInfo(document_identifier,

2550:
2551: /*
2552: ** get all the components of the document attribute
2553: */
2554: fnd_document_management.ParseDocInfo(document_identifier,
2555: l_dm_node_id,
2556: l_document_id,
2557: l_version);
2558:

Line 2562: fnd_document_management.get_document_attributes(l_username,

2558:
2559: /*
2560: ** get the document name
2561: */
2562: fnd_document_management.get_document_attributes(l_username,
2563: document_identifier,
2564: l_document_attributes);
2565:
2566: l_document_name := SUBSTR (l_document_attributes.document_name, 1, 25);

Line 2634: fnd_document_management.get_display_document_url (

2630:
2631: /*
2632: ** Create the display document icon control
2633: */
2634: fnd_document_management.get_display_document_url (
2635: l_username,
2636: document_identifier,
2637: FALSE,
2638: FALSE,

Line 2648: fnd_document_management.get_original_document_url (

2644:
2645: /*
2646: ** Create the display latest version document icon control
2647: */
2648: fnd_document_management.get_original_document_url (
2649: l_username,
2650: document_identifier,
2651: FALSE,
2652: FALSE,

Line 2662: fnd_document_management.get_fetch_document_url (

2658:
2659: /*
2660: ** Create the fetch document icon control
2661: */
2662: fnd_document_management.get_fetch_document_url (
2663: l_username,
2664: document_identifier,
2665: FALSE,
2666: l_url_syntax);

Line 2680: fnd_document_management.get_check_out_document_url (

2676:
2677: /*
2678: ** Create the check out icon control
2679: */
2680: fnd_document_management.get_check_out_document_url (
2681: l_username,
2682: document_identifier,
2683: FALSE,
2684: l_url_syntax);

Line 2693: fnd_document_management.get_check_in_document_url (

2689:
2690: /*
2691: ** Create the check in icon control
2692: */
2693: fnd_document_management.get_check_in_document_url (
2694: l_username,
2695: document_identifier,
2696: FALSE,
2697: l_url_syntax);

Line 2706: fnd_document_management.get_unlock_document_url (

2702:
2703: /*
2704: ** Create the unlock icon control
2705: */
2706: fnd_document_management.get_unlock_document_url (
2707: l_username,
2708: document_identifier,
2709: FALSE,
2710: l_url_syntax);

Line 2723: fnd_document_management.get_display_history_url (

2719:
2720: /*
2721: ** Create the show history icon
2722: */
2723: fnd_document_management.get_display_history_url (
2724: l_username,
2725: document_identifier,
2726: FALSE,
2727: l_url_syntax);

Line 2762: wf_core.context('fnd_document_management',

2758:
2759:
2760: exception
2761: when others then
2762: wf_core.context('fnd_document_management',
2763: 'create_document_toolbar',
2764: document_identifier);
2765: raise;
2766:

Line 2829: fnd_document_management.error;

2825: begin
2826: l_dummy := wf_core.CheckIllegalChars(username,true);
2827: exception
2828: when OTHERS then
2829: fnd_document_management.error;
2830: return;
2831: end;
2832: l_username := upper(username);
2833:

Line 2835: fnd_document_management.get_dm_home (l_username, l_dm_node_id, l_dm_node_name);

2831: end;
2832: l_username := upper(username);
2833:
2834: -- get the document management home node information
2835: fnd_document_management.get_dm_home (l_username, l_dm_node_id, l_dm_node_name);
2836:
2837: /*
2838: ** get the product that is installed for that dm node
2839: */

Line 2861: fnd_document_management.get_search_document_url (

2857:
2858: /*
2859: ** Get the HTML text for displaying the document
2860: */
2861: fnd_document_management.get_search_document_url (
2862: username,
2863: callback_function,
2864: FALSE,
2865: l_attach_URL);

Line 2879: '/fnd_document_management.create_attach_document_url?'||

2875: ELSE
2876:
2877: launch_attach_URL :=
2878: dm_base_url||
2879: '/fnd_document_management.create_attach_document_url?'||
2880: 'username='||username||
2881: '&callback_function='||
2882: callback_function;
2883:

Line 2924: fnd_document_management.get_search_document_url (

2920:
2921: /*
2922: ** Get the HTML text for displaying the document
2923: */
2924: fnd_document_management.get_search_document_url (
2925: username,
2926: l_callback_function,
2927: FALSE,
2928: l_attach_URL);

Line 2958: '/fnd_document_management.create_attach_document_url?'||

2954: */
2955: launch_attach_URL :=
2956: '
'||

Line 2973: Wf_Core.Context('fnd_document_management',

2969: END IF;
2970:
2971: EXCEPTION
2972: WHEN OTHERS THEN
2973: Wf_Core.Context('fnd_document_management',
2974: 'get_launch_attach_url',
2975: callback_function);
2976: RAISE;
2977:

Line 3006: fnd_document_management.error;

3002: begin
3003: l_dummy := wf_core.CheckIllegalChars(username,true);
3004: exception
3005: when OTHERS then
3006: fnd_document_management.error;
3007: return;
3008: end;
3009: l_username := upper(username);
3010:

Line 3012: fnd_document_management.get_dm_home (l_username, l_dm_node_id, l_dm_node_name);

3008: end;
3009: l_username := upper(username);
3010:
3011: -- get the document management home node information
3012: fnd_document_management.get_dm_home (l_username, l_dm_node_id, l_dm_node_name);
3013:
3014: -- If no document nodes are available then show an error message
3015: IF (l_dm_node_id IS NULL) THEN
3016:

Line 3064: '/fnd_document_management.create_attach_toolbar?'||

3060: */
3061: htp.p (' 3062: 'SRC='||
3063: dm_base_url ||
3064: '/fnd_document_management.create_attach_toolbar?'||
3065: 'username='||username||
3066: '&callback_function='||l_callback_function||
3067: ' MARGINHEIGHT=10 MARGINWIDTH=10 '||
3068: 'SCROLLING="NO" NORESIZE FRAMEBORDER=YES LONGDESC="'||

Line 3082: fnd_document_management.get_search_document_url (

3078:
3079: /*
3080: ** Get the HTML text for displaying the document
3081: */
3082: fnd_document_management.get_search_document_url (
3083: username,
3084: l_callback_function,
3085: FALSE,
3086: l_document_url);

Line 3109: Wf_Core.Context('fnd_document_management',

3105: htp.p ('');
3106:
3107: EXCEPTION
3108: WHEN OTHERS THEN
3109: Wf_Core.Context('fnd_document_management',
3110: 'create_attach_document_url',
3111: callback_function);
3112: RAISE;
3113:

Line 3145: fnd_document_management.error;

3141: begin
3142: l_dummy := wf_core.CheckIllegalChars(username,true);
3143: exception
3144: when OTHERS then
3145: fnd_document_management.error;
3146: return;
3147: end;
3148: l_username := upper(username);
3149:

Line 3151: fnd_document_management.get_dm_home (l_username, l_dm_node_id, l_dm_node_name);

3147: end;
3148: l_username := upper(username);
3149:
3150: -- get the document management home node information
3151: fnd_document_management.get_dm_home (l_username, l_dm_node_id, l_dm_node_name);
3152:
3153: l_dm_node_name := SUBSTR (l_dm_node_name , 1, 30);
3154:
3155: /*

Line 3206: '/fnd_document_management.choose_home?'||

3202: */
3203: htp.p('');
3204:
3205: htp.p('
3210: '" TARGET="DOCUMENT" onMouseOver="window.status='||''''||

Line 3245: fnd_document_management.get_search_document_url (

3241:
3242: /*
3243: ** Create the search document icon control
3244: */
3245: fnd_document_management.get_search_document_url (
3246: username,
3247: wfa_html.conv_special_url_chars(l_callback_function),
3248: FALSE,
3249: l_url_syntax);

Line 3262: fnd_document_management.get_create_document_url (

3258:
3259: /*
3260: ** Create the add document icon control
3261: */
3262: fnd_document_management.get_create_document_url (
3263: username,
3264: wfa_html.conv_special_url_chars(l_callback_function),
3265: FALSE,
3266: l_url_syntax);

Line 3275: fnd_document_management.get_browse_document_url (

3271:
3272: /*
3273: ** Create the browse icon control
3274: */
3275: fnd_document_management.get_browse_document_url (
3276: username,
3277: wfa_html.conv_special_url_chars(l_callback_function),
3278: FALSE,
3279: l_url_syntax);

Line 3314: wf_core.context('fnd_document_management',

3310:
3311:
3312: exception
3313: when others then
3314: wf_core.context('fnd_document_management',
3315: 'create_attach_toolbar',
3316: callback_function);
3317: raise;
3318:

Line 3344: fnd_document_management.error;

3340: begin
3341: l_dummy := wf_core.CheckIllegalChars(username,true);
3342: exception
3343: when OTHERS then
3344: fnd_document_management.error;
3345: return;
3346: end;
3347:
3348: /*

Line 3428: wf_core.context('fnd_document_management',

3424: END IF;
3425:
3426: exception
3427: when others then
3428: wf_core.context('fnd_document_management',
3429: 'get_dm_home',
3430: username);
3431: raise;
3432:

Line 3454: fnd_document_management.error;

3450: begin
3451: l_dummy := wf_core.CheckIllegalChars(username,true);
3452: exception
3453: when OTHERS then
3454: fnd_document_management.error;
3455: return;
3456: end;
3457: /*
3458: ** Set the user default value

Line 3464: wf_core.context('fnd_document_management',

3460: fnd_preference.put (username, 'WF', 'DMHOME', dm_node_id);
3461:
3462: exception
3463: when others then
3464: wf_core.context('fnd_document_management',
3465: 'set_dm_home',
3466: username,
3467: dm_node_id);
3468: raise;

Line 3497: fnd_document_management.error;

3493: begin
3494: l_dummy := wf_core.CheckIllegalChars(username,true);
3495: exception
3496: when OTHERS then
3497: fnd_document_management.error;
3498: return;
3499: end;
3500: l_username := upper(username);
3501:

Line 3505: fnd_document_management.set_dm_home (l_username, dm_node_id);

3501:
3502: /*
3503: ** Set the user default value
3504: */
3505: fnd_document_management.set_dm_home (l_username, dm_node_id);
3506:
3507: /*
3508: ** get the product that is installed for that dm node
3509: */

Line 3520: fnd_document_management.get_search_document_url (

3516:
3517: /*
3518: ** Get the HTML text for displaying the document
3519: */
3520: fnd_document_management.get_search_document_url (
3521: username,
3522: wfa_html.conv_special_url_chars(callback),
3523: FALSE,
3524: l_attach_URL);

Line 3540: '/fnd_document_management.create_attach_document_url'||

3536: ELSE
3537:
3538: -- use owa_util.redirect_url to redirect the URL to the home page
3539: owa_util.redirect_url(curl=>dm_base_url ||
3540: '/fnd_document_management.create_attach_document_url'||
3541: '?username='||l_username||
3542: '&callback_function='||
3543: wfa_html.conv_special_url_chars(callback),
3544: bclose_header=>TRUE);

Line 3550: wf_core.context('fnd_document_management',

3546: END IF;
3547:
3548: exception
3549: when others then
3550: wf_core.context('fnd_document_management',
3551: 'set_dm_home_html',
3552: dm_node_id, username, callback);
3553: raise;
3554:

Line 3664: '/fnd_document_management.dm_nodes_edit?p_node_id='||

3660:
3661: -- Bug5161758 - XSS
3662: htp.tableData(htf.anchor2(
3663: curl=>wfa_html.base_url||
3664: '/fnd_document_management.dm_nodes_edit?p_node_id='||
3665: to_char(nodes.node_id),
3666: ctext=>wf_core.substitutespecialchars(nodes.node_name),
3667: ctarget=>'_top'),
3668: 'Left', cattributes=>'headers="t_name"');

Line 3688: '/fnd_document_management.dm_nodes_confirm_delete?p_node_id='||

3684: htp.tableData(wf_core.substitutespecialchars(nodes.node_id), 'left',
3685: cattributes=>'headers="t_node_id"');
3686:
3687: htp.tableData(htf.anchor2(curl=>wfa_html.base_url||
3688: '/fnd_document_management.dm_nodes_confirm_delete?p_node_id='||
3689: wf_core.substitutespecialchars(nodes.node_id),
3690: ctext=>'' || WF_CORE.Translate('DELETE') || ''),
3691: 'center', cattributes=>'valign="MIDDLE" headers="t_delete"');
3692:

Line 3704: l_url := wfa_html.base_url||'/fnd_document_management.dm_nodes_edit';

3700:
3701: --Add new node Button
3702: htp.tableRowOpen;
3703:
3704: l_url := wfa_html.base_url||'/fnd_document_management.dm_nodes_edit';
3705: l_icon := 'FNDJLFOK.gif';
3706: l_text := wf_core.translate ('WFDM_CREATE');
3707: l_onmouseover := wf_core.translate ('WFDM_CREATE');
3708:

Line 3724: wf_core.context('FND_DOCUMENT_MANAGEMENT', 'Dm_Nodes_Display');

3720: htp.htmlClose;
3721:
3722: exception
3723: when others then
3724: wf_core.context('FND_DOCUMENT_MANAGEMENT', 'Dm_Nodes_Display');
3725: fnd_document_management.error;
3726: end Dm_Nodes_Display;
3727:
3728:

Line 3725: fnd_document_management.error;

3721:
3722: exception
3723: when others then
3724: wf_core.context('FND_DOCUMENT_MANAGEMENT', 'Dm_Nodes_Display');
3725: fnd_document_management.error;
3726: end Dm_Nodes_Display;
3727:
3728:
3729: procedure Dm_Nodes_Edit (

Line 3737: wf_core.context('FND_DOCUMENT_MANAGEMENT', 'Dm_Nodes_edit');

3733: BEGIN
3734: null;
3735: exception
3736: when others then
3737: wf_core.context('FND_DOCUMENT_MANAGEMENT', 'Dm_Nodes_edit');
3738: fnd_document_management.error;
3739:
3740: END Dm_Nodes_Edit;
3741:

Line 3738: fnd_document_management.error;

3734: null;
3735: exception
3736: when others then
3737: wf_core.context('FND_DOCUMENT_MANAGEMENT', 'Dm_Nodes_edit');
3738: fnd_document_management.error;
3739:
3740: END Dm_Nodes_Edit;
3741:
3742:

Line 3756: wf_core.context('FND_DOCUMENT_MANAGEMENT', 'Dm_Nodes_update');

3752: BEGIN
3753: null;
3754: exception
3755: when others then
3756: wf_core.context('FND_DOCUMENT_MANAGEMENT', 'Dm_Nodes_update');
3757: fnd_document_management.error;
3758:
3759: END Dm_Nodes_Update;
3760:

Line 3757: fnd_document_management.error;

3753: null;
3754: exception
3755: when others then
3756: wf_core.context('FND_DOCUMENT_MANAGEMENT', 'Dm_Nodes_update');
3757: fnd_document_management.error;
3758:
3759: END Dm_Nodes_Update;
3760:
3761:

Line 3804: fnd_document_management.error;

3800: begin
3801: l_dummy := wf_core.CheckIllegalChars(username,true);
3802: exception
3803: when OTHERS then
3804: fnd_document_management.error;
3805: return;
3806: end;
3807: l_username := upper(username);
3808: l_callback := wf_core.substitutespecialchars(

Line 3814: fnd_document_management.get_dm_home (l_username, dm_node_id, dm_node_name);

3810:
3811: wf_directory.GetRoleInfo(l_username, realname, s0, s0, s0, s0);
3812:
3813: -- get the document management home node information
3814: fnd_document_management.get_dm_home (l_username, dm_node_id, dm_node_name);
3815:
3816: -- Set page title
3817: htp.htmlOpen;
3818: htp.headOpen;

Line 3857: '/fnd_document_management.set_dm_home_html?'||

3853: IF (dm_node_id = nodes.node_id) THEN
3854: -- Bug5161758 - XSS
3855: htp.tableData(htf.anchor2(
3856: curl=>wfa_html.base_url||
3857: '/fnd_document_management.set_dm_home_html?'||
3858: 'dm_node_id='||to_char(nodes.node_id)||
3859: '&username='||l_username||
3860: '&callback='|| l_callback,
3861: ctext=>''||

Line 3870: '/fnd_document_management.set_dm_home_html?'||

3866: ELSE
3867:
3868: htp.tableData(htf.anchor2(
3869: curl=>dm_base_url||
3870: '/fnd_document_management.set_dm_home_html?'||
3871: 'dm_node_id='||to_char(nodes.node_id)||
3872: '&username='||l_username||
3873: '&callback='|| l_callback,
3874: ctext=>wf_core.substitutespecialchars(nodes.node_name),

Line 3905: wf_core.context('fnd_document_management', 'choose_home');

3901:
3902: exception
3903: when others then
3904: rollback;
3905: wf_core.context('fnd_document_management', 'choose_home');
3906: fnd_document_management.Error;
3907: end choose_home;
3908:
3909:

Line 3906: fnd_document_management.Error;

3902: exception
3903: when others then
3904: rollback;
3905: wf_core.context('fnd_document_management', 'choose_home');
3906: fnd_document_management.Error;
3907: end choose_home;
3908:
3909:
3910: --

Line 3989: wf_core.context('Fnd_Document_Management', 'product_lov',p_titles_only, p_find_criteria);

3985:
3986: exception
3987: when others then
3988: rollback;
3989: wf_core.context('Fnd_Document_Management', 'product_lov',p_titles_only, p_find_criteria);
3990: fnd_document_management.Error;
3991: END;
3992:
3993:

Line 3990: fnd_document_management.Error;

3986: exception
3987: when others then
3988: rollback;
3989: wf_core.context('Fnd_Document_Management', 'product_lov',p_titles_only, p_find_criteria);
3990: fnd_document_management.Error;
3991: END;
3992:
3993:
3994:

Line 4051: document_attributes out nocopy fnd_document_management.fnd_document_attributes)

4047: ============================================================================*/
4048: PROCEDURE get_document_attributes (
4049: username IN Varchar2,
4050: document_identifier in varchar2,
4051: document_attributes out nocopy fnd_document_management.fnd_document_attributes)
4052: IS
4053:
4054: l_start_copy Boolean := FALSE;
4055: l_record_num Number := 0;

Line 4075: fnd_document_management.error;

4071: begin
4072: l_dummy := wf_core.CheckIllegalChars(username,true);
4073: exception
4074: when OTHERS then
4075: fnd_document_management.error;
4076: return;
4077: end;
4078: /*
4079: ** Parse the document_identifier into its individual components

Line 4082: fnd_document_management.ParseDocInfo(document_identifier,

4078: /*
4079: ** Parse the document_identifier into its individual components
4080: ** and get all the components of the document identifer
4081: */
4082: fnd_document_management.ParseDocInfo(document_identifier,
4083: l_dm_node_id,
4084: l_document_id,
4085: l_version);
4086:

Line 4354: wf_core.context('Fnd_Document_Management', 'set_document_form_fields');

4350:
4351: exception
4352: when others then
4353: rollback;
4354: wf_core.context('Fnd_Document_Management', 'set_document_form_fields');
4355: fnd_document_management.Error;
4356:
4357: END set_document_form_fields;
4358:

Line 4355: fnd_document_management.Error;

4351: exception
4352: when others then
4353: rollback;
4354: wf_core.context('Fnd_Document_Management', 'set_document_form_fields');
4355: fnd_document_management.Error;
4356:
4357: END set_document_form_fields;
4358:
4359: /*===========================================================================

Line 4393: wf_core.context('Fnd_Document_Management', 'show_transport_message');

4389:
4390: exception
4391: when others then
4392: rollback;
4393: wf_core.context('Fnd_Document_Management', 'show_transport_message');
4394: fnd_document_management.Error;
4395:
4396: END show_transport_message;
4397:

Line 4394: fnd_document_management.Error;

4390: exception
4391: when others then
4392: rollback;
4393: wf_core.context('Fnd_Document_Management', 'show_transport_message');
4394: fnd_document_management.Error;
4395:
4396: END show_transport_message;
4397:
4398:

Line 4418: wf_core.context('Fnd_Document_Management', 'Dm_Nodes_Confirm_Delete', p_node_id);

4414: null;
4415: exception
4416: when others then
4417: rollback;
4418: wf_core.context('Fnd_Document_Management', 'Dm_Nodes_Confirm_Delete', p_node_id);
4419: fnd_document_management.Error;
4420:
4421: END Dm_Nodes_Confirm_Delete;
4422:

Line 4419: fnd_document_management.Error;

4415: exception
4416: when others then
4417: rollback;
4418: wf_core.context('Fnd_Document_Management', 'Dm_Nodes_Confirm_Delete', p_node_id);
4419: fnd_document_management.Error;
4420:
4421: END Dm_Nodes_Confirm_Delete;
4422:
4423:

Line 4439: wf_core.context('Fnd_Document_Management', 'Dm_Nodes_Delete', p_node_id);

4435: null;
4436: exception
4437: when others then
4438: rollback;
4439: wf_core.context('Fnd_Document_Management', 'Dm_Nodes_Delete', p_node_id);
4440: fnd_document_management.Error;
4441:
4442: END Dm_Nodes_Delete;
4443:

Line 4440: fnd_document_management.Error;

4436: exception
4437: when others then
4438: rollback;
4439: wf_core.context('Fnd_Document_Management', 'Dm_Nodes_Delete', p_node_id);
4440: fnd_document_management.Error;
4441:
4442: END Dm_Nodes_Delete;
4443:
4444: /*===========================================================================

Line 4487: wf_core.context('fnd_document_management',

4483: return (l_ticket);
4484:
4485: exception
4486: when others then
4487: wf_core.context('fnd_document_management',
4488: 'get_ticket',
4489: username);
4490: raise;
4491:

Line 4536: wf_core.context('fnd_document_management',

4532: valid_ticket := l_valid_ticket;
4533:
4534: exception
4535: when others then
4536: wf_core.context('fnd_document_management',
4537: 'validate_ticket',
4538: username,
4539: ticket);
4540: raise;

Line 4581: wf_core.context('fnd_document_management',

4577: end if;
4578:
4579: exception
4580: when others then
4581: wf_core.context('fnd_document_management',
4582: 'validate_ticket_http',
4583: username,
4584: ticket);
4585: raise;

Line 4617: wf_core.context('fnd_document_management',

4613: fnd_preference.put (username, 'WF', 'TICKET', ticket);
4614:
4615: exception
4616: when others then
4617: wf_core.context('fnd_document_management',
4618: 'modulate_ticket',
4619: username,
4620: ticket);
4621: raise;

Line 4723: END fnd_document_management;

4719: ';
4720:
4721: end;
4722:
4723: END fnd_document_management;