DBA Data[Home] [Help]

APPS.MSC_PQ_UTILS dependencies on FND_GFM

Line 3504: db_file := fnd_gfm.file_create(file_name=>filename,content_type => mime_type, program_name => 'export');

3500: END IF;
3501: IF exist_flag ='N' THEN
3502: mime_type := NVL(fnd_profile.value('FND_EXPORT_MIME_TYPE'), 'text/tab-separated-values');
3503: -- mime_type := 'text/comma-separated-values';
3504: db_file := fnd_gfm.file_create(file_name=>filename,content_type => mime_type, program_name => 'export');
3505: file_open := TRUE;
3506: output_string := NULL;
3507: build_wrksh_query(l_plan_id, l_query_id,
3508: NULL,

Line 3525: fnd_gfm.file_write_line(db_file,clmn_prompts);

3521: END IF;
3522:
3523: IF l_return_code IS NULL THEN
3524: clmn_prompts:=prompts_clause;
3525: fnd_gfm.file_write_line(db_file,clmn_prompts);
3526: OPEN exp_cursor FOR query_stmt;
3527: LOOP
3528: FETCH exp_cursor INTO dyn_rec;
3529: EXIT

Line 3537: fnd_gfm.file_write_line(db_file,clmn_prompts);

3533: -- SELECT prompts_clause INTO clmn_prompts FROM dual;
3534: -- debug_plan_event('clmn_prompts'||clmn_prompts);
3535: clmn_prompts:=prompts_clause;
3536:
3537: fnd_gfm.file_write_line(db_file,clmn_prompts);
3538: i:=i+1;
3539: END IF;*/
3540: output_string:=dyn_rec.output;
3541: fnd_gfm.file_write_line(db_file,output_string);

Line 3541: fnd_gfm.file_write_line(db_file,output_string);

3537: fnd_gfm.file_write_line(db_file,clmn_prompts);
3538: i:=i+1;
3539: END IF;*/
3540: output_string:=dyn_rec.output;
3541: fnd_gfm.file_write_line(db_file,output_string);
3542: END LOOP;
3543: CLOSE exp_cursor;
3544: file_open := FALSE;
3545: END IF;