DBA Data[Home] [Help]

APPS.IGIRSTPT dependencies on FND_FILE

Line 116: --fnd_file.put_line(fnd_file.log , l_message);

112: -- insert a new Invoice line
113: --
114:
115: l_message := 'Insert a new AR document';
116: --fnd_file.put_line(fnd_file.log , l_message);
117:
118: -- Batch source id selection --
119: SELECT batch_source_id,
120: name

Line 134: fnd_file.put_line(fnd_file.log , l_message);

130:
131: l_variable := 'l_batch_source_id';
132: l_value := to_char(l_batch_source_id);
133: l_message := 'Searching Batch source id : '||to_char(l_batch_source_id);
134: fnd_file.put_line(fnd_file.log , l_message);
135: END IF;
136:
137:
138: -- Term identifier --

Line 145: --fnd_file.put_line(fnd_file.log , 'l_term_id'||l_term_id);

141: from fnd_profile_option_values fpov,
142: fnd_profile_options fpo
143: where fpo.profile_option_id = fpov.profile_option_id
144: and profile_option_name = 'IGI_STP_AR_TERMS'; */
145: --fnd_file.put_line(fnd_file.log , 'l_term_id'||l_term_id);
146: IF l_debug = 'TRUE'
147: THEN
148: l_variable := 'l_term_id';
149: l_value := to_char(l_term_id);

Line 151: fnd_file.put_line(fnd_file.log , l_message);

147: THEN
148: l_variable := 'l_term_id';
149: l_value := to_char(l_term_id);
150: l_message := 'Searching Term identifier : '||to_char(l_term_id);
151: fnd_file.put_line(fnd_file.log , l_message);
152: END IF;
153:
154:
155:

Line 167: fnd_file.put_line(fnd_file.log , l_message);

163: THEN
164: l_variable := 'l_uom_code';
165: l_value := l_uom_code;
166: l_message := 'Searching Term identifier : '||l_uom_code;
167: fnd_file.put_line(fnd_file.log , l_message);
168: END IF;
169:
170:
171:

Line 180: fnd_file.put_line(fnd_file.log , l_message);

176: l_standing_charge_count := l_standing_charge_count + 1;
177: IF l_debug = 'TRUE'
178: THEN
179: l_message := to_char(l_standing_charge_count)||'- Creating AR document : '||ar_rec.trx_number;
180: fnd_file.put_line(fnd_file.log , l_message);
181: l_variable := 'l_standing_charge_count';
182: l_value := to_char(l_standing_charge_count);
183: END IF;
184:

Line 193: fnd_file.put_line(fnd_file.log , l_message);

189: THEN
190: l_variable := 'l_receivable_cc_id';
191: l_value := to_char(l_receivable_cc_id);
192: l_message := 'Receivable code combination id : '||to_char(l_receivable_cc_id);
193: fnd_file.put_line(fnd_file.log , l_message);
194: l_variable := 'l_revenue_cc_id';
195: l_value := to_char(l_revenue_cc_id);
196: l_message := 'Revenue code combination id : '||to_char(l_revenue_cc_id);
197: fnd_file.put_line(fnd_file.log , l_message);

Line 197: fnd_file.put_line(fnd_file.log , l_message);

