DBA Data[Home] [Help]

APPS.QP_ADD_ITEM_PRCLIST_PVT dependencies on FND_FILE

Line 240: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Item Number '|| l_item_tbl(l_index) || ' already exists');

236: RAISE;
237: end;
238: IF l_already_exists > 0 THEN
239: -- write rec log of values that cannot be added
240: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Item Number '|| l_item_tbl(l_index) || ' already exists');
241: ELSE
242: /*
243: select decode(l_min_acct_unit,
244: -1,

Line 484: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Item Number '|| l_item_tbl(l_index) || ' already exists');

480: RAISE;
481: end;
482: IF l_already_exists > 0 THEN
483: -- write rec log of values that cannot be added
484: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Item Number '|| l_item_tbl(l_index) || ' already exists');
485: ELSE
486:
487: select mtl.primary_uom_code
488: into l_uom

Line 640: FND_FILE.PUT_LINE(FND_FILE.LOG, SQLCODE||' - '||SQLERRM);

636: errbuf:='';
637: EXCEPTION
638: WHEN others THEN
639: ROLLBACK;
640: FND_FILE.PUT_LINE(FND_FILE.LOG, SQLCODE||' - '||SQLERRM);
641: retcode:=2;
642: END Add_Items_To_Price_List;
643:
644: END QP_ADD_ITEM_PRCLIST_PVT;