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 760: l_media_id := fnd_gfm.confirm_upload(access_id => access_id,

756: l_file_name VARCHAR2(255);
757: BEGIN
758:
759: IF TO_NUMBER(datatype_id) = 6 THEN
760: l_media_id := fnd_gfm.confirm_upload(access_id => access_id,
761: file_name => file_name,
762: program_name => 'ADD_ATTACHMENT');
763: l_file_name := 'INTERNAL';
764: ELSIF TO_NUMBER(datatype_id) = 7 THEN

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

1001: l_length := instr(package_name,';',l_start_pos) - l_start_pos;
1002: l_access_id := to_number(substr(package_name,l_start_pos,l_length));
1003:
1004: IF TO_NUMBER(datatype_id) = 6 THEN
1005: l_media_id := fnd_gfm.confirm_upload(access_id => l_access_id,
1006: file_name => file_name,
1007: program_name => 'UPDATE_ATTACHMENT');
1008: l_file_name := 'INTERNAL';
1009: ELSIF TO_NUMBER(datatype_id) = 7 THEN

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

1969: end loop;
1970: close att_doc_cursor;
1971:
1972: -- GFM Preparation
1973: access_id := fnd_gfm.authorize(NULL);
1974: upload_action := 'fnd_webattch.update_attachment_gfm_wrapper';
1975:
1976: htp.formOpen( curl => upload_action, cattributes=>'NAME="UPDATE_ATCHMT"',
1977: cmethod => 'POST',cenctype=> 'multipart/form-data');

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

2308: htp.tableClose;
2309: htp.br;
2310:
2311: -- GFM Preparation
2312: access_id := fnd_gfm.authorize(NULL);
2313: upload_action := 'fnd_webattch.add_attachment_gfm_wrapper';
2314:
2315: htp.formOpen( curl => upload_action , cattributes=>'NAME="ADD_ATCHMT"',
2316: cmethod => 'POST',cenctype=> 'multipart/form-data');