193: fnd_file.put_line(fnd_file.log , l_message);
194: l_variable := 'l_revenue_cc_id';
195: l_value := to_char(l_revenue_cc_id);
196: l_message := 'Revenue code combination id : '||to_char(l_revenue_cc_id);
197: fnd_file.put_line(fnd_file.log , l_message);
198: END IF;
199:
200:
201: INSERT INTO ra_interface_lines_ALL( amount

Line 281: --fnd_file.put_line(fnd_file.log , l_message);

277: IF l_receivable_cc_id IS NOT NULL
278: THEN
279:
280: l_message := 'Inserting receivable distribution for '||ar_rec.trx_number;
281: --fnd_file.put_line(fnd_file.log , l_message);
282: INSERT INTO ra_interface_distributions_ALL( account_class -- Mandatory
283: , interface_line_context
284: , interface_line_attribute1
285: , interface_line_attribute2

Line 323: --fnd_file.put_line(fnd_file.log , l_message);

319: END IF;
320: IF l_revenue_cc_id IS NOT NULL
321: THEN
322: l_message := 'Inserting revenue distribution for '||ar_rec.trx_number;
323: --fnd_file.put_line(fnd_file.log , l_message);
324:
325: INSERT INTO ra_interface_distributions_ALL( account_class -- Mandatory
326: , interface_line_context
327: , interface_line_attribute1

Line 369: --fnd_file.put_line(fnd_file.log , l_message);

365: EXCEPTION
366: WHEN NO_DATA_FOUND
367: THEN
368: l_message := substr(sqlerrm,1,120)||' : '||'No data found for receivable interface for '||l_value;
369: --fnd_file.put_line(fnd_file.log , l_message);
370: UPDATE igi_stp_batches
371: SET batch_status = 'ARFAILED'
372: WHERE batch_id in
373: (select batch_id

Line 389: --fnd_file.put_line(fnd_file.log , l_message);

385: raise_application_error(-20000, 'Procedure Create_Ra_Interface failed '||SQLERRM);
386: WHEN OTHERS
387: THEN
388: l_message := substr(sqlerrm,1,120)||' : '||l_message;
389: --fnd_file.put_line(fnd_file.log , l_message);
390:
391: UPDATE igi_stp_batches
392: SET batch_status = 'ARFAILED'
393: WHERE batch_id in

Line 499: fnd_file.put_line(fnd_file.log , l_message);

495: THEN
496: l_variable := 'l_ap_source';
497: l_value := l_ap_source;
498: l_message := 'Checking existance of an AP source : '||l_ap_source;
499: fnd_file.put_line(fnd_file.log , l_message);
500: END IF;
501:
502:
503: /* select fpov.profile_option_value

Line 514: fnd_file.put_line(fnd_file.log , l_message);

510: THEN
511: l_variable := 'l_term_id';
512: l_value := to_char(l_term_id);
513: l_message := 'Searching term_id through a profile option : '||l_value;
514: fnd_file.put_line(fnd_file.log , l_message);
515: END IF;
516:
517:
518: FOR ap_rec in get_ap_packages LOOP

Line 528: fnd_file.put_line(fnd_file.log , l_message);

524: THEN
525: l_variable := 'l_invoice_id';
526: l_value := to_char(l_invoice_id);
527: l_message := 'AP document number is '||ap_rec.trx_number||' and document id is: '||l_value;
528: fnd_file.put_line(fnd_file.log , l_message);
529: END IF;
530:
531:
532: l_message := 'Inserting line for '||ap_rec.trx_number;

Line 533: --fnd_file.put_line(fnd_file.log , l_message);

529: END IF;
530:
531:
532: l_message := 'Inserting line for '||ap_rec.trx_number;
533: --fnd_file.put_line(fnd_file.log , l_message);
534:
535: insert into ap_invoices_interface
536: (ACCTS_PAY_CODE_COMBINATION_ID,
537: CREATED_BY,

Line 592: --fnd_file.put_line(fnd_file.log , l_message);

588: ap_rec.exchange_date,
589: p_sysdate); -- bug6847252
590:
591: l_message := 'Inserting distribution for '||ap_rec.trx_number;
592: --fnd_file.put_line(fnd_file.log , l_message);
593:
594: -- Line number --
595: insert into ap_invoice_lines_interface
596: (ACCOUNTING_DATE,

Line 634: --fnd_file.put_line(fnd_file.log , l_message);

630:
631: EXCEPTION
632: WHEN NO_DATA_FOUND
633: THEN l_message := substr(sqlerrm,1,120)||'No data found for AP Interfaces';
634: --fnd_file.put_line(fnd_file.log , l_message);
635: UPDATE igi_stp_batches
636: SET batch_status = 'APFAILED'
637: WHERE batch_id in
638: (select batch_id

Line 657: --fnd_file.put_line(fnd_file.log , l_message);

653: raise_application_error(-20000, 'Procedure Create_AP_Interface failed '||SQLERRM);
654: WHEN OTHERS
655: THEN l_message := substr(sqlerrm,1,120)
656: ||l_message;
657: --fnd_file.put_line(fnd_file.log , l_message);
658:
659: UPDATE igi_stp_batches
660: SET batch_status = 'APFAILED'
661: WHERE batch_id in

Line 731: fnd_file.put_line(fnd_file.log , l_message);

727: ' , set_of_books_id '||to_char(p_set_of_books_id)||
728: ' , user_id '||to_char(p_user_id)||
729: ' , login_id '||to_char(p_login_id)||
730: ' , sysdate '||to_char(p_sysdate,'DD-MON-YYYY');
731: fnd_file.put_line(fnd_file.log , l_message);
732: l_variable := 'p_org_id';
733: l_value := to_char(p_org_id);
734: END IF;
735:

Line 746: fnd_file.put_line(fnd_file.log , l_message);

742: l_flag := 'N';
743: IF l_debug = 'TRUE'
744: THEN
745: l_message := 'The profile currency_code is : '||p_currency_code;
746: fnd_file.put_line(fnd_file.log , l_message);
747: l_variable := 'p_currency_code';
748: l_value := p_currency_code;
749: END IF;
750:

Line 755: --fnd_file.put_line(fnd_file.log , '** AP importation **');

751:
752: --------------------
753: -- AP Application --
754: --------------------
755: --fnd_file.put_line(fnd_file.log , '** AP importation **');
756:
757: Create_Ap_Interface(p_net_batch_id,
758: p_set_of_books_id,
759: p_org_id,

Line 764: --fnd_file.put_line(fnd_file.log , ' ');

760: p_user_id,
761: p_login_id,
762: p_sysdate,
763: p_currency_code);
764: --fnd_file.put_line(fnd_file.log , ' ');
765:
766: --------------------
767: -- AR Application --
768: --------------------

Line 770: --fnd_file.put_line(fnd_file.log , '** AR importation **');

766: --------------------
767: -- AR Application --
768: --------------------
769:
770: --fnd_file.put_line(fnd_file.log , '** AR importation **');
771:
772: Create_Ra_Interface(p_net_batch_id,
773: p_set_of_books_id,
774: p_org_id,

Line 938: fnd_file.put_line(fnd_file.log , l_message);

934: --p_org_id := fnd_profile.value('ORG_ID');
935: IF l_debug = 'TRUE'
936: THEN
937: l_message := 'ORG_ID : '||to_char(p_org_id);
938: fnd_file.put_line(fnd_file.log , l_message);
939: l_variable := 'p_org_id';
940: l_value := to_char(p_org_id);
941: END IF;
942:

Line 949: fnd_file.put_line(fnd_file.log , l_message);

945: mo_utils.get_ledger_info(p_org_id,p_set_of_books_id,p_ledger_name);
946: IF l_debug = 'TRUE'
947: THEN
948: l_message := 'GL_SET_OF_BKS_ID : '||to_char(p_set_of_books_id);
949: fnd_file.put_line(fnd_file.log , l_message);
950: l_variable := 'p_set_of_books_id';
951: l_value := to_char(p_set_of_books_id);
952: END IF;
953:

Line 961: fnd_file.put_line(fnd_file.log , l_message);

957: where ledger_id = p_set_of_books_id;
958: IF l_debug = 'TRUE'
959: THEN
960: l_message := 'CHART_OF_ACCOUNTS_ID : '||to_char(l_chart_of_accounts_id);
961: fnd_file.put_line(fnd_file.log , l_message);
962: l_variable := 'l_chart_of_accounts_id';
963: l_value := to_char(l_chart_of_accounts_id);
964: END IF;
965:

Line 970: fnd_file.put_line(fnd_file.log , l_message);

966: p_user_id := fnd_profile.value('USER_ID');
967: IF l_debug = 'TRUE'
968: THEN
969: l_message := 'USER_ID : '||to_char(p_user_id);
970: fnd_file.put_line(fnd_file.log , l_message);
971: l_variable := 'p_user_id';
972: l_value := to_char(p_user_id);
973: END IF;
974:

Line 979: fnd_file.put_line(fnd_file.log , l_message);

975: p_login_id := fnd_profile.value('LOGIN_ID');
976: IF l_debug = 'TRUE'
977: THEN
978: l_message := 'LOGIN_ID : '||to_char(p_login_id);
979: fnd_file.put_line(fnd_file.log , l_message);
980: l_variable := 'p_login_id';
981: l_value := to_char(p_login_id);
982: END IF;
983:

Line 993: fnd_file.put_line(fnd_file.log , l_message);

989: where ledger_id = p_set_of_books_id;
990: IF l_debug = 'TRUE'
991: THEN
992: l_message := 'CURRENCY_CODE : '||p_currency_code;
993: fnd_file.put_line(fnd_file.log , l_message);
994: l_variable := 'p_currency_code';
995: l_value := p_currency_code;
996: END IF;
997:

Line 1003: --fnd_file.put_line(fnd_file.log , '** AP importation **');

999: --------------------
1000: -- AP Application --
1001: --------------------
1002:
1003: --fnd_file.put_line(fnd_file.log , '** AP importation **');
1004: --fnd_file.put_line(fnd_file.log , l_message);
1005:
1006: select lookup_code
1007: into l_ap_source

Line 1004: --fnd_file.put_line(fnd_file.log , l_message);

1000: -- AP Application --
1001: --------------------
1002:
1003: --fnd_file.put_line(fnd_file.log , '** AP importation **');
1004: --fnd_file.put_line(fnd_file.log , l_message);
1005:
1006: select lookup_code
1007: into l_ap_source
1008: -- from IGI_AP_PO_LOOKUP_CODES_V

Line 1015: fnd_file.put_line(fnd_file.log , l_message);

1011: and lookup_code = p_payables_batch_source;
1012: IF l_debug = 'TRUE'
1013: THEN
1014: l_message := 'AP source : '||l_ap_source;
1015: fnd_file.put_line(fnd_file.log , l_message);
1016: l_variable := 'l_ap_source';
1017: l_value := l_ap_source;
1018: END IF;
1019:

Line 1037: fnd_file.put_line(fnd_file.log , 'AP request submitted');

1033: IF l_trx_type_id IN (3,4,5,6)
1034: THEN
1035: --shsaxena for bug 2713715
1036:
1037: fnd_file.put_line(fnd_file.log , 'AP request submitted');
1038: p_ap_import_request_id := fnd_request.submit_request
1039: ('SQLAP',
1040: 'APXIIMPT',
1041: NULL,

Line 1060: --fnd_file.put_line(fnd_file.log , 'AP import request id is ...'||p_ap_import_request_id);

1056: p_user_id, -- User id --
1057: p_login_id); -- Login id --
1058:
1059: commit;
1060: --fnd_file.put_line(fnd_file.log , 'AP import request id is ...'||p_ap_import_request_id);
1061: IF p_ap_import_request_id = 0
1062: THEN
1063: ROLLBACK;
1064: --fnd_file.put_line(fnd_file.log , 'Submission failed');

Line 1064: --fnd_file.put_line(fnd_file.log , 'Submission failed');

1060: --fnd_file.put_line(fnd_file.log , 'AP import request id is ...'||p_ap_import_request_id);
1061: IF p_ap_import_request_id = 0
1062: THEN
1063: ROLLBACK;
1064: --fnd_file.put_line(fnd_file.log , 'Submission failed');
1065:
1066: UPDATE igi_stp_batches
1067: SET batch_status = 'APFAILED'
1068: WHERE batch_id in

Line 1105: fnd_file.put_line(fnd_file.log , l_message);

1101:
1102: IF l_debug = 'TRUE'
1103: THEN
1104: l_message := 'Wait for AP request with phase '||l_ap_phase||', status '||l_ap_status||', dev_phase '||l_ap_dev_phase||', dev_status '||l_ap_dev_status||', message '||l_ap_message;
1105: fnd_file.put_line(fnd_file.log , l_message);
1106: END IF;
1107:
1108: l_ap_get_request_status :=
1109: fnd_concurrent.get_request_status (p_ap_import_request_id,

Line 1124: fnd_file.put_line(fnd_file.log , l_message);

1120:
1121: IF l_debug = 'TRUE'
1122: THEN
1123: l_message := 'Get_request_status with phase '||l_ap_phase||', status '||l_ap_status||', dev_phase '||l_ap_dev_phase||', dev_status '||l_ap_dev_status||', message '||l_ap_message;
1124: fnd_file.put_line(fnd_file.log , l_message);
1125: END IF;
1126:
1127:
1128: -- Bug 1335318

Line 1144: -- --fnd_file.put_line(fnd_file.log , 'Submission succeded '||to_char(p_ap_import_request_id));

1140: -- from igi_stp_control
1141: -- where control_id = p_net_batch_id);
1142: --
1143: -- commit;
1144: -- --fnd_file.put_line(fnd_file.log , 'Submission succeded '||to_char(p_ap_import_request_id));
1145: -- end if;
1146: -- end if;
1147: -- commented the following code for 2713715 by shsaxena */
1148:

Line 1150: --fnd_file.put_line(fnd_file.log , ' ');

1146: -- end if;
1147: -- commented the following code for 2713715 by shsaxena */
1148:
1149: END IF;
1150: --fnd_file.put_line(fnd_file.log , ' ');
1151:
1152: -- Submit AP Approval
1153:
1154: --mo_global.set_policy_context('S',p_org_id);

Line 1187: --fnd_file.put_line(fnd_file.log , '** AR importation **');

1183: --------------------
1184: -- AR Application --
1185: --------------------
1186:
1187: --fnd_file.put_line(fnd_file.log , '** AR importation **');
1188: --fnd_file.put_line(fnd_file.log , l_message);
1189:
1190:
1191: IF l_trx_type_id IN (4,6) -- shsaxena for bug 2713715

Line 1188: --fnd_file.put_line(fnd_file.log , l_message);

1184: -- AR Application --
1185: --------------------
1186:
1187: --fnd_file.put_line(fnd_file.log , '** AR importation **');
1188: --fnd_file.put_line(fnd_file.log , l_message);
1189:
1190:
1191: IF l_trx_type_id IN (4,6) -- shsaxena for bug 2713715
1192: THEN

Line 1203: fnd_file.put_line(fnd_file.log , l_message);

1199:
1200: IF l_debug = 'TRUE'
1201: THEN
1202: l_message := 'batch source name : '||l_batch_source_name;
1203: fnd_file.put_line(fnd_file.log , l_message);
1204: l_variable := 'l_batch_source_id';
1205: l_value := to_char(l_batch_source_id);
1206: END IF;
1207:

Line 1245: --fnd_file.put_line(fnd_file.log , 'AR import request id is ...'||p_ar_import_request_id);

1241: -- , l_org_id --270 Ord_id --shsaxena bug 2964361
1242: );
1243:
1244: commit;
1245: --fnd_file.put_line(fnd_file.log , 'AR import request id is ...'||p_ar_import_request_id);
1246: IF p_ar_import_request_id = 0
1247: THEN
1248: ROLLBACK;
1249:

Line 1276: --fnd_file.put_line(fnd_file.log , 'Submission failed');

1272: END IF;
1273: raise_application_error(-20002, ' Auto Invoice not submitted : batch source '||to_char(l_batch_source_id)||' is not found in RA_BATCH_SOURCES');
1274: raise_application_error(-20000, 'Procedure IGIRSTPN.INITIATE_INTERFACES failed '||SQLERRM);
1275:
1276: --fnd_file.put_line(fnd_file.log , 'Submission failed');
1277: ELSE
1278: l_ar_wait_for_request :=
1279: fnd_concurrent.wait_for_request(p_ar_import_request_id,
1280: 60,

Line 1292: fnd_file.put_line(fnd_file.log , l_message);

1288:
1289: IF l_debug = 'TRUE'
1290: THEN
1291: l_message := 'Wait for AR request with phase '||l_ar_phase||', status '||l_ar_status||', dev_phase '||l_ar_dev_phase||', dev_status '||l_ar_dev_status||', message '||l_ar_message;
1292: fnd_file.put_line(fnd_file.log , l_message);
1293: END IF;
1294: l_ar_get_request_status :=
1295: fnd_concurrent.get_request_status(p_ar_import_request_id,
1296: 'SQLAP',

Line 1309: fnd_file.put_line(fnd_file.log , l_message);

1305: l_ar_message);
1306: IF l_debug = 'TRUE'
1307: THEN
1308: l_message := 'Get_request_status with phase '||l_ar_phase||', status'||l_ar_status||', dev_phase '||l_ar_dev_phase||', dev_status '||l_ar_dev_status||', message '||l_ar_message;
1309: fnd_file.put_line(fnd_file.log , l_message);
1310: END IF;
1311:
1312:
1313: /* commented by shsaxena for bug 2713715

Line 1327: -- --fnd_file.put_line(fnd_file.log , 'Submission succeded '||to_char(p_ar_import_request_id));

1323: -- from igi_stp_control
1324: -- where control_id = p_net_batch_id);
1325: --
1326: -- COMMIT;
1327: -- --fnd_file.put_line(fnd_file.log , 'Submission succeded '||to_char(p_ar_import_request_id));
1328: -- end if;
1329: -- end if;
1330: -- commented by shsaxena for bug 2713715
1331: */

Line 1351: fnd_file.put_line (fnd_file.log , 'Submission succeded for AR --> '||to_char(p_ar_import_request_id));

1347: from igi_stp_control
1348: where control_id = p_net_batch_id);
1349:
1350: commit;
1351: fnd_file.put_line (fnd_file.log , 'Submission succeded for AR --> '||to_char(p_ar_import_request_id));
1352: fnd_file.put_line (fnd_file.log , 'Submission succeded for AP --> '||to_char(p_ap_import_request_id));
1353: END IF; */
1354:
1355: IF l_trx_type_id IN (3,5,6)

Line 1352: fnd_file.put_line (fnd_file.log , 'Submission succeded for AP --> '||to_char(p_ap_import_request_id));

1348: where control_id = p_net_batch_id);
1349:
1350: commit;
1351: fnd_file.put_line (fnd_file.log , 'Submission succeded for AR --> '||to_char(p_ar_import_request_id));
1352: fnd_file.put_line (fnd_file.log , 'Submission succeded for AP --> '||to_char(p_ap_import_request_id));
1353: END IF; */
1354:
1355: IF l_trx_type_id IN (3,5,6)
1356: THEN

Line 1367: fnd_file.put_line (fnd_file.log , 'Submission succeded for AP --> '||to_char(p_ap_import_request_id));

1363: from igi_stp_control
1364: where control_id = p_net_batch_id);
1365:
1366: COMMIT;
1367: fnd_file.put_line (fnd_file.log , 'Submission succeded for AP --> '||to_char(p_ap_import_request_id));
1368: END IF;
1369:
1370: ELSIF l_trx_type_id IN( 4,6)
1371: THEN

Line 1382: fnd_file.put_line (fnd_file.log , 'Submission succeded for AR --> '||to_char(p_ar_import_request_id));

1378: from igi_stp_control
1379: where control_id = p_net_batch_id);
1380:
1381: COMMIT;
1382: fnd_file.put_line (fnd_file.log , 'Submission succeded for AR --> '||to_char(p_ar_import_request_id));
1383: END IF;
1384:
1385: END IF;
1386: /* Added by shsaxena for Bug 2713715 END */

