DBA Data[Home] [Help]

APPS.FND_WEBATTCH dependencies on FND_GFM

Line 725: l_url := fnd_gfm.construct_download_URL( gfm_agent, l_media_id, FALSE);

721: web_server_prefix := 'http://' || owa_util.get_cgi_env('SERVER_NAME') ||
722: ':' || owa_util.get_cgi_env('SERVER_PORT'); */
723: gfm_agent := fnd_web_config.gfm_agent;
724:
725: l_url := fnd_gfm.construct_download_URL( gfm_agent, l_media_id, FALSE);
726:
727: -- Redirect the URL to display the file
728: owa_util.redirect_url( l_url );
729:

Line 766: l_media_id := fnd_gfm.confirm_upload(access_id => access_id,

762: l_file_name VARCHAR2(255);
763: BEGIN
764:
765: IF TO_NUMBER(datatype_id) = 6 THEN
766: l_media_id := fnd_gfm.confirm_upload(access_id => access_id,
767: file_name => file_name,
768: program_name => 'ADD_ATTACHMENT');
769: l_file_name := 'INTERNAL';
770: ELSIF TO_NUMBER(datatype_id) = 7 THEN

Line 1047: l_media_id := fnd_gfm.confirm_upload(access_id => l_access_id,

1043: l_length := instr(package_name,';',l_start_pos) - l_start_pos;
1044: l_access_id := to_number(substr(package_name,l_start_pos,l_length));
1045:
1046: IF TO_NUMBER(datatype_id) = 6 THEN
1047: l_media_id := fnd_gfm.confirm_upload(access_id => l_access_id,
1048: file_name => file_name,
1049: program_name => 'UPDATE_ATTACHMENT');
1050: l_file_name := 'INTERNAL';
1051: ELSIF TO_NUMBER(datatype_id) = 7 THEN

Line 2048: access_id := fnd_gfm.authorize(NULL);

2044: end loop;
2045: close att_doc_cursor;
2046:
2047: -- GFM Preparation
2048: access_id := fnd_gfm.authorize(NULL);
2049: upload_action := 'fnd_webattch.update_attachment_gfm_wrapper';
2050:
2051: htp.formOpen( curl => upload_action, cattributes=>'NAME="UPDATE_ATCHMT"',
2052: cmethod => 'POST',cenctype=> 'multipart/form-data');

Line 2387: access_id := fnd_gfm.authorize(NULL);

2383: htp.tableClose;
2384: htp.br;
2385:
2386: -- GFM Preparation
2387: access_id := fnd_gfm.authorize(NULL);
2388: upload_action := 'fnd_webattch.add_attachment_gfm_wrapper';
2389:
2390: htp.formOpen( curl => upload_action , cattributes=>'NAME="ADD_ATCHMT"',
2391: cmethod => 'POST',cenctype=> 'multipart/form-data');