DBA Data[Home] [Help]

APPS.OTA_COST_TRANSFER_TO_GL_PKG dependencies on GL_INTERFACE

Line 422: FND_FILE.PUT_LINE(FND_FILE.LOG,'Insert into GL interface table for Paying cost center:' || ','

418: l_amount := 0;
419: end if;
420: --
421: if ota_fh_row.paying_cost_center is not null then
422: FND_FILE.PUT_LINE(FND_FILE.LOG,'Insert into GL interface table for Paying cost center:' || ','
423: ||ota_fh_row.paying_cost_center);
424: ota_tfh_api_shd.lck(ota_fh_row.finance_header_id,ota_fh_row.object_version_number); ---*** Bug#2820365
425: l_success := otagli (ota_fh_row.finance_header_id,
426: ota_fh_row.paying_cost_center,

Line 447: FND_FILE.PUT_LINE(FND_FILE.LOG,'Insert into GL interface table for Recieving cost center,'

443: l_amount := 0;
444: end if;
445:
446: --
447: FND_FILE.PUT_LINE(FND_FILE.LOG,'Insert into GL interface table for Recieving cost center,'
448: ||ota_fh_row.receiving_cost_center);
449: ota_tfh_api_shd.lck(ota_fh_row.finance_header_id,ota_fh_row.object_version_number); ---*** Bug#2820365
450: l_success := otagli (ota_fh_row.finance_header_id,
451: ota_fh_row.receiving_cost_center,

Line 529: FND_FILE.PUT_LINE(FND_FILE.LOG,'Insert into GL interface table for Paying cost center:' || ','

525: l_amount := 0;
526: end if;
527: --
528: if ota_fh_row.paying_cost_center is not null then
529: FND_FILE.PUT_LINE(FND_FILE.LOG,'Insert into GL interface table for Paying cost center:' || ','
530: ||ota_fh_row.paying_cost_center);
531: ota_tfh_api_shd.lck(ota_fh_row.finance_header_id,ota_fh_row.object_version_number); ---*** Bug#2820365
532: l_success := otagli (ota_fh_row.finance_header_id,
533: ota_fh_row.paying_cost_center,

Line 554: FND_FILE.PUT_LINE(FND_FILE.LOG,'Insert into GL interface table for Recieving cost center,'

550: l_amount := 0;
551: end if;
552:
553: --
554: FND_FILE.PUT_LINE(FND_FILE.LOG,'Insert into GL interface table for Recieving cost center,'
555: ||ota_fh_row.receiving_cost_center);
556: ota_tfh_api_shd.lck(ota_fh_row.finance_header_id,ota_fh_row.object_version_number); ---*** Bug#2820365
557: l_success := otagli (ota_fh_row.finance_header_id,
558: ota_fh_row.receiving_cost_center,

Line 725: -- Insert to gl interface

721:
722: -- l_success VARCHAR2(1) := 'T';
723:
724: --
725: -- Insert to gl interface
726: --
727: BEGIN
728: FND_FILE.PUT_LINE(FND_FILE.LOG,'Inserting in Insert to GL interface ');
729: --

Line 728: FND_FILE.PUT_LINE(FND_FILE.LOG,'Inserting in Insert to GL interface ');

724: --
725: -- Insert to gl interface
726: --
727: BEGIN
728: FND_FILE.PUT_LINE(FND_FILE.LOG,'Inserting in Insert to GL interface ');
729: --
730: INSERT INTO gl_interface
731: (STATUS
732: ,LEDGER_ID -- Bug#6763652

Line 730: INSERT INTO gl_interface

726: --
727: BEGIN
728: FND_FILE.PUT_LINE(FND_FILE.LOG,'Inserting in Insert to GL interface ');
729: --
730: INSERT INTO gl_interface
731: (STATUS
732: ,LEDGER_ID -- Bug#6763652
733: ,SET_OF_BOOKS_ID
734: ,ACCOUNTING_DATE

Line 992: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error occured in Inserting into GL interface '||' '||

988: WHEN OTHERS THEN
989: l_err_num := SQLCODE;
990: l_err_msg := SUBSTR(SQLERRM, 1, 100);
991: --
992: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error occured in Inserting into GL interface '||' '||
993: to_char(p_finance_header_id)||','||l_err_msg);
994:
995: l_success := 'F';
996: return(l_success);