Line 1517: --fnd_file.put_line(fnd_file.log , l_message);

1513:
1514: fnd_profile.get('IGI_DEBUG',l_debug);
1515:
1516: l_message := '*** Open Interface for Netting called for batch '||p_net_batch_id||' ***';
1517: --fnd_file.put_line(fnd_file.log , l_message);
1518: --fnd_file.put_line(fnd_file.log , ' ');
1519: --fnd_file.put_line(fnd_file.log , ' ');
1520:
1521: l_message := '*** Feed AP/AR interface tables ***';

Line 1518: --fnd_file.put_line(fnd_file.log , ' ');

1514: fnd_profile.get('IGI_DEBUG',l_debug);
1515:
1516: l_message := '*** Open Interface for Netting called for batch '||p_net_batch_id||' ***';
1517: --fnd_file.put_line(fnd_file.log , l_message);
1518: --fnd_file.put_line(fnd_file.log , ' ');
1519: --fnd_file.put_line(fnd_file.log , ' ');
1520:
1521: l_message := '*** Feed AP/AR interface tables ***';
1522: --fnd_file.put_line(fnd_file.log , l_message);

Line 1519: --fnd_file.put_line(fnd_file.log , ' ');

1515:
1516: l_message := '*** Open Interface for Netting called for batch '||p_net_batch_id||' ***';
1517: --fnd_file.put_line(fnd_file.log , l_message);
1518: --fnd_file.put_line(fnd_file.log , ' ');
1519: --fnd_file.put_line(fnd_file.log , ' ');
1520:
1521: l_message := '*** Feed AP/AR interface tables ***';
1522: --fnd_file.put_line(fnd_file.log , l_message);
1523: Populate_Interfaces(p_net_batch_id,p_org_id);

