DBA Data[Home] [Help]

APPS.CN_IMPORT_PVT dependencies on FND_PROGRAM

Line 525: FND_PROGRAM.EXECUTABLE

521: IF l_imp_header.status_code = 'SUBMIT' AND l_imp_header.server_flag = 'Y' THEN
522: -- For SQL*Loader Conc Pgm,the control must locate at $CN_TOP/bin/
523: -- the execution_file_name cannot include any . or space
524: -- Create the Executable entry.
525: FND_PROGRAM.EXECUTABLE
526: ( executable => l_short_name,
527: application => 'CN',
528: short_name => l_short_name,
529: description => l_imp_header.name,

Line 538: FND_PROGRAM.REGISTER

534:
535: cn_message_pkg.debug('Staging Data : Conc Executable Created - ' || l_short_name);
536:
537: -- Register the concurrent program.
538: FND_PROGRAM.REGISTER
539: (program => l_short_name,
540: application => 'CN',
541: enabled => 'Y',
542: short_name => l_short_name,

Line 631: FND_PROGRAM.DELETE_PROGRAM

627:
628: << delete_conc >>
629: -- Clean-up the concurrent programs which were created
630: -- during program execution.
631: FND_PROGRAM.DELETE_PROGRAM
632: (program_short_name => l_short_name,
633: application => 'CN'
634: );
635: cn_message_pkg.debug('Staging Data : Delete Conc Program.');

Line 641: FND_PROGRAM.DELETE_EXECUTABLE

637: --
638: -- The "executable" will be the same as the program short name
639: -- for all run-time generated concurrent programs. The registered
640: -- program must be deleted before the executable can be.
641: FND_PROGRAM.DELETE_EXECUTABLE
642: (executable_short_name => l_short_name,
643: application => 'CN'
644: );
645: cn_message_pkg.debug('Staging Data : Delete Conc Executable.');

Line 702: errbuf := fnd_program.message;

698: p_status_code => 'STAGE_FAIL');
699: err_num := SQLCODE;
700: IF err_num = -6501 THEN
701: retcode := 2 ;
702: errbuf := fnd_program.message;
703: ELSE
704: retcode := 2 ;
705: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
706: THEN

Line 893: errbuf := fnd_program.message;

889: p_status_code => 'IMPORT_FAIL');
890: err_num := SQLCODE;
891: IF err_num = -6501 THEN
892: retcode := 2 ;
893: errbuf := fnd_program.message;
894: ELSE
895: retcode := 2 ;
896: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
897: THEN