DBA Data[Home] [Help]

APPS.JTF_IH_TOOLS dependencies on FND_MESSAGE

Line 639: FND_MESSAGE.SET_NAME('JTF','JTF_IH_IMPORT_ERROR');

635: exception
636: when eSkip then
637: null;
638: when others then
639: FND_MESSAGE.SET_NAME('JTF','JTF_IH_IMPORT_ERROR');
640: FND_MESSAGE.SET_TOKEN('ERRORMSG', SQLERRM);
641: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MESSAGE.GET);
642: end;
643: end if;

Line 640: FND_MESSAGE.SET_TOKEN('ERRORMSG', SQLERRM);

636: when eSkip then
637: null;
638: when others then
639: FND_MESSAGE.SET_NAME('JTF','JTF_IH_IMPORT_ERROR');
640: FND_MESSAGE.SET_TOKEN('ERRORMSG', SQLERRM);
641: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MESSAGE.GET);
642: end;
643: end if;
644: end loop;

Line 641: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MESSAGE.GET);

637: null;
638: when others then
639: FND_MESSAGE.SET_NAME('JTF','JTF_IH_IMPORT_ERROR');
640: FND_MESSAGE.SET_TOKEN('ERRORMSG', SQLERRM);
641: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MESSAGE.GET);
642: end;
643: end if;
644: end loop;
645: dbms_sql.close_cursor(iCursor);

Line 663: FND_MESSAGE.SET_NAME('JTF','JTF_IH_IMPORT_ERROR');

659: exception
660: when eNoOutcomes then
661: --dbms_output.put_line('No Outcomes!');
662: rollback to jtf_ih_migrate;
663: FND_MESSAGE.SET_NAME('JTF','JTF_IH_IMPORT_ERROR');
664: FND_MESSAGE.SET_TOKEN('ERRORMSG',SQLERRM);
665: FND_MSG_PUB.Add;
666: RETURN;
667: end MIGRATE_WRAPUPS;

Line 664: FND_MESSAGE.SET_TOKEN('ERRORMSG',SQLERRM);

660: when eNoOutcomes then
661: --dbms_output.put_line('No Outcomes!');
662: rollback to jtf_ih_migrate;
663: FND_MESSAGE.SET_NAME('JTF','JTF_IH_IMPORT_ERROR');
664: FND_MESSAGE.SET_TOKEN('ERRORMSG',SQLERRM);
665: FND_MSG_PUB.Add;
666: RETURN;
667: end MIGRATE_WRAPUPS;
668: END JTF_IH_TOOLS;