Line 1522: --fnd_file.put_line(fnd_file.log , l_message);

1518: --fnd_file.put_line(fnd_file.log , ' ');
1519: --fnd_file.put_line(fnd_file.log , ' ');
1520:
1521: l_message := '*** Feed AP/AR interface tables ***';
1522: --fnd_file.put_line(fnd_file.log , l_message);
1523: Populate_Interfaces(p_net_batch_id,p_org_id);
1524: --fnd_file.put_line(fnd_file.log , ' ');
1525: --fnd_file.put_line(fnd_file.log , ' ');
1526:

Line 1524: --fnd_file.put_line(fnd_file.log , ' ');

1520:
1521: l_message := '*** Feed AP/AR interface tables ***';
1522: --fnd_file.put_line(fnd_file.log , l_message);
1523: Populate_Interfaces(p_net_batch_id,p_org_id);
1524: --fnd_file.put_line(fnd_file.log , ' ');
1525: --fnd_file.put_line(fnd_file.log , ' ');
1526:
1527: l_message := '*** Execute AP/AR interfaces ***';
1528: --fnd_file.put_line(fnd_file.log , l_message);

Line 1525: --fnd_file.put_line(fnd_file.log , ' ');

1521: l_message := '*** Feed AP/AR interface tables ***';
1522: --fnd_file.put_line(fnd_file.log , l_message);
1523: Populate_Interfaces(p_net_batch_id,p_org_id);
1524: --fnd_file.put_line(fnd_file.log , ' ');
1525: --fnd_file.put_line(fnd_file.log , ' ');
1526:
1527: l_message := '*** Execute AP/AR interfaces ***';
1528: --fnd_file.put_line(fnd_file.log , l_message);
1529: Initiate_Interfaces(p_net_batch_id,p_org_id);

Line 1528: --fnd_file.put_line(fnd_file.log , l_message);

1524: --fnd_file.put_line(fnd_file.log , ' ');
1525: --fnd_file.put_line(fnd_file.log , ' ');
1526:
1527: l_message := '*** Execute AP/AR interfaces ***';
1528: --fnd_file.put_line(fnd_file.log , l_message);
1529: Initiate_Interfaces(p_net_batch_id,p_org_id);
1530:
1531: END Submit_Batch;
1532: