DBA Data[Home] [Help]

APPS.PA_FUNDS_CONTROL_PKG1 dependencies on PA_FUNDS_CONTROL_PKG

Line 1: package body PA_FUNDS_CONTROL_PKG1 as

1: package body PA_FUNDS_CONTROL_PKG1 as
2: -- $Header: PABCPKTB.pls 120.67.12020000.7 2013/03/06 09:13:35 admarath ship $
3:
4: -------------------------------------------------------------------------------------
5: -- Declare Global variables

Line 287: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside get_cwk_multiplier API');

283: l_pktrawamt Number :=0;
284: l_tot_rawamt Number :=0;
285: l_tot_bdamt Number :=0;
286: BEGIN
287: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside get_cwk_multiplier API');
288: If p_reference = 'GL' Then
289:
290: select sum(decode(com.parent_bc_packet_id, NULL, 0
291: ,decode(p_bd_disp_method,'D', decode(com.expenditure_type,p_expenditure_type

Line 329: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_comrawamt['||l_comrawamt||']l_pktrawamt['||l_pktrawamt||

325:
326: l_tot_rawamt := NVL(l_comrawamt,0) + nvl(l_pktrawamt,0);
327: l_tot_bdamt := nvl(l_combdamt,0) + nvl(l_pktbdamt,0) ;
328:
329: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_comrawamt['||l_comrawamt||']l_pktrawamt['||l_pktrawamt||
330: ']l_combdamt['||l_combdamt||']l_pktbdamt['||l_pktbdamt||']' );
331: If l_tot_rawamt = 0 Then
332: --divisor is zero so return the multiplier zero
333: l_cwk_multiplier := 0;

Line 340: pa_funds_control_pkg.log_message(p_msg_token1 => 'End of cwk Multiplier Value['||l_cwk_multiplier||']');

336: End If;
337:
338: END If;
339:
340: pa_funds_control_pkg.log_message(p_msg_token1 => 'End of cwk Multiplier Value['||l_cwk_multiplier||']');
341:
342: RETURN l_cwk_multiplier;
343: EXCEPTION
344:

Line 346: pa_funds_control_pkg.log_message(p_msg_token1 => 'Failed in cwk Multiplier API');

342: RETURN l_cwk_multiplier;
343: EXCEPTION
344:
345: WHEN OTHERS THEN
346: pa_funds_control_pkg.log_message(p_msg_token1 => 'Failed in cwk Multiplier API');
347: RAISE;
348:
349: END get_cwk_multiplier;
350: -----------------------------------------------------------------------------

Line 379: pa_funds_control_pkg.log_message(p_msg_token1 =>

375: x_base := NULL;
376: x_return_status := 'S';
377: x_error_msg_code := null;
378:
379: pa_funds_control_pkg.log_message(p_msg_token1 =>
380: 'Inside check_exp_of_cost_base api In parms are task id ['||
381: p_task_id||']exp_type ['||p_exp_type||'] ei_date[ '||p_ei_date||']' );
382:
383: IF (g_base_pre_task_id is null or g_base_pre_task_id <> p_task_id) OR

Line 386: pa_funds_control_pkg.log_message(p_msg_token1 =>'Inside if condition differnt ');

382:
383: IF (g_base_pre_task_id is null or g_base_pre_task_id <> p_task_id) OR
384: (g_base_pre_exp_type is null or g_base_pre_exp_type <> p_exp_type) OR
385: (g_base_pre_ei_date is null or trunc(g_base_pre_ei_date) <> trunc(p_ei_date) ) THEN
386: pa_funds_control_pkg.log_message(p_msg_token1 =>'Inside if condition differnt ');
387: pa_funds_control_pkg.log_message(p_msg_token1 =>'Value of p_sch_type= '||p_sch_type);
388: If p_sch_type = 'C' then
389: BEGIN
390: -- Select the Task level schedule override if not found

Line 387: pa_funds_control_pkg.log_message(p_msg_token1 =>'Value of p_sch_type= '||p_sch_type);

383: IF (g_base_pre_task_id is null or g_base_pre_task_id <> p_task_id) OR
384: (g_base_pre_exp_type is null or g_base_pre_exp_type <> p_exp_type) OR
385: (g_base_pre_ei_date is null or trunc(g_base_pre_ei_date) <> trunc(p_ei_date) ) THEN
386: pa_funds_control_pkg.log_message(p_msg_token1 =>'Inside if condition differnt ');
387: pa_funds_control_pkg.log_message(p_msg_token1 =>'Value of p_sch_type= '||p_sch_type);
388: If p_sch_type = 'C' then
389: BEGIN
390: -- Select the Task level schedule override if not found
391: -- then select the Project level override

Line 446: pa_funds_control_pkg.log_message(p_msg_token1=>'l_sch_id = '||l_sch_id);

442: x_base := NULL;
443: x_return_status := 'F';
444: END;
445:
446: pa_funds_control_pkg.log_message(p_msg_token1=>'l_sch_id = '||l_sch_id);
447: If l_sch_id is NOT NULL then
448: pa_funds_control_pkg.log_message(p_msg_token1=>
449: 'calling pa_cost_plus.get_revision_by_date');
450:

Line 448: pa_funds_control_pkg.log_message(p_msg_token1=>

444: END;
445:
446: pa_funds_control_pkg.log_message(p_msg_token1=>'l_sch_id = '||l_sch_id);
447: If l_sch_id is NOT NULL then
448: pa_funds_control_pkg.log_message(p_msg_token1=>
449: 'calling pa_cost_plus.get_revision_by_date');
450:
451: pa_cost_plus.get_revision_by_date
452: (l_sch_id

Line 458: pa_funds_control_pkg.log_message(p_msg_token1 =>

454: ,p_ei_date
455: ,l_rate_sch_rev_id
456: ,l_return_status
457: ,l_stage);
458: pa_funds_control_pkg.log_message(p_msg_token1 =>
459: 'After Calling pa_cost_plus.get_revision_by_date, l_return_status '||l_return_status);
460: IF l_rate_sch_rev_id is NULL then
461: x_error_msg_code := 'NO_IND_RATE_SCH_REVISION';
462: x_base := NULL;

Line 466: pa_funds_control_pkg.log_message(p_msg_token1=>'l_rate_sch_rev_id = '||l_rate_sch_rev_id);

462: x_base := NULL;
463: x_return_status := 'F';
464: END IF;
465: END IF;
466: pa_funds_control_pkg.log_message(p_msg_token1=>'l_rate_sch_rev_id = '||l_rate_sch_rev_id);
467: IF l_rate_sch_rev_id is NOT NULL then
468:
469: pa_funds_control_pkg.log_message(p_msg_token1=>
470: 'calling pa_cost_plus.get_cost_plus_structure');

Line 469: pa_funds_control_pkg.log_message(p_msg_token1=>

465: END IF;
466: pa_funds_control_pkg.log_message(p_msg_token1=>'l_rate_sch_rev_id = '||l_rate_sch_rev_id);
467: IF l_rate_sch_rev_id is NOT NULL then
468:
469: pa_funds_control_pkg.log_message(p_msg_token1=>
470: 'calling pa_cost_plus.get_cost_plus_structure');
471:
472: pa_cost_plus.get_cost_plus_structure
473: (rate_sch_rev_id =>l_rate_sch_rev_id

Line 478: pa_funds_control_pkg.log_message(p_msg_token1 =>

474: ,cp_structure =>l_cp_structure
475: ,status =>l_return_status
476: ,stage =>l_stage);
477:
478: pa_funds_control_pkg.log_message(p_msg_token1 =>
479: 'After Calling pa_cost_plus.get_cost_plus_structure, l_return_status '||l_return_status);
480:
481: IF l_cp_structure is NULL then
482: x_error_msg_code := 'NO_COST_PLUS_STRUCTURE';

Line 488: pa_funds_control_pkg.log_message(p_msg_token1=>'cost plus structure ='||l_cp_structure);

484: x_return_status := 'F';
485:
486: End if;
487: End IF;
488: pa_funds_control_pkg.log_message(p_msg_token1=>'cost plus structure ='||l_cp_structure);
489: l_base := null;
490: IF l_cp_structure is NOT NULL and p_exp_type is NOT NULL then
491:
492: pa_funds_control_pkg.log_message(p_msg_token1=>

Line 492: pa_funds_control_pkg.log_message(p_msg_token1=>

488: pa_funds_control_pkg.log_message(p_msg_token1=>'cost plus structure ='||l_cp_structure);
489: l_base := null;
490: IF l_cp_structure is NOT NULL and p_exp_type is NOT NULL then
491:
492: pa_funds_control_pkg.log_message(p_msg_token1=>
493: 'calling pa_cost_plus.get_cost_base');
494:
495: pa_cost_plus.get_cost_base
496: (exp_type => p_exp_type

Line 501: pa_funds_control_pkg.log_message(p_msg_token1=>'l_base ='||l_base);

497: ,cp_structure => l_cp_structure
498: ,c_base => l_base
499: ,status => l_return_status
500: ,stage => l_stage);
501: pa_funds_control_pkg.log_message(p_msg_token1=>'l_base ='||l_base);
502:
503: pa_funds_control_pkg.log_message(p_msg_token1 =>
504: 'After Calling pa_cost_plus.get_cost_base, l_return_status and l_base are '||l_return_status||','||l_base);
505:

Line 503: pa_funds_control_pkg.log_message(p_msg_token1 =>

499: ,status => l_return_status
500: ,stage => l_stage);
501: pa_funds_control_pkg.log_message(p_msg_token1=>'l_base ='||l_base);
502:
503: pa_funds_control_pkg.log_message(p_msg_token1 =>
504: 'After Calling pa_cost_plus.get_cost_base, l_return_status and l_base are '||l_return_status||','||l_base);
505:
506: x_base := l_base;
507: x_cp_structure := l_cp_structure;

Line 528: pa_funds_control_pkg.log_message(p_msg_token1=>'Pre cached values');

524: g_pre_base := x_base;
525: g_pre_cp_structure := x_cp_structure;
526:
527: Else -- pre cache
528: pa_funds_control_pkg.log_message(p_msg_token1=>'Pre cached values');
529: x_return_status := g_base_return_status;
530: x_error_msg_code := g_base_error_msg_code;
531: x_base := g_pre_base;
532: x_cp_structure := g_pre_cp_structure;

Line 535: pa_funds_control_pkg.log_message(p_msg_token1=>'x_msg_code[ '||x_error_msg_code||

531: x_base := g_pre_base;
532: x_cp_structure := g_pre_cp_structure;
533: End if;
534:
535: pa_funds_control_pkg.log_message(p_msg_token1=>'x_msg_code[ '||x_error_msg_code||
536: ']x_retun status [ '||x_return_status||']x_base ['||x_base||
537: ']g_base_return_status ['||g_base_return_status|| ']g_base_error_msg_code['||g_base_error_msg_code||
538: ']g_base_pre_task_id ['||g_base_pre_task_id||']g_base_pre_ei_date['||g_base_pre_ei_date||
539: ']g_base_pre_exp_type['||g_base_pre_exp_type||'] cp structure['||g_pre_cp_structure||']' );

Line 546: pa_funds_control_pkg.log_message

542:
543: EXCEPTION
544:
545: WHEN OTHERS THEN
546: pa_funds_control_pkg.log_message
547: (p_msg_token2 => 'Failed in check_exp_of_cost_base api');
548: pa_funds_control_pkg.log_message
549: (p_msg_token2 => sqlcode||sqlerrm);
550:

Line 548: pa_funds_control_pkg.log_message

544:
545: WHEN OTHERS THEN
546: pa_funds_control_pkg.log_message
547: (p_msg_token2 => 'Failed in check_exp_of_cost_base api');
548: pa_funds_control_pkg.log_message
549: (p_msg_token2 => sqlcode||sqlerrm);
550:
551: --R12: NOCOPY changes
552: x_base := NULL;

Line 739: pa_funds_control_pkg.log_message(p_msg_token1 =>'Inside upd_cwk_attributes API params:packetId['||p_packet_id||

735: * then update the record with amt columns, If no record exists in bc_commiemtns or
736: * the record exists in bc_packets which is not yet swept then update the amts only
737: * If the summary record is creating first time then update all the relevent columns
738: */
739: pa_funds_control_pkg.log_message(p_msg_token1 =>'Inside upd_cwk_attributes API params:packetId['||p_packet_id||
740: ']mode['||p_mode||']callingModule['||p_calling_module||']Reference['||p_reference||']');
741:
742: IF p_calling_module NOT IN ('CBC','CHECK_BASELINE','RESERVE_BASELINE') Then
743:

Line 782: pa_funds_control_pkg.log_message(p_msg_token1 =>'Project['||cwk.project_id||']Task['||cwk.task_id||

778: OPEN cur_potrxs;
779: FETCH cur_potrxs INTO l_po_exists;
780: CLOSE cur_potrxs;
781:
782: pa_funds_control_pkg.log_message(p_msg_token1 =>'Project['||cwk.project_id||']Task['||cwk.task_id||
783: ']Budgetver['||cwk.budget_version_id||']DocLineid['||cwk.document_line_id||
784: ']ExpType['||cwk.expenditure_type||']BurdDispMethod['||cwk.burden_amt_display_method||
785: ']CommSumRecflag['||l_commsummrec||']PktSumRecflag['||l_pktsummrec||
786: ']poexistsflag['||l_po_exists||']line_type['||cwk.line_type||']');

Line 801: pa_funds_control_pkg.log_message(p_msg_token1 => 'CommRawAmt['||l_comm_raw_amt||']CommbdAmt['||l_comm_bd_amt||

797: ,l_comm_bd_amt
798: ,l_relvd_comm_raw_amt
799: ,l_relvd_comm_bd_amt ;
800: CLOSE cur_cwk_amts;
801: pa_funds_control_pkg.log_message(p_msg_token1 => 'CommRawAmt['||l_comm_raw_amt||']CommbdAmt['||l_comm_bd_amt||
802: ']RelvdComm['||l_relvd_comm_raw_amt||']RelvdBd['||l_relvd_comm_bd_amt||']');
803: l_rows_updated := 0;
804: UPDATE pa_bc_commitments_all com
805: SET com.comm_tot_raw_amt = nvl(com.comm_tot_raw_amt,0) +

Line 860: pa_funds_control_pkg.log_message(p_msg_token1 => 'CommRawAmt['||l_comm_raw_amt||']CommbdAmt['||l_comm_bd_amt||

856: ,l_comm_bd_amt
857: ,l_relvd_comm_raw_amt
858: ,l_relvd_comm_bd_amt ;
859: CLOSE cur_cwk_amts;
860: pa_funds_control_pkg.log_message(p_msg_token1 => 'CommRawAmt['||l_comm_raw_amt||']CommbdAmt['||l_comm_bd_amt||
861: ']RelvdComm['||l_relvd_comm_raw_amt||']RelvdBd['||l_relvd_comm_bd_amt||']');
862: l_rows_updated := 0;
863: UPDATE pa_bc_packets pkt
864: SET pkt.comm_tot_raw_amt = nvl(pkt.comm_tot_raw_amt,0) +

Line 917: pa_funds_control_pkg.log_message(p_msg_token1=> l_stage);

913:
914: l_rows_updated := 0;
915: IF nvl(l_commsummrec,'N') = 'N' and nvl(l_pktsummrec,'N') = 'N' and l_po_exists = 'Y' Then
916: l_stage := 'Updating packets summary record flag';
917: pa_funds_control_pkg.log_message(p_msg_token1=> l_stage);
918: UPDATE pa_bc_packets pkt
919: SET pkt.summary_record_flag = decode (pkt.summary_record_flag,NULL,'Y',pkt.summary_record_flag)
920: WHERE pkt.packet_id = p_packet_id
921: AND pkt.document_type = 'PO'

Line 1066: pa_funds_control_pkg.log_message(p_msg_token1 =>l_stage||'- Num of Rows cwk attribute Updated['||l_rows_updated||']');

1062: End if ; -- end of sum record flag
1063:
1064: END IF; -- end of p_mode
1065:
1066: pa_funds_control_pkg.log_message(p_msg_token1 =>l_stage||'- Num of Rows cwk attribute Updated['||l_rows_updated||']');
1067:
1068: END LOOP; -- end of cur_cwkRecs cursor
1069:
1070: END IF; -- end of calling module

Line 1127: ('PA_FUNDS_CONTROL_PKG1.create_unrrsvd_lines');

1123:
1124: BEGIN
1125:
1126: PA_DEBUG.set_curr_function
1127: ('PA_FUNDS_CONTROL_PKG1.create_unrrsvd_lines');
1128:
1129: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
1130: l_debug_mode := NVL(l_debug_mode, 'N');
1131:

Line 1137: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside the create_unreserve_pkt api');

1133: ,x_write_file => 'LOG'
1134: ,x_debug_mode => l_debug_mode
1135: );
1136:
1137: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside the create_unreserve_pkt api');
1138:
1139: If l_request_id is null then
1140: l_request_id := -1;
1141: End if;

Line 1154: pa_funds_control_pkg.log_message(p_msg_token1 => 'p_calling_module='||p_calling_module||' p_mode='||p_mode);

1150: If l_update_login is null then
1151: l_update_login := -1;
1152: End if;
1153:
1154: pa_funds_control_pkg.log_message(p_msg_token1 => 'p_calling_module='||p_calling_module||' p_mode='||p_mode);
1155:
1156: If p_calling_module = 'GL' and p_mode in ('U') then -- unreserved
1157: OPEN cur_packet ;
1158: FETCH cur_packet INTO l_packet_id;

Line 1161: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inserting records in pa_bc_packets');

1157: OPEN cur_packet ;
1158: FETCH cur_packet INTO l_packet_id;
1159: CLOSE cur_packet;
1160:
1161: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inserting records in pa_bc_packets');
1162:
1163: INSERT INTO pa_bc_packets
1164: ( ---- who columns------
1165: request_id,

Line 1292: pa_funds_control_pkg.log_message(p_msg_token1 => 'New packet id ='|| x_packet_id);

1288: WHERE pbc.packet_id = x_packet_id;
1289:
1290: If sql%rowcount > 0 then
1291: --assign the new packet id to out parameter
1292: pa_funds_control_pkg.log_message(p_msg_token1 => 'New packet id ='|| x_packet_id);
1293: x_packet_id := l_packet_id;
1294: End if;
1295:
1296: Elsif p_calling_module = 'CBC' and p_mode in ('U')

Line 1301: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inserting records in pa_bc_packets');

1297: and p_reference1 is not null and p_reference2 is not null then -- unreserved
1298: OPEN cur_packet ;
1299: FETCH cur_packet INTO l_packet_id;
1300: CLOSE cur_packet;
1301: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inserting records in pa_bc_packets');
1302:
1303: INSERT INTO pa_bc_packets
1304: ( ---- who columns------
1305: request_id,

Line 1499: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1495: AND substr(nvl(result_code,'P'),1,1) = 'P');
1496:
1497: BEGIN
1498:
1499: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1500: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Start');
1501: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of p_req_distribution_id '||p_req_distribution_id );
1502: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of p_req_prevent_enc_flipped '||p_req_prevent_enc_flipped );
1503: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of x_status_code '||x_status_code );

Line 1500: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Start');

1496:
1497: BEGIN
1498:
1499: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1500: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Start');
1501: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of p_req_distribution_id '||p_req_distribution_id );
1502: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of p_req_prevent_enc_flipped '||p_req_prevent_enc_flipped );
1503: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of x_status_code '||x_status_code );
1504: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of x_result_code '||x_result_code );

Line 1501: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of p_req_distribution_id '||p_req_distribution_id );

1497: BEGIN
1498:
1499: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1500: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Start');
1501: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of p_req_distribution_id '||p_req_distribution_id );
1502: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of p_req_prevent_enc_flipped '||p_req_prevent_enc_flipped );
1503: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of x_status_code '||x_status_code );
1504: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of x_result_code '||x_result_code );
1505: End if;

Line 1502: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of p_req_prevent_enc_flipped '||p_req_prevent_enc_flipped );

1498:
1499: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1500: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Start');
1501: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of p_req_distribution_id '||p_req_distribution_id );
1502: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of p_req_prevent_enc_flipped '||p_req_prevent_enc_flipped );
1503: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of x_status_code '||x_status_code );
1504: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of x_result_code '||x_result_code );
1505: End if;
1506:

Line 1503: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of x_status_code '||x_status_code );

1499: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1500: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Start');
1501: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of p_req_distribution_id '||p_req_distribution_id );
1502: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of p_req_prevent_enc_flipped '||p_req_prevent_enc_flipped );
1503: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of x_status_code '||x_status_code );
1504: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of x_result_code '||x_result_code );
1505: End if;
1506:
1507: l_return_flag :='N';

Line 1504: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of x_result_code '||x_result_code );

1500: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Start');
1501: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of p_req_distribution_id '||p_req_distribution_id );
1502: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of p_req_prevent_enc_flipped '||p_req_prevent_enc_flipped );
1503: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of x_status_code '||x_status_code );
1504: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Value of x_result_code '||x_result_code );
1505: End if;
1506:
1507: l_return_flag :='N';
1508:

Line 1520: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1516: CLOSE get_podetails;
1517:
1518: l_req_found_flag := 'N';
1519:
1520: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1521: pa_funds_control_pkg.log_message(p_msg_token1 => ' x_reference1 = '||x_reference1);
1522: pa_funds_control_pkg.log_message(p_msg_token1 => ' x_reference2 = '||x_reference2);
1523: pa_funds_control_pkg.log_message(p_msg_token1 => ' x_reference3 = '||x_reference3);
1524: End if;

Line 1521: pa_funds_control_pkg.log_message(p_msg_token1 => ' x_reference1 = '||x_reference1);

1517:
1518: l_req_found_flag := 'N';
1519:
1520: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1521: pa_funds_control_pkg.log_message(p_msg_token1 => ' x_reference1 = '||x_reference1);
1522: pa_funds_control_pkg.log_message(p_msg_token1 => ' x_reference2 = '||x_reference2);
1523: pa_funds_control_pkg.log_message(p_msg_token1 => ' x_reference3 = '||x_reference3);
1524: End if;
1525:

Line 1522: pa_funds_control_pkg.log_message(p_msg_token1 => ' x_reference2 = '||x_reference2);

1518: l_req_found_flag := 'N';
1519:
1520: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1521: pa_funds_control_pkg.log_message(p_msg_token1 => ' x_reference1 = '||x_reference1);
1522: pa_funds_control_pkg.log_message(p_msg_token1 => ' x_reference2 = '||x_reference2);
1523: pa_funds_control_pkg.log_message(p_msg_token1 => ' x_reference3 = '||x_reference3);
1524: End if;
1525:
1526: OPEN c_req_raw_burden;

Line 1523: pa_funds_control_pkg.log_message(p_msg_token1 => ' x_reference3 = '||x_reference3);

1519:
1520: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1521: pa_funds_control_pkg.log_message(p_msg_token1 => ' x_reference1 = '||x_reference1);
1522: pa_funds_control_pkg.log_message(p_msg_token1 => ' x_reference2 = '||x_reference2);
1523: pa_funds_control_pkg.log_message(p_msg_token1 => ' x_reference3 = '||x_reference3);
1524: End if;
1525:
1526: OPEN c_req_raw_burden;
1527: LOOP

Line 1540: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1536: x_result_code := 'F137' ; -- No matching requisition record found
1537: x_status_code := 'R';
1538: END IF;
1539: END IF;
1540: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1541: pa_funds_control_pkg.log_message(p_msg_token1 => 'No matching requisition record found ');
1542: End if;
1543: EXIT;
1544: END IF;

Line 1541: pa_funds_control_pkg.log_message(p_msg_token1 => 'No matching requisition record found ');

1537: x_status_code := 'R';
1538: END IF;
1539: END IF;
1540: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1541: pa_funds_control_pkg.log_message(p_msg_token1 => 'No matching requisition record found ');
1542: End if;
1543: EXIT;
1544: END IF;
1545:

Line 1552: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1548:
1549: -- If burden record is found then intialize x_bc_commitment_id OUT variable
1550: IF l_parent_bc_packet_id IS NOT NULL THEN
1551: l_return_flag := 'Y';
1552: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1553: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_parent_bc_packet_id = '||l_parent_bc_packet_id);
1554: End if;
1555: EXIT;
1556: END IF;

Line 1553: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_parent_bc_packet_id = '||l_parent_bc_packet_id);

1549: -- If burden record is found then intialize x_bc_commitment_id OUT variable
1550: IF l_parent_bc_packet_id IS NOT NULL THEN
1551: l_return_flag := 'Y';
1552: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1553: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_parent_bc_packet_id = '||l_parent_bc_packet_id);
1554: End if;
1555: EXIT;
1556: END IF;
1557:

Line 1561: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1557:
1558: END LOOP;
1559: CLOSE c_req_raw_burden;
1560:
1561: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1562: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - End l_return_flag ='||l_return_flag);
1563: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - End x_status_code '||x_status_code );
1564: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - End x_result_code '||x_result_code );
1565: End if;

Line 1562: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - End l_return_flag ='||l_return_flag);

1558: END LOOP;
1559: CLOSE c_req_raw_burden;
1560:
1561: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1562: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - End l_return_flag ='||l_return_flag);
1563: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - End x_status_code '||x_status_code );
1564: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - End x_result_code '||x_result_code );
1565: End if;
1566:

Line 1563: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - End x_status_code '||x_status_code );

1559: CLOSE c_req_raw_burden;
1560:
1561: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1562: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - End l_return_flag ='||l_return_flag);
1563: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - End x_status_code '||x_status_code );
1564: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - End x_result_code '||x_result_code );
1565: End if;
1566:
1567: return l_return_flag;

Line 1564: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - End x_result_code '||x_result_code );

1560:
1561: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1562: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - End l_return_flag ='||l_return_flag);
1563: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - End x_status_code '||x_status_code );
1564: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - End x_result_code '||x_result_code );
1565: End if;
1566:
1567: return l_return_flag;
1568:

Line 1571: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1567: return l_return_flag;
1568:
1569: EXCEPTION
1570: WHEN OTHERS THEN
1571: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1572: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Exception'||SQLERRM);
1573: End if;
1574:
1575: Raise;

Line 1572: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Exception'||SQLERRM);

1568:
1569: EXCEPTION
1570: WHEN OTHERS THEN
1571: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1572: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_REQ_BASED_PO - Exception'||SQLERRM);
1573: End if;
1574:
1575: Raise;
1576: END is_req_based_po;

Line 1640: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1636: AND NVL(pbc.document_header_id_2 ,-99) = NVL(p_po_release_id,-99));
1637:
1638: BEGIN
1639:
1640: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1641: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_PO_BASED_INVOICE - Start');
1642: End if;
1643:
1644: OPEN po_cur;

Line 1641: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_PO_BASED_INVOICE - Start');

1637:
1638: BEGIN
1639:
1640: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1641: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_PO_BASED_INVOICE - Start');
1642: End if;
1643:
1644: OPEN po_cur;
1645: FETCH po_cur INTO

Line 1658: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1654: FETCH cc_cur into
1655: l_cc_distribution_id;
1656: CLOSE cc_cur;
1657:
1658: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1659: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_header_id ='||l_cc_header_id);
1660: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_det_pf_line_id ='||l_cc_det_pf_line_id);
1661: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_po_destination_type ='||l_po_destination_type);
1662: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_distribution_id ='||l_cc_distribution_id);

Line 1659: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_header_id ='||l_cc_header_id);

1655: l_cc_distribution_id;
1656: CLOSE cc_cur;
1657:
1658: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1659: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_header_id ='||l_cc_header_id);
1660: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_det_pf_line_id ='||l_cc_det_pf_line_id);
1661: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_po_destination_type ='||l_po_destination_type);
1662: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_distribution_id ='||l_cc_distribution_id);
1663: pa_funds_control_pkg.log_message(p_msg_token1 => ' p_po_release_id ='||p_po_release_id);

Line 1660: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_det_pf_line_id ='||l_cc_det_pf_line_id);

1656: CLOSE cc_cur;
1657:
1658: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1659: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_header_id ='||l_cc_header_id);
1660: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_det_pf_line_id ='||l_cc_det_pf_line_id);
1661: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_po_destination_type ='||l_po_destination_type);
1662: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_distribution_id ='||l_cc_distribution_id);
1663: pa_funds_control_pkg.log_message(p_msg_token1 => ' p_po_release_id ='||p_po_release_id);
1664: End if;

Line 1661: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_po_destination_type ='||l_po_destination_type);

1657:
1658: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1659: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_header_id ='||l_cc_header_id);
1660: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_det_pf_line_id ='||l_cc_det_pf_line_id);
1661: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_po_destination_type ='||l_po_destination_type);
1662: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_distribution_id ='||l_cc_distribution_id);
1663: pa_funds_control_pkg.log_message(p_msg_token1 => ' p_po_release_id ='||p_po_release_id);
1664: End if;
1665:

Line 1662: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_distribution_id ='||l_cc_distribution_id);

1658: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1659: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_header_id ='||l_cc_header_id);
1660: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_det_pf_line_id ='||l_cc_det_pf_line_id);
1661: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_po_destination_type ='||l_po_destination_type);
1662: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_distribution_id ='||l_cc_distribution_id);
1663: pa_funds_control_pkg.log_message(p_msg_token1 => ' p_po_release_id ='||p_po_release_id);
1664: End if;
1665:
1666: IF nvl(l_po_destination_type,'EXPENSE') in('INVENTORY','SHOP FLOOR') then

Line 1663: pa_funds_control_pkg.log_message(p_msg_token1 => ' p_po_release_id ='||p_po_release_id);

1659: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_header_id ='||l_cc_header_id);
1660: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_det_pf_line_id ='||l_cc_det_pf_line_id);
1661: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_po_destination_type ='||l_po_destination_type);
1662: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_cc_distribution_id ='||l_cc_distribution_id);
1663: pa_funds_control_pkg.log_message(p_msg_token1 => ' p_po_release_id ='||p_po_release_id);
1664: End if;
1665:
1666: IF nvl(l_po_destination_type,'EXPENSE') in('INVENTORY','SHOP FLOOR') then
1667:

Line 1668: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1664: End if;
1665:
1666: IF nvl(l_po_destination_type,'EXPENSE') in('INVENTORY','SHOP FLOOR') then
1667:
1668: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1669: pa_funds_control_pkg.log_message(p_msg_token1 => ' PO is Inventory based so update status code to S');
1670: End if;
1671:
1672: x_result_code := 'P113';

Line 1669: pa_funds_control_pkg.log_message(p_msg_token1 => ' PO is Inventory based so update status code to S');

1665:
1666: IF nvl(l_po_destination_type,'EXPENSE') in('INVENTORY','SHOP FLOOR') then
1667:
1668: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1669: pa_funds_control_pkg.log_message(p_msg_token1 => ' PO is Inventory based so update status code to S');
1670: End if;
1671:
1672: x_result_code := 'P113';
1673: x_status_code := 'V';

Line 1692: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1688: IF l_po_found_flag = 'N' THEN
1689: x_result_code := 'F138'; -- No matching PO record found for this Invoice
1690: x_status_code := 'R';
1691: END IF;
1692: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1693: pa_funds_control_pkg.log_message(p_msg_token1 => ' No matching PO record found for this Invoice - F138');
1694: End if;
1695: EXIT;
1696: END IF;

Line 1693: pa_funds_control_pkg.log_message(p_msg_token1 => ' No matching PO record found for this Invoice - F138');

1689: x_result_code := 'F138'; -- No matching PO record found for this Invoice
1690: x_status_code := 'R';
1691: END IF;
1692: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1693: pa_funds_control_pkg.log_message(p_msg_token1 => ' No matching PO record found for this Invoice - F138');
1694: End if;
1695: EXIT;
1696: END IF;
1697:

Line 1704: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1700:
1701: -- If burden record is found then intialize x_bc_commitment_id OUT variable
1702: IF l_parent_bc_packet_id IS NOT NULL THEN
1703: l_return_flag := 'Y';
1704: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1705: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_parent_bc_packet_id ='||l_parent_bc_packet_id);
1706: End if;
1707: EXIT;
1708: END IF;

Line 1705: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_parent_bc_packet_id ='||l_parent_bc_packet_id);

1701: -- If burden record is found then intialize x_bc_commitment_id OUT variable
1702: IF l_parent_bc_packet_id IS NOT NULL THEN
1703: l_return_flag := 'Y';
1704: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1705: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_parent_bc_packet_id ='||l_parent_bc_packet_id);
1706: End if;
1707: EXIT;
1708: END IF;
1709:

Line 1717: pa_funds_control_pkg.log_message(p_msg_token1 => ' In not null condition =' );

1713:
1714: -- Code supporting existing CC flow
1715: IF l_po_found_flag = 'N' and l_cc_header_id is not null and l_cc_det_pf_line_id is not null then
1716:
1717: pa_funds_control_pkg.log_message(p_msg_token1 => ' In not null condition =' );
1718: l_cc_found_flag := 'N';
1719:
1720: --OPEN c_po_raw_burden(p_po_distribution_id,p_po_header_id,'CC_C_PAY') ;
1721: -- Changed for 13903042

Line 1730: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1726: IF l_cc_found_flag = 'N' THEN
1727: x_result_code := 'F138'; -- No matching CC record found for this Invoice
1728: x_status_code := 'R';
1729: END IF;
1730: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1731: pa_funds_control_pkg.log_message(p_msg_token1 => 'No matching CC record found for this Invoice');
1732: End if;
1733: EXIT;
1734: END IF;

Line 1731: pa_funds_control_pkg.log_message(p_msg_token1 => 'No matching CC record found for this Invoice');

1727: x_result_code := 'F138'; -- No matching CC record found for this Invoice
1728: x_status_code := 'R';
1729: END IF;
1730: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1731: pa_funds_control_pkg.log_message(p_msg_token1 => 'No matching CC record found for this Invoice');
1732: End if;
1733: EXIT;
1734: END IF;
1735:

Line 1742: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1738:
1739: -- If burden record is found then intialize x_bc_commitment_id OUT variable
1740: IF l_parent_bc_packet_id IS NOT NULL THEN
1741: l_return_flag := 'Y';
1742: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1743: pa_funds_control_pkg.log_message(p_msg_token1 => ' Parent PO burden record found');
1744: End if;
1745: EXIT;
1746: END IF;

Line 1743: pa_funds_control_pkg.log_message(p_msg_token1 => ' Parent PO burden record found');

1739: -- If burden record is found then intialize x_bc_commitment_id OUT variable
1740: IF l_parent_bc_packet_id IS NOT NULL THEN
1741: l_return_flag := 'Y';
1742: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1743: pa_funds_control_pkg.log_message(p_msg_token1 => ' Parent PO burden record found');
1744: End if;
1745: EXIT;
1746: END IF;
1747:

Line 1753: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1749: CLOSE c_po_raw_burden;
1750: END IF; --IF l_po_found_flag = 'N' and l_cc_header_id is not null and l_cc_det_pf_line_id is not null then
1751: END IF; --IF nvl(l_po_destination_type,'EXPENSE') in('INVENTORY','SHOP FLOOR') then
1752:
1753: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1754: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_PO_BASED_INVOICE - End l_return_flag =' ||l_return_flag);
1755: End if;
1756:
1757: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_return_flag ' ||l_return_flag);

Line 1754: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_PO_BASED_INVOICE - End l_return_flag =' ||l_return_flag);

1750: END IF; --IF l_po_found_flag = 'N' and l_cc_header_id is not null and l_cc_det_pf_line_id is not null then
1751: END IF; --IF nvl(l_po_destination_type,'EXPENSE') in('INVENTORY','SHOP FLOOR') then
1752:
1753: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1754: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_PO_BASED_INVOICE - End l_return_flag =' ||l_return_flag);
1755: End if;
1756:
1757: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_return_flag ' ||l_return_flag);
1758:

Line 1757: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_return_flag ' ||l_return_flag);

1753: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1754: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_PO_BASED_INVOICE - End l_return_flag =' ||l_return_flag);
1755: End if;
1756:
1757: pa_funds_control_pkg.log_message(p_msg_token1 => ' l_return_flag ' ||l_return_flag);
1758:
1759: Return l_return_flag;
1760:
1761: EXCEPTION

Line 1764: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1760:
1761: EXCEPTION
1762: WHEN OTHERS THEN
1763:
1764: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1765: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_PO_BASED_INVOICE - Exception'||SQLERRM);
1766: End if;
1767:
1768: Raise;

Line 1765: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_PO_BASED_INVOICE - Exception'||SQLERRM);

1761: EXCEPTION
1762: WHEN OTHERS THEN
1763:
1764: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1765: pa_funds_control_pkg.log_message(p_msg_token1 => ' IS_PO_BASED_INVOICE - Exception'||SQLERRM);
1766: End if;
1767:
1768: Raise;
1769:

Line 1776: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1772: PROCEDURE COPY_AP_RECORD (p_copy_from_index IN NUMBER,
1773: p_new_rec_index IN NUMBER) IS
1774: BEGIN
1775:
1776: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1777: pa_funds_control_pkg.log_message(p_msg_token1 => 'COPY_AP_RECORD - Start');
1778: End if;
1779:
1780: g_tab_budget_version_id(p_new_rec_index) := g_tab_budget_version_id(p_copy_from_index);

Line 1777: pa_funds_control_pkg.log_message(p_msg_token1 => 'COPY_AP_RECORD - Start');

1773: p_new_rec_index IN NUMBER) IS
1774: BEGIN
1775:
1776: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1777: pa_funds_control_pkg.log_message(p_msg_token1 => 'COPY_AP_RECORD - Start');
1778: End if;
1779:
1780: g_tab_budget_version_id(p_new_rec_index) := g_tab_budget_version_id(p_copy_from_index);
1781: g_tab_budget_line_id(p_new_rec_index) := g_tab_budget_line_id(p_copy_from_index);

Line 1833: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1829: select pa_bc_packets_s.nextval
1830: into g_tab_bc_packet_id(p_new_rec_index)
1831: from dual;
1832:
1833: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1834: pa_funds_control_pkg.log_message(p_msg_token1 => 'COPY_AP_RECORD - End');
1835: End if;
1836:
1837: EXCEPTION

Line 1834: pa_funds_control_pkg.log_message(p_msg_token1 => 'COPY_AP_RECORD - End');

1830: into g_tab_bc_packet_id(p_new_rec_index)
1831: from dual;
1832:
1833: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1834: pa_funds_control_pkg.log_message(p_msg_token1 => 'COPY_AP_RECORD - End');
1835: End if;
1836:
1837: EXCEPTION
1838: WHEN OTHERS THEN

Line 1840: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1836:
1837: EXCEPTION
1838: WHEN OTHERS THEN
1839:
1840: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1841: pa_funds_control_pkg.log_message(p_msg_token1 => 'COPY_AP_RECORD - EXception'||SQLERRM);
1842: End if;
1843:
1844: RAISE;

Line 1841: pa_funds_control_pkg.log_message(p_msg_token1 => 'COPY_AP_RECORD - EXception'||SQLERRM);

1837: EXCEPTION
1838: WHEN OTHERS THEN
1839:
1840: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1841: pa_funds_control_pkg.log_message(p_msg_token1 => 'COPY_AP_RECORD - EXception'||SQLERRM);
1842: End if;
1843:
1844: RAISE;
1845:

Line 1878: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1874: AND p_po_release_id IS NOT NULL;
1875:
1876: BEGIN
1877:
1878: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1879: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_AP_PO_RECORD - Start');
1880: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_copy_from_index ='||p_copy_from_index);
1881: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_new_rec_index ='||p_new_rec_index);
1882: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling COPY_AP_RECORD');

Line 1879: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_AP_PO_RECORD - Start');

1875:
1876: BEGIN
1877:
1878: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1879: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_AP_PO_RECORD - Start');
1880: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_copy_from_index ='||p_copy_from_index);
1881: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_new_rec_index ='||p_new_rec_index);
1882: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling COPY_AP_RECORD');
1883: End if;

Line 1880: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_copy_from_index ='||p_copy_from_index);

1876: BEGIN
1877:
1878: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1879: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_AP_PO_RECORD - Start');
1880: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_copy_from_index ='||p_copy_from_index);
1881: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_new_rec_index ='||p_new_rec_index);
1882: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling COPY_AP_RECORD');
1883: End if;
1884:

Line 1881: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_new_rec_index ='||p_new_rec_index);

1877:
1878: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1879: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_AP_PO_RECORD - Start');
1880: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_copy_from_index ='||p_copy_from_index);
1881: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_new_rec_index ='||p_new_rec_index);
1882: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling COPY_AP_RECORD');
1883: End if;
1884:
1885: COPY_AP_RECORD (p_copy_from_index,p_new_rec_index);

Line 1882: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling COPY_AP_RECORD');

1878: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1879: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_AP_PO_RECORD - Start');
1880: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_copy_from_index ='||p_copy_from_index);
1881: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_new_rec_index ='||p_new_rec_index);
1882: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling COPY_AP_RECORD');
1883: End if;
1884:
1885: COPY_AP_RECORD (p_copy_from_index,p_new_rec_index);
1886:

Line 1887: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1883: End if;
1884:
1885: COPY_AP_RECORD (p_copy_from_index,p_new_rec_index);
1886:
1887: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1888: pa_funds_control_pkg.log_message(p_msg_token1 => 'After Calling COPY_AP_RECORD');
1889: pa_funds_control_pkg.log_message(p_msg_token1 => 'Overwriting few of PO column values');
1890: End if;
1891:

Line 1888: pa_funds_control_pkg.log_message(p_msg_token1 => 'After Calling COPY_AP_RECORD');

1884:
1885: COPY_AP_RECORD (p_copy_from_index,p_new_rec_index);
1886:
1887: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1888: pa_funds_control_pkg.log_message(p_msg_token1 => 'After Calling COPY_AP_RECORD');
1889: pa_funds_control_pkg.log_message(p_msg_token1 => 'Overwriting few of PO column values');
1890: End if;
1891:
1892: g_tab_doc_distribution_id(p_new_rec_index) := g_tab_ap_po_distribution_id(p_copy_from_index);

Line 1889: pa_funds_control_pkg.log_message(p_msg_token1 => 'Overwriting few of PO column values');

1885: COPY_AP_RECORD (p_copy_from_index,p_new_rec_index);
1886:
1887: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1888: pa_funds_control_pkg.log_message(p_msg_token1 => 'After Calling COPY_AP_RECORD');
1889: pa_funds_control_pkg.log_message(p_msg_token1 => 'Overwriting few of PO column values');
1890: End if;
1891:
1892: g_tab_doc_distribution_id(p_new_rec_index) := g_tab_ap_po_distribution_id(p_copy_from_index);
1893: g_tab_je_source_name(p_new_rec_index) := 'Purchasing';

Line 1925: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1921: Else
1922: Copy accounted amounts for PO relieving record from those on the invoice */
1923:
1924: If g_tab_rate(p_new_rec_index) is NOT NULL then
1925: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1926: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calculating accounted amounts for PO relieving record from its entered amounts and rate');
1927: pa_funds_control_pkg.log_message(p_msg_token1 => 'Rate : '||g_tab_rate(p_new_rec_index));
1928: End if;
1929: g_tab_accounted_dr(p_new_rec_index) := g_tab_entered_dr(p_new_rec_index) * g_tab_rate(p_new_rec_index);

Line 1926: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calculating accounted amounts for PO relieving record from its entered amounts and rate');

1922: Copy accounted amounts for PO relieving record from those on the invoice */
1923:
1924: If g_tab_rate(p_new_rec_index) is NOT NULL then
1925: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1926: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calculating accounted amounts for PO relieving record from its entered amounts and rate');
1927: pa_funds_control_pkg.log_message(p_msg_token1 => 'Rate : '||g_tab_rate(p_new_rec_index));
1928: End if;
1929: g_tab_accounted_dr(p_new_rec_index) := g_tab_entered_dr(p_new_rec_index) * g_tab_rate(p_new_rec_index);
1930: g_tab_accounted_cr(p_new_rec_index) := g_tab_entered_cr(p_new_rec_index) * g_tab_rate(p_new_rec_index);

Line 1927: pa_funds_control_pkg.log_message(p_msg_token1 => 'Rate : '||g_tab_rate(p_new_rec_index));

1923:
1924: If g_tab_rate(p_new_rec_index) is NOT NULL then
1925: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1926: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calculating accounted amounts for PO relieving record from its entered amounts and rate');
1927: pa_funds_control_pkg.log_message(p_msg_token1 => 'Rate : '||g_tab_rate(p_new_rec_index));
1928: End if;
1929: g_tab_accounted_dr(p_new_rec_index) := g_tab_entered_dr(p_new_rec_index) * g_tab_rate(p_new_rec_index);
1930: g_tab_accounted_cr(p_new_rec_index) := g_tab_entered_cr(p_new_rec_index) * g_tab_rate(p_new_rec_index);
1931: else

Line 1932: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1928: End if;
1929: g_tab_accounted_dr(p_new_rec_index) := g_tab_entered_dr(p_new_rec_index) * g_tab_rate(p_new_rec_index);
1930: g_tab_accounted_cr(p_new_rec_index) := g_tab_entered_cr(p_new_rec_index) * g_tab_rate(p_new_rec_index);
1931: else
1932: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1933: pa_funds_control_pkg.log_message(p_msg_token1 => 'Copying accounted amounts for PO relieving record from those on the invoice');
1934: End if;
1935: g_tab_accounted_dr(p_new_rec_index) := g_tab_accounted_cr(p_copy_from_index);
1936: g_tab_accounted_cr(p_new_rec_index) := g_tab_accounted_dr(p_copy_from_index);

Line 1933: pa_funds_control_pkg.log_message(p_msg_token1 => 'Copying accounted amounts for PO relieving record from those on the invoice');

1929: g_tab_accounted_dr(p_new_rec_index) := g_tab_entered_dr(p_new_rec_index) * g_tab_rate(p_new_rec_index);
1930: g_tab_accounted_cr(p_new_rec_index) := g_tab_entered_cr(p_new_rec_index) * g_tab_rate(p_new_rec_index);
1931: else
1932: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1933: pa_funds_control_pkg.log_message(p_msg_token1 => 'Copying accounted amounts for PO relieving record from those on the invoice');
1934: End if;
1935: g_tab_accounted_dr(p_new_rec_index) := g_tab_accounted_cr(p_copy_from_index);
1936: g_tab_accounted_cr(p_new_rec_index) := g_tab_accounted_dr(p_copy_from_index);
1937: end if;

Line 1938: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1934: End if;
1935: g_tab_accounted_dr(p_new_rec_index) := g_tab_accounted_cr(p_copy_from_index);
1936: g_tab_accounted_cr(p_new_rec_index) := g_tab_accounted_dr(p_copy_from_index);
1937: end if;
1938: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1939: pa_funds_control_pkg.log_message(p_msg_token1 => 'Accounted_dr : '||g_tab_accounted_dr(p_new_rec_index));
1940: pa_funds_control_pkg.log_message(p_msg_token1 => 'Accounted_cr : '||g_tab_accounted_cr(p_new_rec_index));
1941: End if;
1942:

Line 1939: pa_funds_control_pkg.log_message(p_msg_token1 => 'Accounted_dr : '||g_tab_accounted_dr(p_new_rec_index));

1935: g_tab_accounted_dr(p_new_rec_index) := g_tab_accounted_cr(p_copy_from_index);
1936: g_tab_accounted_cr(p_new_rec_index) := g_tab_accounted_dr(p_copy_from_index);
1937: end if;
1938: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1939: pa_funds_control_pkg.log_message(p_msg_token1 => 'Accounted_dr : '||g_tab_accounted_dr(p_new_rec_index));
1940: pa_funds_control_pkg.log_message(p_msg_token1 => 'Accounted_cr : '||g_tab_accounted_cr(p_new_rec_index));
1941: End if;
1942:
1943: g_tab_ap_po_distribution_id(p_new_rec_index) := NULL;

Line 1940: pa_funds_control_pkg.log_message(p_msg_token1 => 'Accounted_cr : '||g_tab_accounted_cr(p_new_rec_index));

1936: g_tab_accounted_cr(p_new_rec_index) := g_tab_accounted_dr(p_copy_from_index);
1937: end if;
1938: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1939: pa_funds_control_pkg.log_message(p_msg_token1 => 'Accounted_dr : '||g_tab_accounted_dr(p_new_rec_index));
1940: pa_funds_control_pkg.log_message(p_msg_token1 => 'Accounted_cr : '||g_tab_accounted_cr(p_new_rec_index));
1941: End if;
1942:
1943: g_tab_ap_po_distribution_id(p_new_rec_index) := NULL;
1944:

Line 1945: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1941: End if;
1942:
1943: g_tab_ap_po_distribution_id(p_new_rec_index) := NULL;
1944:
1945: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1946: pa_funds_control_pkg.log_message(p_msg_token1 => 'After overwriting few of PO column values');
1947: pa_funds_control_pkg.log_message(p_msg_token1 => 'Before calling is_po_based_invoice');
1948: End if;
1949:

Line 1946: pa_funds_control_pkg.log_message(p_msg_token1 => 'After overwriting few of PO column values');

1942:
1943: g_tab_ap_po_distribution_id(p_new_rec_index) := NULL;
1944:
1945: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1946: pa_funds_control_pkg.log_message(p_msg_token1 => 'After overwriting few of PO column values');
1947: pa_funds_control_pkg.log_message(p_msg_token1 => 'Before calling is_po_based_invoice');
1948: End if;
1949:
1950: -- Fetch parent_bc_packet_id for PO record

Line 1947: pa_funds_control_pkg.log_message(p_msg_token1 => 'Before calling is_po_based_invoice');

1943: g_tab_ap_po_distribution_id(p_new_rec_index) := NULL;
1944:
1945: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1946: pa_funds_control_pkg.log_message(p_msg_token1 => 'After overwriting few of PO column values');
1947: pa_funds_control_pkg.log_message(p_msg_token1 => 'Before calling is_po_based_invoice');
1948: End if;
1949:
1950: -- Fetch parent_bc_packet_id for PO record
1951: IF is_po_based_invoice (p_po_distribution_id => g_tab_doc_distribution_id(p_new_rec_index)

Line 1958: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1954: ,x_result_code => g_tab_result_code(p_new_rec_index)
1955: ,x_status_code => g_tab_status_code(p_new_rec_index))
1956: = 'Y' THEN
1957:
1958: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1959: pa_funds_control_pkg.log_message(p_msg_token1 => 'In is_po_based_invoice ');
1960: End if;
1961:
1962: g_tab_p_bc_packet_id(p_new_rec_index) := -1 ;

Line 1959: pa_funds_control_pkg.log_message(p_msg_token1 => 'In is_po_based_invoice ');

1955: ,x_status_code => g_tab_status_code(p_new_rec_index))
1956: = 'Y' THEN
1957:
1958: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1959: pa_funds_control_pkg.log_message(p_msg_token1 => 'In is_po_based_invoice ');
1960: End if;
1961:
1962: g_tab_p_bc_packet_id(p_new_rec_index) := -1 ;
1963:

Line 1966: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1962: g_tab_p_bc_packet_id(p_new_rec_index) := -1 ;
1963:
1964: END IF;
1965:
1966: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1967: pa_funds_control_pkg.log_message(p_msg_token1 => 'After calling is_po_based_invoice');
1968: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_AP_PO_RECORD - End');
1969: End if;
1970:

Line 1967: pa_funds_control_pkg.log_message(p_msg_token1 => 'After calling is_po_based_invoice');

1963:
1964: END IF;
1965:
1966: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1967: pa_funds_control_pkg.log_message(p_msg_token1 => 'After calling is_po_based_invoice');
1968: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_AP_PO_RECORD - End');
1969: End if;
1970:
1971: EXCEPTION

Line 1968: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_AP_PO_RECORD - End');

1964: END IF;
1965:
1966: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1967: pa_funds_control_pkg.log_message(p_msg_token1 => 'After calling is_po_based_invoice');
1968: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_AP_PO_RECORD - End');
1969: End if;
1970:
1971: EXCEPTION
1972: WHEN OTHERS THEN

Line 1974: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1970:
1971: EXCEPTION
1972: WHEN OTHERS THEN
1973:
1974: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1975: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_AP_PO_RECORD - EXception'||SQLERRM);
1976: End if;
1977:
1978: RAISE;

Line 1975: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_AP_PO_RECORD - EXception'||SQLERRM);

1971: EXCEPTION
1972: WHEN OTHERS THEN
1973:
1974: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
1975: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_AP_PO_RECORD - EXception'||SQLERRM);
1976: End if;
1977:
1978: RAISE;
1979:

Line 2000: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

1996: FROM dual;
1997:
1998: BEGIN
1999:
2000: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2001: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_APVAR_RECORD - Start');
2002: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_copy_from_index ='||p_copy_from_index);
2003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_new_rec_index ='||p_new_rec_index);
2004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_cwk_po_flag ='||p_cwk_po_flag);

Line 2001: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_APVAR_RECORD - Start');

1997:
1998: BEGIN
1999:
2000: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2001: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_APVAR_RECORD - Start');
2002: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_copy_from_index ='||p_copy_from_index);
2003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_new_rec_index ='||p_new_rec_index);
2004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_cwk_po_flag ='||p_cwk_po_flag);
2005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_accrue_on_receipt_flag ='||p_accrue_on_receipt_flag);

Line 2002: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_copy_from_index ='||p_copy_from_index);

1998: BEGIN
1999:
2000: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2001: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_APVAR_RECORD - Start');
2002: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_copy_from_index ='||p_copy_from_index);
2003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_new_rec_index ='||p_new_rec_index);
2004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_cwk_po_flag ='||p_cwk_po_flag);
2005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_accrue_on_receipt_flag ='||p_accrue_on_receipt_flag);
2006: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_variance ='||p_variance);

Line 2003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_new_rec_index ='||p_new_rec_index);

1999:
2000: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2001: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_APVAR_RECORD - Start');
2002: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_copy_from_index ='||p_copy_from_index);
2003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_new_rec_index ='||p_new_rec_index);
2004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_cwk_po_flag ='||p_cwk_po_flag);
2005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_accrue_on_receipt_flag ='||p_accrue_on_receipt_flag);
2006: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_variance ='||p_variance);
2007: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_base_variance ='||p_base_variance);

Line 2004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_cwk_po_flag ='||p_cwk_po_flag);

2000: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2001: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_APVAR_RECORD - Start');
2002: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_copy_from_index ='||p_copy_from_index);
2003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_new_rec_index ='||p_new_rec_index);
2004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_cwk_po_flag ='||p_cwk_po_flag);
2005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_accrue_on_receipt_flag ='||p_accrue_on_receipt_flag);
2006: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_variance ='||p_variance);
2007: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_base_variance ='||p_base_variance);
2008: pa_funds_control_pkg.log_message(p_msg_token1 => 'Check if its a CWK OR accrure on receipt PO');

Line 2005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_accrue_on_receipt_flag ='||p_accrue_on_receipt_flag);

2001: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_APVAR_RECORD - Start');
2002: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_copy_from_index ='||p_copy_from_index);
2003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_new_rec_index ='||p_new_rec_index);
2004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_cwk_po_flag ='||p_cwk_po_flag);
2005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_accrue_on_receipt_flag ='||p_accrue_on_receipt_flag);
2006: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_variance ='||p_variance);
2007: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_base_variance ='||p_base_variance);
2008: pa_funds_control_pkg.log_message(p_msg_token1 => 'Check if its a CWK OR accrure on receipt PO');
2009: End if;

Line 2006: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_variance ='||p_variance);

2002: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_copy_from_index ='||p_copy_from_index);
2003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_new_rec_index ='||p_new_rec_index);
2004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_cwk_po_flag ='||p_cwk_po_flag);
2005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_accrue_on_receipt_flag ='||p_accrue_on_receipt_flag);
2006: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_variance ='||p_variance);
2007: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_base_variance ='||p_base_variance);
2008: pa_funds_control_pkg.log_message(p_msg_token1 => 'Check if its a CWK OR accrure on receipt PO');
2009: End if;
2010:

Line 2007: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_base_variance ='||p_base_variance);

2003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_new_rec_index ='||p_new_rec_index);
2004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_cwk_po_flag ='||p_cwk_po_flag);
2005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_accrue_on_receipt_flag ='||p_accrue_on_receipt_flag);
2006: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_variance ='||p_variance);
2007: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_base_variance ='||p_base_variance);
2008: pa_funds_control_pkg.log_message(p_msg_token1 => 'Check if its a CWK OR accrure on receipt PO');
2009: End if;
2010:
2011: IF (p_cwk_po_flag = 'Y' OR p_accrue_on_receipt_flag = 'Y') THEN

Line 2008: pa_funds_control_pkg.log_message(p_msg_token1 => 'Check if its a CWK OR accrure on receipt PO');

2004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_cwk_po_flag ='||p_cwk_po_flag);
2005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_accrue_on_receipt_flag ='||p_accrue_on_receipt_flag);
2006: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_variance ='||p_variance);
2007: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of parameter p_base_variance ='||p_base_variance);
2008: pa_funds_control_pkg.log_message(p_msg_token1 => 'Check if its a CWK OR accrure on receipt PO');
2009: End if;
2010:
2011: IF (p_cwk_po_flag = 'Y' OR p_accrue_on_receipt_flag = 'Y') THEN
2012:

Line 2013: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2009: End if;
2010:
2011: IF (p_cwk_po_flag = 'Y' OR p_accrue_on_receipt_flag = 'Y') THEN
2012:
2013: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2014: pa_funds_control_pkg.log_message(p_msg_token1 => 'Its a CWK OR accrue on receipt PO hence relieve only the variance for AP');
2015: pa_funds_control_pkg.log_message(p_msg_token1 => 'Overwriting main AP record amount columns ');
2016: End if;
2017:

Line 2014: pa_funds_control_pkg.log_message(p_msg_token1 => 'Its a CWK OR accrue on receipt PO hence relieve only the variance for AP');

2010:
2011: IF (p_cwk_po_flag = 'Y' OR p_accrue_on_receipt_flag = 'Y') THEN
2012:
2013: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2014: pa_funds_control_pkg.log_message(p_msg_token1 => 'Its a CWK OR accrue on receipt PO hence relieve only the variance for AP');
2015: pa_funds_control_pkg.log_message(p_msg_token1 => 'Overwriting main AP record amount columns ');
2016: End if;
2017:
2018: -- As only AP variance should be fundschecked , updating AP distribution amount columns with

Line 2015: pa_funds_control_pkg.log_message(p_msg_token1 => 'Overwriting main AP record amount columns ');

2011: IF (p_cwk_po_flag = 'Y' OR p_accrue_on_receipt_flag = 'Y') THEN
2012:
2013: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2014: pa_funds_control_pkg.log_message(p_msg_token1 => 'Its a CWK OR accrue on receipt PO hence relieve only the variance for AP');
2015: pa_funds_control_pkg.log_message(p_msg_token1 => 'Overwriting main AP record amount columns ');
2016: End if;
2017:
2018: -- As only AP variance should be fundschecked , updating AP distribution amount columns with
2019: -- varaince amount

Line 2030: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2026: CLOSE ap_var_amt_cur;
2027:
2028: ELSE -- IF (p_cwk_po_flag = 'Y' OR p_accrue_on_receipt_flag = 'Y') THEN
2029:
2030: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2031: pa_funds_control_pkg.log_message(p_msg_token1 => 'Its NOT a CWK OR accrue on receipt PO hence create new record for ap variance');
2032: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling COPY_AP_RECORD');
2033: End if;
2034:

Line 2031: pa_funds_control_pkg.log_message(p_msg_token1 => 'Its NOT a CWK OR accrue on receipt PO hence create new record for ap variance');

2027:
2028: ELSE -- IF (p_cwk_po_flag = 'Y' OR p_accrue_on_receipt_flag = 'Y') THEN
2029:
2030: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2031: pa_funds_control_pkg.log_message(p_msg_token1 => 'Its NOT a CWK OR accrue on receipt PO hence create new record for ap variance');
2032: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling COPY_AP_RECORD');
2033: End if;
2034:
2035: -- As AP variance should be fundschecked in addition to AP distribution,

Line 2032: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling COPY_AP_RECORD');

2028: ELSE -- IF (p_cwk_po_flag = 'Y' OR p_accrue_on_receipt_flag = 'Y') THEN
2029:
2030: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2031: pa_funds_control_pkg.log_message(p_msg_token1 => 'Its NOT a CWK OR accrue on receipt PO hence create new record for ap variance');
2032: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling COPY_AP_RECORD');
2033: End if;
2034:
2035: -- As AP variance should be fundschecked in addition to AP distribution,
2036: -- creating new record for AP varaince line

Line 2052: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2048: CLOSE ap_var_amt_cur;
2049:
2050: END IF; -- IF (p_cwk_po_flag = 'Y' OR p_accrue_on_receipt_flag = 'Y') THEN
2051:
2052: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2053: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_APVAR_RECORD - End');
2054: End if;
2055:
2056: EXCEPTION

Line 2053: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_APVAR_RECORD - End');

2049:
2050: END IF; -- IF (p_cwk_po_flag = 'Y' OR p_accrue_on_receipt_flag = 'Y') THEN
2051:
2052: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2053: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_APVAR_RECORD - End');
2054: End if;
2055:
2056: EXCEPTION
2057: WHEN OTHERS THEN

Line 2059: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2055:
2056: EXCEPTION
2057: WHEN OTHERS THEN
2058:
2059: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2060: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_APVAR_RECORD - Exception'||SQLERRM);
2061: End if;
2062:
2063: RAISE;

Line 2060: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_APVAR_RECORD - Exception'||SQLERRM);

2056: EXCEPTION
2057: WHEN OTHERS THEN
2058:
2059: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2060: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_APVAR_RECORD - Exception'||SQLERRM);
2061: End if;
2062:
2063: RAISE;
2064:

Line 2092: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2088: WHERE po.po_distribution_id = p_po_distribution_id;
2089:
2090: BEGIN
2091:
2092: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2093: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - p_copy_from_index = '
2094: ||p_copy_from_index);
2095: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - Start');
2096: End if;

Line 2093: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - p_copy_from_index = '

2089:
2090: BEGIN
2091:
2092: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2093: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - p_copy_from_index = '
2094: ||p_copy_from_index);
2095: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - Start');
2096: End if;
2097:

Line 2095: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - Start');

2091:
2092: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2093: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - p_copy_from_index = '
2094: ||p_copy_from_index);
2095: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - Start');
2096: End if;
2097:
2098: -- Below is the logic of splitting AP line into multiple bc records
2099: -- 1.IF po_distribution id populated then create PO relieving record

Line 2117: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2113: FETCH c_po_cwk_accrue_details_cur INTO l_cwk_po_flag,
2114: l_accrue_on_receipt_flag;
2115: CLOSE c_po_cwk_accrue_details_cur;
2116:
2117: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2118: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - l_cwk_po_flag ='||l_cwk_po_flag );
2119: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - l_accrue_on_receipt_flag ='||l_accrue_on_receipt_flag );
2120: End if;
2121:

Line 2118: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - l_cwk_po_flag ='||l_cwk_po_flag );

2114: l_accrue_on_receipt_flag;
2115: CLOSE c_po_cwk_accrue_details_cur;
2116:
2117: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2118: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - l_cwk_po_flag ='||l_cwk_po_flag );
2119: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - l_accrue_on_receipt_flag ='||l_accrue_on_receipt_flag );
2120: End if;
2121:
2122: -- Calling procedure to relieve PO record only if non-CWK PO/ accrue on recipt is unchecked

Line 2119: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - l_accrue_on_receipt_flag ='||l_accrue_on_receipt_flag );

2115: CLOSE c_po_cwk_accrue_details_cur;
2116:
2117: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2118: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - l_cwk_po_flag ='||l_cwk_po_flag );
2119: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - l_accrue_on_receipt_flag ='||l_accrue_on_receipt_flag );
2120: End if;
2121:
2122: -- Calling procedure to relieve PO record only if non-CWK PO/ accrue on recipt is unchecked
2123: IF l_cwk_po_flag <> 'Y' AND l_accrue_on_receipt_flag <> 'Y' THEN

Line 2125: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2121:
2122: -- Calling procedure to relieve PO record only if non-CWK PO/ accrue on recipt is unchecked
2123: IF l_cwk_po_flag <> 'Y' AND l_accrue_on_receipt_flag <> 'Y' THEN
2124:
2125: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2126: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - before CREATE_AP_PO_RECORD');
2127: End if;
2128:
2129: l_new_rec_index := g_tab_doc_header_id.count + 1 ;

Line 2126: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - before CREATE_AP_PO_RECORD');

2122: -- Calling procedure to relieve PO record only if non-CWK PO/ accrue on recipt is unchecked
2123: IF l_cwk_po_flag <> 'Y' AND l_accrue_on_receipt_flag <> 'Y' THEN
2124:
2125: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2126: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - before CREATE_AP_PO_RECORD');
2127: End if;
2128:
2129: l_new_rec_index := g_tab_doc_header_id.count + 1 ;
2130:

Line 2134: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2130:
2131: CREATE_AP_PO_RECORD (p_copy_from_index,
2132: l_new_rec_index );
2133:
2134: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2135: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - After CREATE_AP_PO_RECORD');
2136: End if;
2137:
2138: END IF; --IF l_cwk_po_flag <> 'Y' AND l_accrue_on_receipt_flag <> 'Y' THEN

Line 2135: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - After CREATE_AP_PO_RECORD');

2131: CREATE_AP_PO_RECORD (p_copy_from_index,
2132: l_new_rec_index );
2133:
2134: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2135: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - After CREATE_AP_PO_RECORD');
2136: End if;
2137:
2138: END IF; --IF l_cwk_po_flag <> 'Y' AND l_accrue_on_receipt_flag <> 'Y' THEN
2139:

Line 2143: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2139:
2140:
2141: IF NVL(g_tab_ap_amount_variance(p_copy_from_index),0) <> 0 THEN
2142:
2143: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2144: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - before CREATE_APVAR_RECORD for amount variance');
2145: End if;
2146:
2147: l_new_rec_index := g_tab_doc_header_id.count + 1 ;

Line 2144: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - before CREATE_APVAR_RECORD for amount variance');

2140:
2141: IF NVL(g_tab_ap_amount_variance(p_copy_from_index),0) <> 0 THEN
2142:
2143: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2144: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - before CREATE_APVAR_RECORD for amount variance');
2145: End if;
2146:
2147: l_new_rec_index := g_tab_doc_header_id.count + 1 ;
2148:

Line 2156: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2152: p_accrue_on_receipt_flag => l_accrue_on_receipt_flag,
2153: p_variance => g_tab_ap_amount_variance(p_copy_from_index),
2154: p_base_variance => g_tab_ap_base_amount_variance(p_copy_from_index));
2155:
2156: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2157: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - After CREATE_APVAR_RECORD');
2158: End if;
2159:
2160: END IF; --IF NVL(g_tab_ap_amount_variance(p_copy_from_index),0) <> 0 THEN

Line 2157: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - After CREATE_APVAR_RECORD');

2153: p_variance => g_tab_ap_amount_variance(p_copy_from_index),
2154: p_base_variance => g_tab_ap_base_amount_variance(p_copy_from_index));
2155:
2156: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2157: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - After CREATE_APVAR_RECORD');
2158: End if;
2159:
2160: END IF; --IF NVL(g_tab_ap_amount_variance(p_copy_from_index),0) <> 0 THEN
2161:

Line 2165: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2161:
2162:
2163: IF NVL(g_tab_ap_quantity_variance(p_copy_from_index),0) <> 0 THEN
2164:
2165: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2166: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - before CREATE_APVAR_RECORD for QTY variance');
2167: End if;
2168:
2169: l_new_rec_index := g_tab_doc_header_id.count + 1 ;

Line 2166: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - before CREATE_APVAR_RECORD for QTY variance');

2162:
2163: IF NVL(g_tab_ap_quantity_variance(p_copy_from_index),0) <> 0 THEN
2164:
2165: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2166: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - before CREATE_APVAR_RECORD for QTY variance');
2167: End if;
2168:
2169: l_new_rec_index := g_tab_doc_header_id.count + 1 ;
2170:

Line 2178: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2174: p_accrue_on_receipt_flag => l_accrue_on_receipt_flag,
2175: p_variance => g_tab_ap_quantity_variance(p_copy_from_index),
2176: p_base_variance => g_tab_ap_base_qty_variance(p_copy_from_index));
2177:
2178: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2179: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - After CREATE_APVAR_RECORD');
2180: End if;
2181:
2182: END IF;

Line 2179: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - After CREATE_APVAR_RECORD');

2175: p_variance => g_tab_ap_quantity_variance(p_copy_from_index),
2176: p_base_variance => g_tab_ap_base_qty_variance(p_copy_from_index));
2177:
2178: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2179: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - After CREATE_APVAR_RECORD');
2180: End if;
2181:
2182: END IF;
2183:

Line 2184: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2180: End if;
2181:
2182: END IF;
2183:
2184: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2185: pa_funds_control_pkg.log_message(p_msg_token1 => ' CREATE_BACKING_PO_APVAR_REC - End ');
2186: End if;
2187:
2188: EXCEPTION

Line 2185: pa_funds_control_pkg.log_message(p_msg_token1 => ' CREATE_BACKING_PO_APVAR_REC - End ');

2181:
2182: END IF;
2183:
2184: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2185: pa_funds_control_pkg.log_message(p_msg_token1 => ' CREATE_BACKING_PO_APVAR_REC - End ');
2186: End if;
2187:
2188: EXCEPTION
2189: WHEN OTHERS THEN

Line 2191: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2187:
2188: EXCEPTION
2189: WHEN OTHERS THEN
2190:
2191: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2192: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - Exception'||SQLERRM);
2193: End if;
2194:
2195: RAISE;

Line 2192: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - Exception'||SQLERRM);

2188: EXCEPTION
2189: WHEN OTHERS THEN
2190:
2191: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2192: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_BACKING_PO_APVAR_REC - Exception'||SQLERRM);
2193: End if;
2194:
2195: RAISE;
2196:

Line 2256: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2252: l_gl_start_date DATE;
2253:
2254: BEGIN
2255:
2256: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2257: pa_funds_control_pkg.log_message(p_msg_token1 => 'DERIVE_PKT_RLMI_BUDGET_CCID - Start');
2258: End if;
2259:
2260: -- This will loop only once as a packet_id will have only one distinct SOB

Line 2257: pa_funds_control_pkg.log_message(p_msg_token1 => 'DERIVE_PKT_RLMI_BUDGET_CCID - Start');

2253:
2254: BEGIN
2255:
2256: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2257: pa_funds_control_pkg.log_message(p_msg_token1 => 'DERIVE_PKT_RLMI_BUDGET_CCID - Start');
2258: End if;
2259:
2260: -- This will loop only once as a packet_id will have only one distinct SOB
2261: FOR c_sob IN c_pkt_SOB LOOP

Line 2263: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2259:
2260: -- This will loop only once as a packet_id will have only one distinct SOB
2261: FOR c_sob IN c_pkt_SOB LOOP
2262:
2263: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2264: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling pa_funds_control_pkg.derive_rlmi for c_sob.set_of_books_id '||c_sob.set_of_books_id);
2265: End if;
2266:
2267: pa_funds_control_pkg.derive_rlmi

Line 2264: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling pa_funds_control_pkg.derive_rlmi for c_sob.set_of_books_id '||c_sob.set_of_books_id);

2260: -- This will loop only once as a packet_id will have only one distinct SOB
2261: FOR c_sob IN c_pkt_SOB LOOP
2262:
2263: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2264: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling pa_funds_control_pkg.derive_rlmi for c_sob.set_of_books_id '||c_sob.set_of_books_id);
2265: End if;
2266:
2267: pa_funds_control_pkg.derive_rlmi
2268: ( p_packet_id => p_packet_id,

Line 2267: pa_funds_control_pkg.derive_rlmi

2263: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2264: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling pa_funds_control_pkg.derive_rlmi for c_sob.set_of_books_id '||c_sob.set_of_books_id);
2265: End if;
2266:
2267: pa_funds_control_pkg.derive_rlmi
2268: ( p_packet_id => p_packet_id,
2269: p_mode => 'R',
2270: p_sob => c_sob.set_of_books_id,
2271: p_calling_module => 'GL');

Line 2278: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2274:
2275:
2276: FOR c_pkt in c_pkt_details LOOP
2277:
2278: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2279: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID ');
2280: End if;
2281:
2282: OPEN c_get_gl_start_date(c_pkt.period_name,c_pkt.set_of_books_id);

Line 2279: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID ');

2275:
2276: FOR c_pkt in c_pkt_details LOOP
2277:
2278: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2279: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID ');
2280: End if;
2281:
2282: OPEN c_get_gl_start_date(c_pkt.period_name,c_pkt.set_of_books_id);
2283: FETCH c_get_gl_start_date INTO l_gl_start_date;

Line 2301: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2297: x_budget_line_id => l_budget_line_id,
2298: x_return_status => l_return_status,
2299: x_error_message_code => l_error_message_code);
2300:
2301: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2302: pa_funds_control_pkg.log_message(p_msg_token1 => 'After PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID ');
2303: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.project_id = '||c_pkt.project_id);
2304: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.task_id = '||c_pkt.task_id);
2305: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.resource_list_member_id = '||c_pkt.resource_list_member_id);

Line 2302: pa_funds_control_pkg.log_message(p_msg_token1 => 'After PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID ');

2298: x_return_status => l_return_status,
2299: x_error_message_code => l_error_message_code);
2300:
2301: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2302: pa_funds_control_pkg.log_message(p_msg_token1 => 'After PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID ');
2303: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.project_id = '||c_pkt.project_id);
2304: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.task_id = '||c_pkt.task_id);
2305: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.resource_list_member_id = '||c_pkt.resource_list_member_id);
2306: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.gl_date = '||c_pkt.gl_date);

Line 2303: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.project_id = '||c_pkt.project_id);

2299: x_error_message_code => l_error_message_code);
2300:
2301: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2302: pa_funds_control_pkg.log_message(p_msg_token1 => 'After PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID ');
2303: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.project_id = '||c_pkt.project_id);
2304: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.task_id = '||c_pkt.task_id);
2305: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.resource_list_member_id = '||c_pkt.resource_list_member_id);
2306: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.gl_date = '||c_pkt.gl_date);
2307: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.budget_version_id = '||c_pkt.budget_version_id);

Line 2304: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.task_id = '||c_pkt.task_id);

2300:
2301: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2302: pa_funds_control_pkg.log_message(p_msg_token1 => 'After PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID ');
2303: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.project_id = '||c_pkt.project_id);
2304: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.task_id = '||c_pkt.task_id);
2305: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.resource_list_member_id = '||c_pkt.resource_list_member_id);
2306: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.gl_date = '||c_pkt.gl_date);
2307: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.budget_version_id = '||c_pkt.budget_version_id);
2308: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.top_task_id = '||c_pkt.top_task_id);

Line 2305: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.resource_list_member_id = '||c_pkt.resource_list_member_id);

2301: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2302: pa_funds_control_pkg.log_message(p_msg_token1 => 'After PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID ');
2303: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.project_id = '||c_pkt.project_id);
2304: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.task_id = '||c_pkt.task_id);
2305: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.resource_list_member_id = '||c_pkt.resource_list_member_id);
2306: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.gl_date = '||c_pkt.gl_date);
2307: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.budget_version_id = '||c_pkt.budget_version_id);
2308: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.top_task_id = '||c_pkt.top_task_id);
2309: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.entry_level_code = '||c_pkt.entry_level_code);

Line 2306: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.gl_date = '||c_pkt.gl_date);

2302: pa_funds_control_pkg.log_message(p_msg_token1 => 'After PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID ');
2303: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.project_id = '||c_pkt.project_id);
2304: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.task_id = '||c_pkt.task_id);
2305: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.resource_list_member_id = '||c_pkt.resource_list_member_id);
2306: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.gl_date = '||c_pkt.gl_date);
2307: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.budget_version_id = '||c_pkt.budget_version_id);
2308: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.top_task_id = '||c_pkt.top_task_id);
2309: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.entry_level_code = '||c_pkt.entry_level_code);
2310: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_budget_ccid = '||l_budget_ccid);

Line 2307: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.budget_version_id = '||c_pkt.budget_version_id);

2303: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.project_id = '||c_pkt.project_id);
2304: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.task_id = '||c_pkt.task_id);
2305: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.resource_list_member_id = '||c_pkt.resource_list_member_id);
2306: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.gl_date = '||c_pkt.gl_date);
2307: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.budget_version_id = '||c_pkt.budget_version_id);
2308: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.top_task_id = '||c_pkt.top_task_id);
2309: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.entry_level_code = '||c_pkt.entry_level_code);
2310: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_budget_ccid = '||l_budget_ccid);
2311: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_budget_line_id = '||l_budget_line_id);

Line 2308: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.top_task_id = '||c_pkt.top_task_id);

2304: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.task_id = '||c_pkt.task_id);
2305: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.resource_list_member_id = '||c_pkt.resource_list_member_id);
2306: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.gl_date = '||c_pkt.gl_date);
2307: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.budget_version_id = '||c_pkt.budget_version_id);
2308: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.top_task_id = '||c_pkt.top_task_id);
2309: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.entry_level_code = '||c_pkt.entry_level_code);
2310: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_budget_ccid = '||l_budget_ccid);
2311: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_budget_line_id = '||l_budget_line_id);
2312: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_return_status = '||l_return_status);

Line 2309: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.entry_level_code = '||c_pkt.entry_level_code);

2305: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.resource_list_member_id = '||c_pkt.resource_list_member_id);
2306: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.gl_date = '||c_pkt.gl_date);
2307: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.budget_version_id = '||c_pkt.budget_version_id);
2308: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.top_task_id = '||c_pkt.top_task_id);
2309: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.entry_level_code = '||c_pkt.entry_level_code);
2310: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_budget_ccid = '||l_budget_ccid);
2311: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_budget_line_id = '||l_budget_line_id);
2312: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_return_status = '||l_return_status);
2313: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_error_message_code = '||l_error_message_code);

Line 2310: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_budget_ccid = '||l_budget_ccid);

2306: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.gl_date = '||c_pkt.gl_date);
2307: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.budget_version_id = '||c_pkt.budget_version_id);
2308: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.top_task_id = '||c_pkt.top_task_id);
2309: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.entry_level_code = '||c_pkt.entry_level_code);
2310: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_budget_ccid = '||l_budget_ccid);
2311: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_budget_line_id = '||l_budget_line_id);
2312: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_return_status = '||l_return_status);
2313: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_error_message_code = '||l_error_message_code);
2314: End if;

Line 2311: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_budget_line_id = '||l_budget_line_id);

2307: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.budget_version_id = '||c_pkt.budget_version_id);
2308: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.top_task_id = '||c_pkt.top_task_id);
2309: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.entry_level_code = '||c_pkt.entry_level_code);
2310: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_budget_ccid = '||l_budget_ccid);
2311: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_budget_line_id = '||l_budget_line_id);
2312: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_return_status = '||l_return_status);
2313: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_error_message_code = '||l_error_message_code);
2314: End if;
2315:

Line 2312: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_return_status = '||l_return_status);

2308: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.top_task_id = '||c_pkt.top_task_id);
2309: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.entry_level_code = '||c_pkt.entry_level_code);
2310: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_budget_ccid = '||l_budget_ccid);
2311: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_budget_line_id = '||l_budget_line_id);
2312: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_return_status = '||l_return_status);
2313: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_error_message_code = '||l_error_message_code);
2314: End if;
2315:
2316: -- Fail pa bc packets if there is any error while deriving the budget ccid value

Line 2313: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_error_message_code = '||l_error_message_code);

2309: pa_funds_control_pkg.log_message(p_msg_token1 => 'c_pkt.entry_level_code = '||c_pkt.entry_level_code);
2310: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_budget_ccid = '||l_budget_ccid);
2311: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_budget_line_id = '||l_budget_line_id);
2312: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_return_status = '||l_return_status);
2313: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_error_message_code = '||l_error_message_code);
2314: End if;
2315:
2316: -- Fail pa bc packets if there is any error while deriving the budget ccid value
2317: IF l_return_status = 'E' OR NVL(l_budget_ccid,-999) = -999 OR NVL(l_budget_line_id,-999) = -999 THEN

Line 2339: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2335: AND resource_list_member_id = c_pkt.resource_list_member_id
2336: AND NVL(period_name,'X') = NVL(c_pkt.period_name,'X')
2337: AND gl_date = c_pkt.gl_date ;
2338:
2339: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2340: pa_funds_control_pkg.log_message(p_msg_token1 => 'DERIVE_PKT_RLMI_BUDGET_CCID - # of records updated to F132='||SQL%ROWCOUNT);
2341: End if;
2342:
2343: ELSE

Line 2340: pa_funds_control_pkg.log_message(p_msg_token1 => 'DERIVE_PKT_RLMI_BUDGET_CCID - # of records updated to F132='||SQL%ROWCOUNT);

2336: AND NVL(period_name,'X') = NVL(c_pkt.period_name,'X')
2337: AND gl_date = c_pkt.gl_date ;
2338:
2339: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2340: pa_funds_control_pkg.log_message(p_msg_token1 => 'DERIVE_PKT_RLMI_BUDGET_CCID - # of records updated to F132='||SQL%ROWCOUNT);
2341: End if;
2342:
2343: ELSE
2344:

Line 2357: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2353: AND resource_list_member_id = c_pkt.resource_list_member_id
2354: AND NVL(period_name,'X') = NVL(c_pkt.period_name,'X')
2355: AND gl_date = c_pkt.gl_date ;
2356:
2357: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2358: pa_funds_control_pkg.log_message(p_msg_token1 => 'DERIVE_PKT_RLMI_BUDGET_CCID - # of records updated with budget ccid info='||SQL%ROWCOUNT);
2359: End if;
2360:
2361: END IF;

Line 2358: pa_funds_control_pkg.log_message(p_msg_token1 => 'DERIVE_PKT_RLMI_BUDGET_CCID - # of records updated with budget ccid info='||SQL%ROWCOUNT);

2354: AND NVL(period_name,'X') = NVL(c_pkt.period_name,'X')
2355: AND gl_date = c_pkt.gl_date ;
2356:
2357: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2358: pa_funds_control_pkg.log_message(p_msg_token1 => 'DERIVE_PKT_RLMI_BUDGET_CCID - # of records updated with budget ccid info='||SQL%ROWCOUNT);
2359: End if;
2360:
2361: END IF;
2362:

Line 2367: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2363: END LOOP;
2364:
2365: COMMIT;
2366:
2367: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2368: pa_funds_control_pkg.log_message(p_msg_token1 => 'DERIVE_PKT_RLMI_BUDGET_CCID - End');
2369: End if;
2370:
2371: EXCEPTION

Line 2368: pa_funds_control_pkg.log_message(p_msg_token1 => 'DERIVE_PKT_RLMI_BUDGET_CCID - End');

2364:
2365: COMMIT;
2366:
2367: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2368: pa_funds_control_pkg.log_message(p_msg_token1 => 'DERIVE_PKT_RLMI_BUDGET_CCID - End');
2369: End if;
2370:
2371: EXCEPTION
2372: WHEN OTHERS THEN

Line 2374: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2370:
2371: EXCEPTION
2372: WHEN OTHERS THEN
2373:
2374: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2375: pa_funds_control_pkg.log_message(p_msg_token1 => 'DERIVE_PKT_RLMI_BUDGET_CCID - EXception'||SQLERRM);
2376: End if;
2377:
2378: RAISE;

Line 2375: pa_funds_control_pkg.log_message(p_msg_token1 => 'DERIVE_PKT_RLMI_BUDGET_CCID - EXception'||SQLERRM);

2371: EXCEPTION
2372: WHEN OTHERS THEN
2373:
2374: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2375: pa_funds_control_pkg.log_message(p_msg_token1 => 'DERIVE_PKT_RLMI_BUDGET_CCID - EXception'||SQLERRM);
2376: End if;
2377:
2378: RAISE;
2379:

Line 2390: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2386: -------------------------------------------------------------------------------------
2387: PROCEDURE DERIVE_DR_CR IS
2388: BEGIN
2389:
2390: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2391: pa_funds_control_pkg.log_message(p_msg_token1 => 'Start of DERIVE_DR_CR ');
2392: End if;
2393:
2394: FOR l_index IN 1..g_tab_set_of_books_id.Last LOOP

Line 2391: pa_funds_control_pkg.log_message(p_msg_token1 => 'Start of DERIVE_DR_CR ');

2387: PROCEDURE DERIVE_DR_CR IS
2388: BEGIN
2389:
2390: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2391: pa_funds_control_pkg.log_message(p_msg_token1 => 'Start of DERIVE_DR_CR ');
2392: End if;
2393:
2394: FOR l_index IN 1..g_tab_set_of_books_id.Last LOOP
2395:

Line 2401: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2397: g_tab_entered_cr(l_index) := 0 ;
2398: g_tab_accounted_dr(l_index) := 0 ;
2399: g_tab_accounted_cr(l_index) := 0 ;
2400:
2401: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2402: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_main_or_backing_code '||g_tab_main_or_backing_code(l_index));
2403: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_event_type_code '||g_tab_event_type_code(l_index));
2404: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_distribution_type '||g_tab_distribution_type(l_index));
2405: End if;

Line 2402: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_main_or_backing_code '||g_tab_main_or_backing_code(l_index));

2398: g_tab_accounted_dr(l_index) := 0 ;
2399: g_tab_accounted_cr(l_index) := 0 ;
2400:
2401: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2402: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_main_or_backing_code '||g_tab_main_or_backing_code(l_index));
2403: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_event_type_code '||g_tab_event_type_code(l_index));
2404: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_distribution_type '||g_tab_distribution_type(l_index));
2405: End if;
2406:

Line 2403: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_event_type_code '||g_tab_event_type_code(l_index));

2399: g_tab_accounted_cr(l_index) := 0 ;
2400:
2401: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2402: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_main_or_backing_code '||g_tab_main_or_backing_code(l_index));
2403: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_event_type_code '||g_tab_event_type_code(l_index));
2404: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_distribution_type '||g_tab_distribution_type(l_index));
2405: End if;
2406:
2407: -- Below function returns 1 if the amount should be populated in debit columns

Line 2404: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_distribution_type '||g_tab_distribution_type(l_index));

2400:
2401: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2402: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_main_or_backing_code '||g_tab_main_or_backing_code(l_index));
2403: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_event_type_code '||g_tab_event_type_code(l_index));
2404: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_distribution_type '||g_tab_distribution_type(l_index));
2405: End if;
2406:
2407: -- Below function returns 1 if the amount should be populated in debit columns
2408: -- and -1 if amounts should be populated in credit columns

Line 2423: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2419: g_tab_entered_cr(l_index) := g_tab_entered_amount(l_index);
2420: g_tab_accounted_cr(l_index) := g_tab_accted_amount (l_index);
2421: END IF;
2422:
2423: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2424: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_entered_dr '||g_tab_entered_dr(l_index));
2425: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_entered_cr '||g_tab_entered_cr(l_index));
2426: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_accounted_dr '||g_tab_accounted_dr(l_index));
2427: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_accounted_cr '||g_tab_accounted_cr(l_index));

Line 2424: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_entered_dr '||g_tab_entered_dr(l_index));

2420: g_tab_accounted_cr(l_index) := g_tab_accted_amount (l_index);
2421: END IF;
2422:
2423: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2424: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_entered_dr '||g_tab_entered_dr(l_index));
2425: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_entered_cr '||g_tab_entered_cr(l_index));
2426: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_accounted_dr '||g_tab_accounted_dr(l_index));
2427: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_accounted_cr '||g_tab_accounted_cr(l_index));
2428: End if;

Line 2425: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_entered_cr '||g_tab_entered_cr(l_index));

2421: END IF;
2422:
2423: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2424: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_entered_dr '||g_tab_entered_dr(l_index));
2425: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_entered_cr '||g_tab_entered_cr(l_index));
2426: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_accounted_dr '||g_tab_accounted_dr(l_index));
2427: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_accounted_cr '||g_tab_accounted_cr(l_index));
2428: End if;
2429:

Line 2426: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_accounted_dr '||g_tab_accounted_dr(l_index));

2422:
2423: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2424: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_entered_dr '||g_tab_entered_dr(l_index));
2425: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_entered_cr '||g_tab_entered_cr(l_index));
2426: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_accounted_dr '||g_tab_accounted_dr(l_index));
2427: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_accounted_cr '||g_tab_accounted_cr(l_index));
2428: End if;
2429:
2430: END LOOP;

Line 2427: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_accounted_cr '||g_tab_accounted_cr(l_index));

2423: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2424: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_entered_dr '||g_tab_entered_dr(l_index));
2425: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_entered_cr '||g_tab_entered_cr(l_index));
2426: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_accounted_dr '||g_tab_accounted_dr(l_index));
2427: pa_funds_control_pkg.log_message(p_msg_token1 => 'value of g_tab_accounted_cr '||g_tab_accounted_cr(l_index));
2428: End if;
2429:
2430: END LOOP;
2431:

Line 2432: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2428: End if;
2429:
2430: END LOOP;
2431:
2432: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2433: pa_funds_control_pkg.log_message(p_msg_token1 => 'End of DERIVE_DR_CR ');
2434: End if;
2435:
2436: END DERIVE_DR_CR;

Line 2433: pa_funds_control_pkg.log_message(p_msg_token1 => 'End of DERIVE_DR_CR ');

2429:
2430: END LOOP;
2431:
2432: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2433: pa_funds_control_pkg.log_message(p_msg_token1 => 'End of DERIVE_DR_CR ');
2434: End if;
2435:
2436: END DERIVE_DR_CR;
2437:

Line 2460: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2456: l_counter NUMBER := 0;
2457:
2458: BEGIN
2459:
2460: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2461: pa_funds_control_pkg.log_message(p_msg_token1 => 'FULL_MODE_FAILURE : Start ');
2462: END IF;
2463:
2464: x_return_code := 'S' ;

Line 2461: pa_funds_control_pkg.log_message(p_msg_token1 => 'FULL_MODE_FAILURE : Start ');

2457:
2458: BEGIN
2459:
2460: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2461: pa_funds_control_pkg.log_message(p_msg_token1 => 'FULL_MODE_FAILURE : Start ');
2462: END IF;
2463:
2464: x_return_code := 'S' ;
2465:

Line 2470: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2466: OPEN c_pkt_status;
2467: FETCH c_pkt_status INTO l_counter;
2468: CLOSE c_pkt_status;
2469:
2470: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2471: pa_funds_control_pkg.log_message(p_msg_token1 => 'FULL_MODE_FAILURE : l_counter '||l_counter);
2472: END IF;
2473:
2474: IF l_counter > 0 THEN

Line 2471: pa_funds_control_pkg.log_message(p_msg_token1 => 'FULL_MODE_FAILURE : l_counter '||l_counter);

2467: FETCH c_pkt_status INTO l_counter;
2468: CLOSE c_pkt_status;
2469:
2470: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2471: pa_funds_control_pkg.log_message(p_msg_token1 => 'FULL_MODE_FAILURE : l_counter '||l_counter);
2472: END IF;
2473:
2474: IF l_counter > 0 THEN
2475:

Line 2491: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2487: WHERE a.status_code = 'I'
2488: AND a.status_code <> 'F'
2489: AND a.packet_id = p_packet_id;
2490:
2491: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2492: pa_funds_control_pkg.log_message(p_msg_token1 => 'FULL_MODE_FAILURE : number of records failed in full mode '||SQL%ROWCOUNT);
2493: END IF;
2494:
2495: END IF;

Line 2492: pa_funds_control_pkg.log_message(p_msg_token1 => 'FULL_MODE_FAILURE : number of records failed in full mode '||SQL%ROWCOUNT);

2488: AND a.status_code <> 'F'
2489: AND a.packet_id = p_packet_id;
2490:
2491: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2492: pa_funds_control_pkg.log_message(p_msg_token1 => 'FULL_MODE_FAILURE : number of records failed in full mode '||SQL%ROWCOUNT);
2493: END IF;
2494:
2495: END IF;
2496:

Line 2497: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2493: END IF;
2494:
2495: END IF;
2496:
2497: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2498: pa_funds_control_pkg.log_message(p_msg_token1 => 'FULL_MODE_FAILURE : End');
2499: END IF;
2500:
2501: COMMIT;

Line 2498: pa_funds_control_pkg.log_message(p_msg_token1 => 'FULL_MODE_FAILURE : End');

2494:
2495: END IF;
2496:
2497: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2498: pa_funds_control_pkg.log_message(p_msg_token1 => 'FULL_MODE_FAILURE : End');
2499: END IF;
2500:
2501: COMMIT;
2502:

Line 2517: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2513: PRAGMA AUTONOMOUS_TRANSACTION;
2514:
2515: BEGIN
2516:
2517: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2518: pa_funds_control_pkg.log_message(p_msg_token1 => 'FAIL_NULL_EVENT_PKTS : Start ');
2519: END IF;
2520:
2521: UPDATE pa_bc_packets a

Line 2518: pa_funds_control_pkg.log_message(p_msg_token1 => 'FAIL_NULL_EVENT_PKTS : Start ');

2514:
2515: BEGIN
2516:
2517: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2518: pa_funds_control_pkg.log_message(p_msg_token1 => 'FAIL_NULL_EVENT_PKTS : Start ');
2519: END IF;
2520:
2521: UPDATE pa_bc_packets a
2522: SET a.status_code = DECODE(p_bc_mode,'C','F','R'),

Line 2537: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2533: AND a.bc_event_id is null;
2534:
2535: COMMIT;
2536:
2537: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2538: pa_funds_control_pkg.log_message(p_msg_token1 => 'FAIL_NULL_EVENT_PKTS : End');
2539: END IF;
2540:
2541: END;

Line 2538: pa_funds_control_pkg.log_message(p_msg_token1 => 'FAIL_NULL_EVENT_PKTS : End');

2534:
2535: COMMIT;
2536:
2537: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2538: pa_funds_control_pkg.log_message(p_msg_token1 => 'FAIL_NULL_EVENT_PKTS : End');
2539: END IF;
2540:
2541: END;
2542:

Line 2555: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2551: PRAGMA AUTONOMOUS_TRANSACTION;
2552:
2553: BEGIN
2554:
2555: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2556: pa_funds_control_pkg.log_message(p_msg_token1 => 'FAIL_DANGLING_PKTS : Start ');
2557: END IF;
2558:
2559: UPDATE pa_bc_packets

Line 2556: pa_funds_control_pkg.log_message(p_msg_token1 => 'FAIL_DANGLING_PKTS : Start ');

2552:
2553: BEGIN
2554:
2555: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2556: pa_funds_control_pkg.log_message(p_msg_token1 => 'FAIL_DANGLING_PKTS : Start ');
2557: END IF;
2558:
2559: UPDATE pa_bc_packets
2560: SET status_code = 'T',

Line 2573: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

2569: AND status_code = 'I';
2570:
2571: COMMIT;
2572:
2573: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2574: pa_funds_control_pkg.log_message(p_msg_token1 => 'FAIL_DANGLING_PKTS : End');
2575: END IF;
2576:
2577: END;

Line 2574: pa_funds_control_pkg.log_message(p_msg_token1 => 'FAIL_DANGLING_PKTS : End');

2570:
2571: COMMIT;
2572:
2573: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
2574: pa_funds_control_pkg.log_message(p_msg_token1 => 'FAIL_DANGLING_PKTS : End');
2575: END IF;
2576:
2577: END;
2578:

Line 2589: -- 4. Fires pa_funds_control_pkg.derive_rlmi to derive resource_list_member_id on bc packets

2585: -- created by BCPSA FC engine.
2586: -- 2. Inserts raw records into pa_bc_packets by fetching PO/REQ data from po_bc_distributions
2587: -- and AP data from ap_invoice_distributions_all table for all events in psa_bc_xla_events_gt.
2588: -- 3. Fires populate_burden_cost procedure to Insert burden records for above raw components
2589: -- 4. Fires pa_funds_control_pkg.derive_rlmi to derive resource_list_member_id on bc packets
2590: -- 5. Fires pa_funds_control_utils.get_budegt_ccid to derive budget_ccid and budget_line_id
2591: -- 6. Finally calls pa_xla_interface_pkg.create_events to create events for project
2592: -- encumbrance data and populate BC GT table.
2593: -------------------------------------------------------------------------------------

Line 2648: pa_funds_control_pkg.check_bdn_on_sep_item

2644: pobc.header_id reference2,
2645: pobc.distribution_id reference3,
2646: NULL bc_event_id,
2647: NULL vendor_id,
2648: pa_funds_control_pkg.check_bdn_on_sep_item
2649: (pobc.pa_project_id) burden_method_code,
2650: pobc.main_or_backing_code main_or_backing_code,
2651: pobc.ae_event_id source_event_id,
2652: pobc.CODE_COMBINATION_ID txn_ccid,

Line 2950: pa_funds_control_pkg.check_bdn_on_sep_item

2946: ,NULL,apext.aid_invoice_dist_id
2947: ,apext.po_distribution_id))
2948: , NULL) reference3,
2949: NULL bc_event_id,
2950: pa_funds_control_pkg.check_bdn_on_sep_item
2951: (apext.aid_project_id) burden_method_code,
2952: NULL main_or_backing_code,
2953: apext.event_id source_event_id,
2954: apext.aid_dist_ccid txn_ccid,

Line 3134: pa_funds_control_pkg.check_bdn_on_sep_item

3130: 'AP' reference1,
3131: APPH.PREPAY_INVOICE_ID reference2,
3132: AID.PREPAY_DISTRIBUTION_ID reference3,
3133: NULL bc_event_id,
3134: pa_funds_control_pkg.check_bdn_on_sep_item
3135: (AID.project_id) burden_method_code,
3136: NULL main_or_backing_code,
3137: APPH.bc_event_id source_event_id,
3138: AID.Dist_code_combination_id txn_ccid,

Line 3201: pa_funds_control_pkg.check_bdn_on_sep_item

3197: 'AP' reference1,
3198: APPH.PREPAY_INVOICE_ID reference2,
3199: AID.PREPAY_DISTRIBUTION_ID reference3,
3200: NULL bc_event_id,
3201: pa_funds_control_pkg.check_bdn_on_sep_item
3202: (AID.project_id) burden_method_code,
3203: NULL main_or_backing_code,
3204: APPH.bc_event_id source_event_id,
3205: AID.Dist_code_combination_id txn_ccid,

Line 3314: PA_DEBUG.init_err_stack ('PA_FUNDS_CONTROL_PKG1.CREATE_PROJ_ENCUMBRANCE_EVENTS');

3310:
3311: BEGIN
3312:
3313: --- Initialize the error statck
3314: PA_DEBUG.init_err_stack ('PA_FUNDS_CONTROL_PKG1.CREATE_PROJ_ENCUMBRANCE_EVENTS');
3315:
3316: fnd_profile.get('PA_DEBUG_MODE',PA_FUNDS_CONTROL_PKG.g_debug_mode);
3317: PA_FUNDS_CONTROL_PKG.g_debug_mode := NVL(PA_FUNDS_CONTROL_PKG.g_debug_mode, 'N');
3318:

Line 3316: fnd_profile.get('PA_DEBUG_MODE',PA_FUNDS_CONTROL_PKG.g_debug_mode);

3312:
3313: --- Initialize the error statck
3314: PA_DEBUG.init_err_stack ('PA_FUNDS_CONTROL_PKG1.CREATE_PROJ_ENCUMBRANCE_EVENTS');
3315:
3316: fnd_profile.get('PA_DEBUG_MODE',PA_FUNDS_CONTROL_PKG.g_debug_mode);
3317: PA_FUNDS_CONTROL_PKG.g_debug_mode := NVL(PA_FUNDS_CONTROL_PKG.g_debug_mode, 'N');
3318:
3319: PA_DEBUG.SET_PROCESS( x_process => 'PLSQL'
3320: ,x_write_file => 'LOG'

Line 3317: PA_FUNDS_CONTROL_PKG.g_debug_mode := NVL(PA_FUNDS_CONTROL_PKG.g_debug_mode, 'N');

3313: --- Initialize the error statck
3314: PA_DEBUG.init_err_stack ('PA_FUNDS_CONTROL_PKG1.CREATE_PROJ_ENCUMBRANCE_EVENTS');
3315:
3316: fnd_profile.get('PA_DEBUG_MODE',PA_FUNDS_CONTROL_PKG.g_debug_mode);
3317: PA_FUNDS_CONTROL_PKG.g_debug_mode := NVL(PA_FUNDS_CONTROL_PKG.g_debug_mode, 'N');
3318:
3319: PA_DEBUG.SET_PROCESS( x_process => 'PLSQL'
3320: ,x_write_file => 'LOG'
3321: ,x_debug_mode => PA_FUNDS_CONTROL_PKG.g_debug_mode);

Line 3321: ,x_debug_mode => PA_FUNDS_CONTROL_PKG.g_debug_mode);

3317: PA_FUNDS_CONTROL_PKG.g_debug_mode := NVL(PA_FUNDS_CONTROL_PKG.g_debug_mode, 'N');
3318:
3319: PA_DEBUG.SET_PROCESS( x_process => 'PLSQL'
3320: ,x_write_file => 'LOG'
3321: ,x_debug_mode => PA_FUNDS_CONTROL_PKG.g_debug_mode);
3322:
3323:
3324: -- Bug 5354715 : Added the "PA IMPLEMENTED IN OU" check.
3325: IF PA_FUNDS_CONTROL_PKG.IS_PA_INSTALL_IN_OU = 'N' then

Line 3325: IF PA_FUNDS_CONTROL_PKG.IS_PA_INSTALL_IN_OU = 'N' then

3321: ,x_debug_mode => PA_FUNDS_CONTROL_PKG.g_debug_mode);
3322:
3323:
3324: -- Bug 5354715 : Added the "PA IMPLEMENTED IN OU" check.
3325: IF PA_FUNDS_CONTROL_PKG.IS_PA_INSTALL_IN_OU = 'N' then
3326: x_return_code := 'S';
3327:
3328: If pa_funds_control_pkg.g_debug_mode = 'Y' then
3329: pa_funds_control_pkg.log_message(p_msg_token1=>'PA NOT INSTALLED IN THIS OU.return code='

Line 3328: If pa_funds_control_pkg.g_debug_mode = 'Y' then

3324: -- Bug 5354715 : Added the "PA IMPLEMENTED IN OU" check.
3325: IF PA_FUNDS_CONTROL_PKG.IS_PA_INSTALL_IN_OU = 'N' then
3326: x_return_code := 'S';
3327:
3328: If pa_funds_control_pkg.g_debug_mode = 'Y' then
3329: pa_funds_control_pkg.log_message(p_msg_token1=>'PA NOT INSTALLED IN THIS OU.return code='
3330: ||x_return_code);
3331: end if;
3332: PA_DEBUG.Reset_err_stack;

Line 3329: pa_funds_control_pkg.log_message(p_msg_token1=>'PA NOT INSTALLED IN THIS OU.return code='

3325: IF PA_FUNDS_CONTROL_PKG.IS_PA_INSTALL_IN_OU = 'N' then
3326: x_return_code := 'S';
3327:
3328: If pa_funds_control_pkg.g_debug_mode = 'Y' then
3329: pa_funds_control_pkg.log_message(p_msg_token1=>'PA NOT INSTALLED IN THIS OU.return code='
3330: ||x_return_code);
3331: end if;
3332: PA_DEBUG.Reset_err_stack;
3333: Return;

Line 3352: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3348: IF pa_budget_fund_pkg.g_processing_mode IN ('YEAR_END','CHECK_FUNDS','BASELINE') THEN
3349: RETURN;
3350: END IF;
3351:
3352: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3353: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : In start ');
3354: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : p_application_id = '||p_application_id);
3355: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : p_partial_flag = '||p_partial_flag);
3356: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling init_plsql_tabs to initialize the pl/sql tabs ');

Line 3353: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : In start ');

3349: RETURN;
3350: END IF;
3351:
3352: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3353: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : In start ');
3354: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : p_application_id = '||p_application_id);
3355: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : p_partial_flag = '||p_partial_flag);
3356: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling init_plsql_tabs to initialize the pl/sql tabs ');
3357: End if;

Line 3354: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : p_application_id = '||p_application_id);

3350: END IF;
3351:
3352: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3353: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : In start ');
3354: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : p_application_id = '||p_application_id);
3355: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : p_partial_flag = '||p_partial_flag);
3356: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling init_plsql_tabs to initialize the pl/sql tabs ');
3357: End if;
3358:

Line 3355: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : p_partial_flag = '||p_partial_flag);

3351:
3352: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3353: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : In start ');
3354: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : p_application_id = '||p_application_id);
3355: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : p_partial_flag = '||p_partial_flag);
3356: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling init_plsql_tabs to initialize the pl/sql tabs ');
3357: End if;
3358:
3359: -- Initialize the pl/sql table which stores pa_bc_packets records

Line 3356: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling init_plsql_tabs to initialize the pl/sql tabs ');

3352: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3353: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : In start ');
3354: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : p_application_id = '||p_application_id);
3355: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : p_partial_flag = '||p_partial_flag);
3356: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling init_plsql_tabs to initialize the pl/sql tabs ');
3357: End if;
3358:
3359: -- Initialize the pl/sql table which stores pa_bc_packets records
3360: init_plsql_tabs;

Line 3362: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3358:
3359: -- Initialize the pl/sql table which stores pa_bc_packets records
3360: init_plsql_tabs;
3361:
3362: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3363: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling PA_FUNDS_CONTROL_UTILS.init_util_variables');
3364: End if;
3365:
3366: --Initialize the funds control util package global variables

Line 3363: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling PA_FUNDS_CONTROL_UTILS.init_util_variables');

3359: -- Initialize the pl/sql table which stores pa_bc_packets records
3360: init_plsql_tabs;
3361:
3362: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3363: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling PA_FUNDS_CONTROL_UTILS.init_util_variables');
3364: End if;
3365:
3366: --Initialize the funds control util package global variables
3367: PA_FUNDS_CONTROL_UTILS.init_util_variables;

Line 3369: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3365:
3366: --Initialize the funds control util package global variables
3367: PA_FUNDS_CONTROL_UTILS.init_util_variables;
3368:
3369: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3370: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling pa_multi_currency.init');
3371: End if;
3372: -- initialize the accounting currency code,
3373: pa_multi_currency.init;

Line 3370: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling pa_multi_currency.init');

3366: --Initialize the funds control util package global variables
3367: PA_FUNDS_CONTROL_UTILS.init_util_variables;
3368:
3369: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3370: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling pa_multi_currency.init');
3371: End if;
3372: -- initialize the accounting currency code,
3373: pa_multi_currency.init;
3374:

Line 3376: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3372: -- initialize the accounting currency code,
3373: pa_multi_currency.init;
3374:
3375:
3376: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3377: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling pa_multi_currency.g_accounting_currency_code');
3378: End if;
3379: --Get the accounting currency into a global variable.
3380: g_acct_currency_code := pa_multi_currency.g_accounting_currency_code;

Line 3377: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling pa_multi_currency.g_accounting_currency_code');

3373: pa_multi_currency.init;
3374:
3375:
3376: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3377: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling pa_multi_currency.g_accounting_currency_code');
3378: End if;
3379: --Get the accounting currency into a global variable.
3380: g_acct_currency_code := pa_multi_currency.g_accounting_currency_code;
3381:

Line 3385: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3381:
3382: -------->6599207 ------As part of CC Enhancements
3383: -- The following call is to create bcpackets for GL budget.
3384:
3385: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3386: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling populate_plsql_tabs_CBC');
3387: End if;
3388:
3389: IF p_application_id = 8407 THEN --Calling application is Contract Commitments

Line 3386: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling populate_plsql_tabs_CBC');

3382: -------->6599207 ------As part of CC Enhancements
3383: -- The following call is to create bcpackets for GL budget.
3384:
3385: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3386: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling populate_plsql_tabs_CBC');
3387: End if;
3388:
3389: IF p_application_id = 8407 THEN --Calling application is Contract Commitments
3390: populate_plsql_tabs_CBC(NULL,'GL','','',p_bc_mode);

Line 3393: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3389: IF p_application_id = 8407 THEN --Calling application is Contract Commitments
3390: populate_plsql_tabs_CBC(NULL,'GL','','',p_bc_mode);
3391: END IF;
3392:
3393: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3394: pa_funds_control_pkg.log_message(p_msg_token1 => 'After Calling populate_plsql_tabs_CBC');
3395: End if;
3396: -------->6599207 ------END
3397:

Line 3394: pa_funds_control_pkg.log_message(p_msg_token1 => 'After Calling populate_plsql_tabs_CBC');

3390: populate_plsql_tabs_CBC(NULL,'GL','','',p_bc_mode);
3391: END IF;
3392:
3393: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3394: pa_funds_control_pkg.log_message(p_msg_token1 => 'After Calling populate_plsql_tabs_CBC');
3395: End if;
3396: -------->6599207 ------END
3397:
3398: IF p_application_id = 200 THEN --Calling application is Payables

Line 3400: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3396: -------->6599207 ------END
3397:
3398: IF p_application_id = 200 THEN --Calling application is Payables
3399:
3400: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3401: pa_funds_control_pkg.log_message(p_msg_token1 => 'Fetching eligible distributions from ap_invoice_distributions_all');
3402: End if;
3403:
3404: OPEN c_proj_ap_dist;

Line 3401: pa_funds_control_pkg.log_message(p_msg_token1 => 'Fetching eligible distributions from ap_invoice_distributions_all');

3397:
3398: IF p_application_id = 200 THEN --Calling application is Payables
3399:
3400: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3401: pa_funds_control_pkg.log_message(p_msg_token1 => 'Fetching eligible distributions from ap_invoice_distributions_all');
3402: End if;
3403:
3404: OPEN c_proj_ap_dist;
3405: FETCH c_proj_ap_dist BULK COLLECT INTO g_ap_inv_dist_id,g_ap_line_type_lkup;

Line 3408: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3404: OPEN c_proj_ap_dist;
3405: FETCH c_proj_ap_dist BULK COLLECT INTO g_ap_inv_dist_id,g_ap_line_type_lkup;
3406: CLOSE c_proj_ap_dist;
3407:
3408: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3409: pa_funds_control_pkg.log_message(p_msg_token1 => 'Number of AP distribuions fetched ='||g_ap_inv_dist_id.count);
3410: End if;
3411:
3412: IF g_ap_inv_dist_id.count <> 0 THEN

Line 3409: pa_funds_control_pkg.log_message(p_msg_token1 => 'Number of AP distribuions fetched ='||g_ap_inv_dist_id.count);

3405: FETCH c_proj_ap_dist BULK COLLECT INTO g_ap_inv_dist_id,g_ap_line_type_lkup;
3406: CLOSE c_proj_ap_dist;
3407:
3408: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3409: pa_funds_control_pkg.log_message(p_msg_token1 => 'Number of AP distribuions fetched ='||g_ap_inv_dist_id.count);
3410: End if;
3411:
3412: IF g_ap_inv_dist_id.count <> 0 THEN
3413:

Line 3433: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3429: END IF;
3430:
3431: END LOOP;
3432:
3433: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3434: pa_funds_control_pkg.log_message(p_msg_token1 => 'For current run there exists PREPAY distribution ? '||l_prepay_exists);
3435: pa_funds_control_pkg.log_message(p_msg_token1 => 'For current run there exists Std Invoice distribution ? '||l_stdinvoice_exists);
3436: End if;
3437:

Line 3434: pa_funds_control_pkg.log_message(p_msg_token1 => 'For current run there exists PREPAY distribution ? '||l_prepay_exists);

3430:
3431: END LOOP;
3432:
3433: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3434: pa_funds_control_pkg.log_message(p_msg_token1 => 'For current run there exists PREPAY distribution ? '||l_prepay_exists);
3435: pa_funds_control_pkg.log_message(p_msg_token1 => 'For current run there exists Std Invoice distribution ? '||l_stdinvoice_exists);
3436: End if;
3437:
3438: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

Line 3435: pa_funds_control_pkg.log_message(p_msg_token1 => 'For current run there exists Std Invoice distribution ? '||l_stdinvoice_exists);

3431: END LOOP;
3432:
3433: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3434: pa_funds_control_pkg.log_message(p_msg_token1 => 'For current run there exists PREPAY distribution ? '||l_prepay_exists);
3435: pa_funds_control_pkg.log_message(p_msg_token1 => 'For current run there exists Std Invoice distribution ? '||l_stdinvoice_exists);
3436: End if;
3437:
3438: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3439: pa_funds_control_pkg.log_message(p_msg_token1 => 'Fetching required data from AP extract into plsql tables');

Line 3438: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3434: pa_funds_control_pkg.log_message(p_msg_token1 => 'For current run there exists PREPAY distribution ? '||l_prepay_exists);
3435: pa_funds_control_pkg.log_message(p_msg_token1 => 'For current run there exists Std Invoice distribution ? '||l_stdinvoice_exists);
3436: End if;
3437:
3438: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3439: pa_funds_control_pkg.log_message(p_msg_token1 => 'Fetching required data from AP extract into plsql tables');
3440: End if;
3441:
3442: OPEN cur_ap_bc_dist(l_stdinvoice_exists,l_prepay_exists);

Line 3439: pa_funds_control_pkg.log_message(p_msg_token1 => 'Fetching required data from AP extract into plsql tables');

3435: pa_funds_control_pkg.log_message(p_msg_token1 => 'For current run there exists Std Invoice distribution ? '||l_stdinvoice_exists);
3436: End if;
3437:
3438: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3439: pa_funds_control_pkg.log_message(p_msg_token1 => 'Fetching required data from AP extract into plsql tables');
3440: End if;
3441:
3442: OPEN cur_ap_bc_dist(l_stdinvoice_exists,l_prepay_exists);
3443: FETCH cur_ap_bc_dist BULK COLLECT INTO

Line 3500: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3496: into g_tab_bc_packet_id(i)
3497: from dual;
3498: END LOOP;
3499:
3500: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3501: pa_funds_control_pkg.log_message(p_msg_token1 => 'Number of records fetched from AP extract into plsql tables'||g_tab_doc_header_id.count);
3502: End if;
3503:
3504: -- AP extract returns one record for an AP distribution with PO/quantity variance and amount

Line 3501: pa_funds_control_pkg.log_message(p_msg_token1 => 'Number of records fetched from AP extract into plsql tables'||g_tab_doc_header_id.count);

3497: from dual;
3498: END LOOP;
3499:
3500: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3501: pa_funds_control_pkg.log_message(p_msg_token1 => 'Number of records fetched from AP extract into plsql tables'||g_tab_doc_header_id.count);
3502: End if;
3503:
3504: -- AP extract returns one record for an AP distribution with PO/quantity variance and amount
3505: -- variance columns populated. Hence AP line with this information populated should be split into

Line 3508: IF pa_funds_control_pkg.g_debug_mode = 'Y' AND g_tab_doc_header_id.count<>0 THEN

3504: -- AP extract returns one record for an AP distribution with PO/quantity variance and amount
3505: -- variance columns populated. Hence AP line with this information populated should be split into
3506: -- multiple bc packet records.
3507:
3508: IF pa_funds_control_pkg.g_debug_mode = 'Y' AND g_tab_doc_header_id.count<>0 THEN
3509:
3510: FOR l_index IN 1..g_tab_doc_header_id.last LOOP
3511:
3512: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' fetched from AP extract***');

Line 3512: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' fetched from AP extract***');

3508: IF pa_funds_control_pkg.g_debug_mode = 'Y' AND g_tab_doc_header_id.count<>0 THEN
3509:
3510: FOR l_index IN 1..g_tab_doc_header_id.last LOOP
3511:
3512: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' fetched from AP extract***');
3513: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3514: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3515: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3516: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));

Line 3513: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));

3509:
3510: FOR l_index IN 1..g_tab_doc_header_id.last LOOP
3511:
3512: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' fetched from AP extract***');
3513: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3514: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3515: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3516: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3517: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));

Line 3514: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));

3510: FOR l_index IN 1..g_tab_doc_header_id.last LOOP
3511:
3512: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' fetched from AP extract***');
3513: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3514: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3515: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3516: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3517: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3518: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));

Line 3515: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));

3511:
3512: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' fetched from AP extract***');
3513: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3514: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3515: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3516: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3517: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3518: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3519: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));

Line 3516: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));

3512: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' fetched from AP extract***');
3513: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3514: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3515: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3516: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3517: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3518: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3519: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3520: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));

Line 3517: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));

3513: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3514: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3515: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3516: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3517: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3518: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3519: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3520: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3521: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));

Line 3518: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));

3514: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3515: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3516: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3517: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3518: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3519: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3520: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3521: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3522: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));

Line 3519: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));

3515: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3516: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3517: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3518: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3519: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3520: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3521: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3522: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3523: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));

Line 3520: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));

3516: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3517: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3518: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3519: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3520: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3521: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3522: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3523: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3524: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));

Line 3521: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));

3517: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3518: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3519: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3520: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3521: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3522: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3523: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3524: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3525: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));

Line 3522: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));

3518: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3519: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3520: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3521: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3522: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3523: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3524: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3525: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3526: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));

Line 3523: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));

3519: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3520: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3521: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3522: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3523: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3524: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3525: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3526: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));
3527: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));

Line 3524: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));

3520: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3521: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3522: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3523: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3524: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3525: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3526: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));
3527: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3528: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));

Line 3525: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));

3521: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3522: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3523: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3524: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3525: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3526: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));
3527: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3528: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3529: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));

Line 3526: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));

3522: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3523: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3524: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3525: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3526: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));
3527: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3528: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3529: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3530: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));

Line 3527: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));

3523: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3524: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3525: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3526: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));
3527: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3528: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3529: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3530: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3531: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));

Line 3528: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));

3524: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3525: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3526: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));
3527: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3528: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3529: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3530: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3531: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3532: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));

Line 3529: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));

3525: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3526: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));
3527: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3528: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3529: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3530: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3531: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3532: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3533: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));

Line 3530: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));

3526: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));
3527: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3528: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3529: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3530: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3531: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3532: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3533: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3534: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));

Line 3531: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));

3527: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3528: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3529: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3530: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3531: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3532: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3533: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3534: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3535: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));

Line 3532: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));

3528: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3529: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3530: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3531: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3532: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3533: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3534: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3535: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3536: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));

Line 3533: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));

3529: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3530: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3531: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3532: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3533: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3534: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3535: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3536: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3537: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));

Line 3534: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));

3530: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3531: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3532: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3533: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3534: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3535: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3536: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3537: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3538: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));

Line 3535: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));

3531: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3532: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3533: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3534: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3535: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3536: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3537: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3538: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3539: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));

Line 3536: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));

3532: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3533: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3534: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3535: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3536: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3537: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3538: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3539: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3540: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));

Line 3537: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));

3533: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3534: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3535: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3536: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3537: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3538: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3539: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3540: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3541: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));

Line 3538: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));

3534: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3535: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3536: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3537: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3538: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3539: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3540: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3541: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3542: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));

Line 3539: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));

3535: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3536: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3537: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3538: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3539: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3540: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3541: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3542: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3543: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));

Line 3540: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));

3536: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3537: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3538: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3539: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3540: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3541: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3542: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3543: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3544: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));

Line 3541: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));

3537: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3538: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3539: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3540: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3541: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3542: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3543: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3544: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3545: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));

Line 3542: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));

3538: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3539: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3540: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3541: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3542: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3543: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3544: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3545: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));
3546: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));

Line 3543: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));

3539: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3540: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3541: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3542: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3543: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3544: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3545: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));
3546: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));
3547: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));

Line 3544: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));

3540: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3541: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3542: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3543: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3544: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3545: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));
3546: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));
3547: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));
3548: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));

Line 3545: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));

3541: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3542: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3543: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3544: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3545: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));
3546: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));
3547: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));
3548: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));
3549: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));

Line 3546: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));

3542: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3543: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3544: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3545: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));
3546: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));
3547: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));
3548: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));
3549: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));
3550: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));

Line 3547: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));

3543: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3544: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3545: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));
3546: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));
3547: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));
3548: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));
3549: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));
3550: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3551: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));

Line 3548: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));

3544: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3545: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));
3546: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));
3547: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));
3548: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));
3549: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));
3550: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3551: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3552: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));

Line 3549: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));

3545: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));
3546: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));
3547: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));
3548: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));
3549: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));
3550: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3551: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3552: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3553: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));

Line 3550: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));

3546: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));
3547: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));
3548: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));
3549: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));
3550: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3551: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3552: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3553: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3554: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));

Line 3551: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));

3547: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));
3548: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));
3549: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));
3550: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3551: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3552: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3553: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3554: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3555: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));

Line 3552: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));

3548: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));
3549: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));
3550: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3551: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3552: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3553: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3554: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3555: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
3556: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_parent_reversal_id = '||g_tab_parent_reversal_id(l_index));

Line 3553: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));

3549: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));
3550: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3551: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3552: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3553: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3554: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3555: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
3556: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_parent_reversal_id = '||g_tab_parent_reversal_id(l_index));
3557: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' fetched from AP extract***');

Line 3554: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));

3550: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3551: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3552: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3553: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3554: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3555: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
3556: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_parent_reversal_id = '||g_tab_parent_reversal_id(l_index));
3557: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' fetched from AP extract***');
3558:

Line 3555: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));

3551: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3552: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3553: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3554: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3555: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
3556: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_parent_reversal_id = '||g_tab_parent_reversal_id(l_index));
3557: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' fetched from AP extract***');
3558:
3559: END LOOP;

Line 3556: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_parent_reversal_id = '||g_tab_parent_reversal_id(l_index));

3552: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3553: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3554: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3555: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
3556: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_parent_reversal_id = '||g_tab_parent_reversal_id(l_index));
3557: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' fetched from AP extract***');
3558:
3559: END LOOP;
3560:

Line 3557: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' fetched from AP extract***');

3553: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3554: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3555: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
3556: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_parent_reversal_id = '||g_tab_parent_reversal_id(l_index));
3557: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' fetched from AP extract***');
3558:
3559: END LOOP;
3560:
3561: End if;

Line 3567: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3563: IF g_tab_doc_header_id.count <> 0 THEN
3564:
3565: FOR l_index IN 1..g_tab_doc_header_id.last LOOP
3566:
3567: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3568: pa_funds_control_pkg.log_message(p_msg_token1 => 'Before fetching c_ap_details');
3569: End if;
3570:
3571: OPEN c_ap_details (g_tab_inv_distribution_id(l_index));

Line 3568: pa_funds_control_pkg.log_message(p_msg_token1 => 'Before fetching c_ap_details');

3564:
3565: FOR l_index IN 1..g_tab_doc_header_id.last LOOP
3566:
3567: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3568: pa_funds_control_pkg.log_message(p_msg_token1 => 'Before fetching c_ap_details');
3569: End if;
3570:
3571: OPEN c_ap_details (g_tab_inv_distribution_id(l_index));
3572: FETCH c_ap_details INTO g_tab_set_of_books_id(l_index),

Line 3578: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3574: g_tab_org_id(l_index),
3575: g_tab_vendor_id(l_index);
3576: CLOSE c_ap_details;
3577:
3578: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3579: pa_funds_control_pkg.log_message(p_msg_token1 => 'After fetching c_ap_details');
3580: pa_funds_control_pkg.log_message(p_msg_token1 => 'Deriving DR and CR column ');
3581: End if;
3582:

Line 3579: pa_funds_control_pkg.log_message(p_msg_token1 => 'After fetching c_ap_details');

3575: g_tab_vendor_id(l_index);
3576: CLOSE c_ap_details;
3577:
3578: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3579: pa_funds_control_pkg.log_message(p_msg_token1 => 'After fetching c_ap_details');
3580: pa_funds_control_pkg.log_message(p_msg_token1 => 'Deriving DR and CR column ');
3581: End if;
3582:
3583: IF NVL(g_tab_entered_amount(l_index),0) <0 THEN

Line 3580: pa_funds_control_pkg.log_message(p_msg_token1 => 'Deriving DR and CR column ');

3576: CLOSE c_ap_details;
3577:
3578: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3579: pa_funds_control_pkg.log_message(p_msg_token1 => 'After fetching c_ap_details');
3580: pa_funds_control_pkg.log_message(p_msg_token1 => 'Deriving DR and CR column ');
3581: End if;
3582:
3583: IF NVL(g_tab_entered_amount(l_index),0) <0 THEN
3584: g_tab_entered_dr(l_index) := 0;

Line 3599: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3595: g_tab_accounted_cr(l_index) := 0;
3596: g_tab_accounted_dr(l_index) := NVL(g_tab_accted_amount(l_index),0);
3597: END IF;
3598:
3599: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3600: pa_funds_control_pkg.log_message(p_msg_token1 => 'After deriving DR and CR column ');
3601: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling pa_funds_control_utils2.GET_DRAFTORBASELINE_BDGTVER');
3602: End if;
3603:

Line 3600: pa_funds_control_pkg.log_message(p_msg_token1 => 'After deriving DR and CR column ');

3596: g_tab_accounted_dr(l_index) := NVL(g_tab_accted_amount(l_index),0);
3597: END IF;
3598:
3599: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3600: pa_funds_control_pkg.log_message(p_msg_token1 => 'After deriving DR and CR column ');
3601: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling pa_funds_control_utils2.GET_DRAFTORBASELINE_BDGTVER');
3602: End if;
3603:
3604: -- Code to populate budget_version_id

Line 3601: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling pa_funds_control_utils2.GET_DRAFTORBASELINE_BDGTVER');

3597: END IF;
3598:
3599: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3600: pa_funds_control_pkg.log_message(p_msg_token1 => 'After deriving DR and CR column ');
3601: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling pa_funds_control_utils2.GET_DRAFTORBASELINE_BDGTVER');
3602: End if;
3603:
3604: -- Code to populate budget_version_id
3605: g_tab_budget_version_id(l_index)

Line 3610: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3606: := pa_funds_control_utils2.GET_DRAFTORBASELINE_BDGTVER
3607: (g_tab_project_id(l_index),'GL','BASELINE');
3608: If (g_tab_budget_version_id(l_index) is NULL ) Then
3609:
3610: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3611: pa_funds_control_pkg.log_message(p_msg_token1 => 'Budget derivation failed marking to F166 ');
3612: End if;
3613: g_tab_result_code(l_index) := 'F166';
3614: g_tab_status_code(l_index) := 'R';

Line 3611: pa_funds_control_pkg.log_message(p_msg_token1 => 'Budget derivation failed marking to F166 ');

3607: (g_tab_project_id(l_index),'GL','BASELINE');
3608: If (g_tab_budget_version_id(l_index) is NULL ) Then
3609:
3610: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3611: pa_funds_control_pkg.log_message(p_msg_token1 => 'Budget derivation failed marking to F166 ');
3612: End if;
3613: g_tab_result_code(l_index) := 'F166';
3614: g_tab_status_code(l_index) := 'R';
3615: g_tab_fck_reqd_flag(l_index) := 'Y';

Line 3627: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3623:
3624: End If; --If (g_tab_budget_version_id(l_index) is NULL ) Then
3625: --End of code to populate budget_version_id
3626:
3627: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3628: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of derived Budget Version Id ='||g_tab_budget_version_id(l_index));
3629: End if;
3630:
3631: -- Code to check if there exists associated PO/Release and if exists create records

Line 3628: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of derived Budget Version Id ='||g_tab_budget_version_id(l_index));

3624: End If; --If (g_tab_budget_version_id(l_index) is NULL ) Then
3625: --End of code to populate budget_version_id
3626:
3627: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3628: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of derived Budget Version Id ='||g_tab_budget_version_id(l_index));
3629: End if;
3630:
3631: -- Code to check if there exists associated PO/Release and if exists create records
3632: -- to relieve amount variance/quantitiy variance AND PO .

Line 3636: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3632: -- to relieve amount variance/quantitiy variance AND PO .
3633:
3634: IF g_tab_ap_po_distribution_id(l_index) IS NOT NULL THEN
3635:
3636: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3637: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling CREATE_BACKING_PO_APVAR_REC ');
3638: End if;
3639:
3640: -- Creating PO relieving record by copying AP line record and overwriting required column values

Line 3637: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling CREATE_BACKING_PO_APVAR_REC ');

3633:
3634: IF g_tab_ap_po_distribution_id(l_index) IS NOT NULL THEN
3635:
3636: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3637: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling CREATE_BACKING_PO_APVAR_REC ');
3638: End if;
3639:
3640: -- Creating PO relieving record by copying AP line record and overwriting required column values
3641:

Line 3652: IF pa_funds_control_pkg.g_debug_mode = 'Y' AND g_tab_doc_header_id.count<>0 THEN

3648: END LOOP;
3649:
3650: END IF;
3651:
3652: IF pa_funds_control_pkg.g_debug_mode = 'Y' AND g_tab_doc_header_id.count<>0 THEN
3653:
3654: FOR l_index IN 1..g_tab_doc_header_id.last LOOP
3655:
3656: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after firing AP fetching logic ***');

Line 3656: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after firing AP fetching logic ***');

3652: IF pa_funds_control_pkg.g_debug_mode = 'Y' AND g_tab_doc_header_id.count<>0 THEN
3653:
3654: FOR l_index IN 1..g_tab_doc_header_id.last LOOP
3655:
3656: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after firing AP fetching logic ***');
3657: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3658: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3659: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3660: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));

Line 3657: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));

3653:
3654: FOR l_index IN 1..g_tab_doc_header_id.last LOOP
3655:
3656: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after firing AP fetching logic ***');
3657: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3658: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3659: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3660: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3661: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));

Line 3658: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));

3654: FOR l_index IN 1..g_tab_doc_header_id.last LOOP
3655:
3656: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after firing AP fetching logic ***');
3657: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3658: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3659: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3660: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3661: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3662: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));

Line 3659: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));

3655:
3656: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after firing AP fetching logic ***');
3657: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3658: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3659: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3660: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3661: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3662: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3663: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));

Line 3660: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));

3656: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after firing AP fetching logic ***');
3657: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3658: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3659: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3660: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3661: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3662: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3663: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3664: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));

Line 3661: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));

3657: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3658: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3659: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3660: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3661: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3662: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3663: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3664: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3665: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));

Line 3662: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));

3658: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3659: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3660: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3661: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3662: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3663: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3664: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3665: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3666: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));

Line 3663: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));

3659: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3660: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3661: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3662: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3663: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3664: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3665: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3666: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3667: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));

Line 3664: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));

3660: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3661: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3662: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3663: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3664: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3665: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3666: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3667: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3668: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));

Line 3665: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));

3661: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3662: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3663: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3664: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3665: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3666: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3667: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3668: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3669: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));

Line 3666: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));

3662: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3663: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3664: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3665: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3666: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3667: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3668: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3669: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3670: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));

Line 3667: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));

3663: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3664: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3665: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3666: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3667: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3668: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3669: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3670: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));
3671: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));

Line 3668: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));

3664: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3665: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3666: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3667: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3668: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3669: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3670: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));
3671: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3672: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));

Line 3669: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));

3665: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3666: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3667: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3668: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3669: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3670: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));
3671: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3672: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3673: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));

Line 3670: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));

3666: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3667: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3668: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3669: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3670: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));
3671: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3672: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3673: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3674: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));

Line 3671: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));

3667: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3668: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3669: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3670: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));
3671: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3672: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3673: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3674: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3675: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));

Line 3672: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));

3668: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3669: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3670: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));
3671: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3672: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3673: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3674: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3675: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3676: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));

Line 3673: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));

3669: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3670: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));
3671: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3672: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3673: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3674: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3675: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3676: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));
3677: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));

Line 3674: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));

3670: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_inv_distribution_id = '||g_tab_inv_distribution_id(l_index));
3671: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3672: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3673: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3674: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3675: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3676: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));
3677: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));
3678: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));

Line 3675: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));

3671: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3672: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3673: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3674: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3675: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3676: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));
3677: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));
3678: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));
3679: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));

Line 3676: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));

3672: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3673: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3674: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3675: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3676: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));
3677: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));
3678: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));
3679: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));
3680: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));

Line 3677: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));

3673: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3674: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3675: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3676: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));
3677: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));
3678: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));
3679: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));
3680: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3681: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));

Line 3678: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));

3674: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3675: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3676: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));
3677: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));
3678: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));
3679: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));
3680: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3681: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3682: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));

Line 3679: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));

3675: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3676: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));
3677: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));
3678: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));
3679: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));
3680: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3681: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3682: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3683: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));

Line 3680: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));

3676: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));
3677: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));
3678: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));
3679: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));
3680: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3681: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3682: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3683: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3684: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));

Line 3681: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));

3677: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));
3678: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));
3679: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));
3680: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3681: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3682: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3683: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3684: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3685: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));

Line 3682: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));

3678: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));
3679: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));
3680: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3681: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3682: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3683: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3684: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3685: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3686: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));

Line 3683: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));

3679: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));
3680: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3681: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3682: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3683: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3684: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3685: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3686: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3687: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));

Line 3684: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));

3680: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3681: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3682: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3683: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3684: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3685: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3686: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3687: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3688: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));

Line 3685: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));

3681: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3682: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3683: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3684: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3685: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3686: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3687: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3688: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3689: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));

Line 3686: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));

3682: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3683: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3684: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3685: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3686: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3687: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3688: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3689: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3690: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));

Line 3687: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));

3683: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3684: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3685: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3686: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3687: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3688: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3689: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3690: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3691: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));

Line 3688: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));

3684: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3685: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3686: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3687: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3688: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3689: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3690: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3691: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3692: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));

Line 3689: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));

3685: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3686: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3687: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3688: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3689: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3690: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3691: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3692: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3693: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));

Line 3690: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));

3686: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3687: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3688: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3689: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3690: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3691: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3692: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3693: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));
3694: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));

Line 3691: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));

3687: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3688: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3689: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3690: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3691: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3692: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3693: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));
3694: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));
3695: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));

Line 3692: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));

3688: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3689: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3690: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3691: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3692: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3693: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));
3694: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));
3695: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));
3696: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));

Line 3693: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));

3689: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3690: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3691: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3692: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3693: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));
3694: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));
3695: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));
3696: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));
3697: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));

Line 3694: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));

3690: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3691: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3692: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3693: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));
3694: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));
3695: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));
3696: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));
3697: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));
3698: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));

Line 3695: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));

3691: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3692: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3693: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));
3694: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));
3695: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));
3696: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));
3697: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));
3698: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3699: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));

Line 3696: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));

3692: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3693: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));
3694: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));
3695: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));
3696: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));
3697: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));
3698: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3699: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3700: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));

Line 3697: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));

3693: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_quantity_variance = '||g_tab_ap_quantity_variance(l_index));
3694: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));
3695: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));
3696: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));
3697: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));
3698: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3699: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3700: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3701: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));

Line 3698: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));

3694: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_amount_variance = '||g_tab_ap_amount_variance(l_index));
3695: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));
3696: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));
3697: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));
3698: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3699: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3700: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3701: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3702: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));

Line 3699: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));

3695: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_qty_variance = '||g_tab_ap_base_qty_variance(l_index));
3696: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));
3697: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));
3698: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3699: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3700: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3701: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3702: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3703: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));

Line 3700: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));

3696: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_base_amount_variance = '||g_tab_ap_base_amount_variance(l_index));
3697: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));
3698: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3699: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3700: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3701: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3702: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3703: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
3704: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));

Line 3701: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));

3697: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_ap_po_distribution_id = '||g_tab_ap_po_distribution_id(l_index));
3698: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3699: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3700: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3701: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3702: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3703: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
3704: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
3705: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));

Line 3702: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));

3698: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3699: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3700: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3701: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3702: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3703: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
3704: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
3705: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
3706: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));

Line 3703: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));

3699: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3700: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3701: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3702: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3703: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
3704: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
3705: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
3706: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
3707: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));

Line 3704: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));

3700: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3701: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3702: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3703: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
3704: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
3705: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
3706: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
3707: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
3708: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_parent_reversal_id = '||g_tab_parent_reversal_id(l_index));

Line 3705: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));

3701: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3702: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3703: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
3704: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
3705: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
3706: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
3707: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
3708: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_parent_reversal_id = '||g_tab_parent_reversal_id(l_index));
3709: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' records after firing AP fetching logic***');

Line 3706: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));

3702: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3703: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
3704: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
3705: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
3706: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
3707: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
3708: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_parent_reversal_id = '||g_tab_parent_reversal_id(l_index));
3709: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' records after firing AP fetching logic***');
3710:

Line 3707: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));

3703: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
3704: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
3705: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
3706: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
3707: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
3708: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_parent_reversal_id = '||g_tab_parent_reversal_id(l_index));
3709: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' records after firing AP fetching logic***');
3710:
3711: END LOOP;

Line 3708: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_parent_reversal_id = '||g_tab_parent_reversal_id(l_index));

3704: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
3705: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
3706: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
3707: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
3708: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_parent_reversal_id = '||g_tab_parent_reversal_id(l_index));
3709: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' records after firing AP fetching logic***');
3710:
3711: END LOOP;
3712:

Line 3709: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' records after firing AP fetching logic***');

3705: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
3706: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
3707: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
3708: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_parent_reversal_id = '||g_tab_parent_reversal_id(l_index));
3709: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' records after firing AP fetching logic***');
3710:
3711: END LOOP;
3712:
3713: End if;

Line 3721: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3717: END IF; -- IF p_application_id = 200 THEN
3718:
3719: IF p_application_id = 201 THEN -- Calling application is Purchasing
3720:
3721: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3722: pa_funds_control_pkg.log_message(p_msg_token1 => 'Fetching PO/REQ data ');
3723: End if;
3724:
3725: OPEN cur_po_bc_dist ;

Line 3722: pa_funds_control_pkg.log_message(p_msg_token1 => 'Fetching PO/REQ data ');

3718:
3719: IF p_application_id = 201 THEN -- Calling application is Purchasing
3720:
3721: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3722: pa_funds_control_pkg.log_message(p_msg_token1 => 'Fetching PO/REQ data ');
3723: End if;
3724:
3725: OPEN cur_po_bc_dist ;
3726: FETCH cur_po_bc_dist BULK COLLECT INTO

Line 3780: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3776: g_tab_bc_packet_id; -- Bug 5406690
3777:
3778: CLOSE cur_po_bc_dist ;
3779:
3780: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3781: pa_funds_control_pkg.log_message(p_msg_token1 => 'Number of AP distributions fetched for FC ='||g_tab_set_of_books_id.count);
3782: End if;
3783:
3784: IF pa_funds_control_pkg.g_debug_mode = 'Y' AND g_tab_doc_header_id.count<>0 THEN

Line 3781: pa_funds_control_pkg.log_message(p_msg_token1 => 'Number of AP distributions fetched for FC ='||g_tab_set_of_books_id.count);

3777:
3778: CLOSE cur_po_bc_dist ;
3779:
3780: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3781: pa_funds_control_pkg.log_message(p_msg_token1 => 'Number of AP distributions fetched for FC ='||g_tab_set_of_books_id.count);
3782: End if;
3783:
3784: IF pa_funds_control_pkg.g_debug_mode = 'Y' AND g_tab_doc_header_id.count<>0 THEN
3785:

Line 3784: IF pa_funds_control_pkg.g_debug_mode = 'Y' AND g_tab_doc_header_id.count<>0 THEN

3780: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3781: pa_funds_control_pkg.log_message(p_msg_token1 => 'Number of AP distributions fetched for FC ='||g_tab_set_of_books_id.count);
3782: End if;
3783:
3784: IF pa_funds_control_pkg.g_debug_mode = 'Y' AND g_tab_doc_header_id.count<>0 THEN
3785:
3786: FOR l_index IN 1..g_tab_doc_header_id.last LOOP
3787:
3788: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after fetching data from po_bc_distributions ***');

Line 3788: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after fetching data from po_bc_distributions ***');

3784: IF pa_funds_control_pkg.g_debug_mode = 'Y' AND g_tab_doc_header_id.count<>0 THEN
3785:
3786: FOR l_index IN 1..g_tab_doc_header_id.last LOOP
3787:
3788: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after fetching data from po_bc_distributions ***');
3789: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3790: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3791: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3792: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));

Line 3789: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));

3785:
3786: FOR l_index IN 1..g_tab_doc_header_id.last LOOP
3787:
3788: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after fetching data from po_bc_distributions ***');
3789: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3790: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3791: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3792: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3793: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));

Line 3790: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));

3786: FOR l_index IN 1..g_tab_doc_header_id.last LOOP
3787:
3788: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after fetching data from po_bc_distributions ***');
3789: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3790: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3791: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3792: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3793: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3794: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));

Line 3791: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));

3787:
3788: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after fetching data from po_bc_distributions ***');
3789: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3790: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3791: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3792: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3793: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3794: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3795: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));

Line 3792: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));

3788: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after fetching data from po_bc_distributions ***');
3789: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3790: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3791: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3792: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3793: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3794: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3795: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3796: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));

Line 3793: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));

3789: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3790: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3791: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3792: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3793: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3794: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3795: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3796: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3797: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));

Line 3794: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));

3790: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3791: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3792: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3793: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3794: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3795: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3796: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3797: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3798: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));

Line 3795: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));

3791: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3792: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3793: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3794: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3795: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3796: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3797: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3798: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3799: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));

Line 3796: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));

3792: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3793: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3794: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3795: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3796: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3797: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3798: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3799: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3800: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));

Line 3797: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));

3793: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3794: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3795: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3796: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3797: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3798: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3799: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3800: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3801: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));

Line 3798: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));

3794: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3795: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3796: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3797: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3798: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3799: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3800: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3801: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3802: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));

Line 3799: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));

3795: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3796: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3797: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3798: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3799: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3800: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3801: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3802: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3803: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));

Line 3800: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));

3796: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3797: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3798: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3799: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3800: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3801: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3802: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3803: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3804: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));

Line 3801: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));

3797: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3798: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3799: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3800: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3801: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3802: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3803: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3804: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3805: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));

Line 3802: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));

3798: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3799: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3800: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3801: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3802: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3803: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3804: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3805: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3806: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));

Line 3803: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));

3799: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
3800: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3801: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3802: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3803: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3804: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3805: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3806: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3807: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));

Line 3804: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));

3800: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
3801: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3802: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3803: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3804: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3805: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3806: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3807: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3808: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));

Line 3805: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));

3801: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
3802: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3803: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3804: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3805: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3806: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3807: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3808: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3809: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));

Line 3806: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));

3802: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
3803: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3804: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3805: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3806: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3807: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3808: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3809: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3810: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));

Line 3807: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));

3803: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
3804: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3805: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3806: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3807: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3808: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3809: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3810: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3811: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));

Line 3808: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));

3804: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
3805: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3806: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3807: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3808: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3809: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3810: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3811: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3812: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));

Line 3809: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));

3805: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
3806: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3807: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3808: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3809: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3810: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3811: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3812: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3813: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));

Line 3810: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));

3806: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
3807: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3808: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3809: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3810: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3811: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3812: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3813: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3814: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));

Line 3811: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));

3807: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
3808: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3809: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3810: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3811: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3812: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3813: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3814: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3815: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));

Line 3812: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));

3808: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
3809: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3810: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3811: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3812: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3813: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3814: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3815: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3816: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));

Line 3813: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));

3809: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
3810: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3811: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3812: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3813: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3814: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3815: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3816: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3817: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));

Line 3814: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));

3810: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
3811: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3812: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3813: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3814: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3815: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3816: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3817: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3818: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));

Line 3815: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));

3811: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
3812: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3813: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3814: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3815: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3816: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3817: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3818: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3819: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));

Line 3816: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));

3812: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
3813: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3814: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3815: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3816: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3817: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3818: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3819: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3820: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));

Line 3817: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));

3813: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
3814: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3815: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3816: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3817: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3818: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3819: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3820: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3821: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));

Line 3818: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));

3814: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
3815: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3816: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3817: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3818: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3819: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3820: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3821: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3822: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));

Line 3819: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));

3815: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3816: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3817: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3818: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3819: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3820: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3821: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3822: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3823: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));

Line 3820: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));

3816: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
3817: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3818: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3819: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3820: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3821: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3822: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3823: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3824: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));

Line 3821: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));

3817: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
3818: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3819: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3820: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3821: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3822: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3823: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3824: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3825: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));

Line 3822: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));

3818: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
3819: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3820: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3821: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3822: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3823: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3824: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3825: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
3826: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));

Line 3823: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));

3819: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
3820: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3821: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3822: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3823: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3824: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3825: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
3826: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
3827: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));

Line 3824: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));

3820: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
3821: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3822: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3823: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3824: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3825: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
3826: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
3827: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
3828: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));

Line 3825: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));

3821: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
3822: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3823: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3824: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3825: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
3826: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
3827: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
3828: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
3829: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_orig_sequence_num = '||g_tab_orig_sequence_num(l_index));

Line 3826: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));

3822: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
3823: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3824: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3825: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
3826: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
3827: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
3828: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
3829: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_orig_sequence_num = '||g_tab_orig_sequence_num(l_index));
3830: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_applied_to_dist_id_2 = '||g_tab_applied_to_dist_id_2(l_index));

Line 3827: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));

3823: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
3824: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3825: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
3826: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
3827: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
3828: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
3829: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_orig_sequence_num = '||g_tab_orig_sequence_num(l_index));
3830: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_applied_to_dist_id_2 = '||g_tab_applied_to_dist_id_2(l_index));
3831: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));

Line 3828: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));

3824: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
3825: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
3826: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
3827: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
3828: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
3829: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_orig_sequence_num = '||g_tab_orig_sequence_num(l_index));
3830: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_applied_to_dist_id_2 = '||g_tab_applied_to_dist_id_2(l_index));
3831: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
3832: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' records after fetching data from po_bc_distributions***');

Line 3829: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_orig_sequence_num = '||g_tab_orig_sequence_num(l_index));

3825: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
3826: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
3827: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
3828: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
3829: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_orig_sequence_num = '||g_tab_orig_sequence_num(l_index));
3830: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_applied_to_dist_id_2 = '||g_tab_applied_to_dist_id_2(l_index));
3831: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
3832: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' records after fetching data from po_bc_distributions***');
3833: END LOOP;

Line 3830: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_applied_to_dist_id_2 = '||g_tab_applied_to_dist_id_2(l_index));

3826: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
3827: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
3828: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
3829: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_orig_sequence_num = '||g_tab_orig_sequence_num(l_index));
3830: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_applied_to_dist_id_2 = '||g_tab_applied_to_dist_id_2(l_index));
3831: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
3832: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' records after fetching data from po_bc_distributions***');
3833: END LOOP;
3834:

Line 3831: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));

3827: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
3828: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
3829: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_orig_sequence_num = '||g_tab_orig_sequence_num(l_index));
3830: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_applied_to_dist_id_2 = '||g_tab_applied_to_dist_id_2(l_index));
3831: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
3832: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' records after fetching data from po_bc_distributions***');
3833: END LOOP;
3834:
3835: End if;

Line 3832: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' records after fetching data from po_bc_distributions***');

3828: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
3829: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_orig_sequence_num = '||g_tab_orig_sequence_num(l_index));
3830: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_applied_to_dist_id_2 = '||g_tab_applied_to_dist_id_2(l_index));
3831: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
3832: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' records after fetching data from po_bc_distributions***');
3833: END LOOP;
3834:
3835: End if;
3836:

Line 3848: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3844: l_old_po_header_id := 0;
3845: l_po_vendor_id := 0;
3846: l_po_org_id := 0;
3847:
3848: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3849: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling DERIVE_DR_CR ');
3850: End if;
3851:
3852: DERIVE_DR_CR;

Line 3849: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling DERIVE_DR_CR ');

3845: l_po_vendor_id := 0;
3846: l_po_org_id := 0;
3847:
3848: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3849: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling DERIVE_DR_CR ');
3850: End if;
3851:
3852: DERIVE_DR_CR;
3853:

Line 3856: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3852: DERIVE_DR_CR;
3853:
3854: FOR l_index IN 1..g_tab_set_of_books_id.Last LOOP
3855:
3856: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3857: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - document type = '||g_tab_doc_type(l_index));
3858: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - distribution Id = '||g_tab_doc_distribution_id(l_index));
3859: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - Entered Dr = '||g_tab_entered_dr(l_index));
3860: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - Entered Cr = '||g_tab_entered_cr(l_index));

Line 3857: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - document type = '||g_tab_doc_type(l_index));

3853:
3854: FOR l_index IN 1..g_tab_set_of_books_id.Last LOOP
3855:
3856: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3857: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - document type = '||g_tab_doc_type(l_index));
3858: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - distribution Id = '||g_tab_doc_distribution_id(l_index));
3859: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - Entered Dr = '||g_tab_entered_dr(l_index));
3860: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - Entered Cr = '||g_tab_entered_cr(l_index));
3861: End if;

Line 3858: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - distribution Id = '||g_tab_doc_distribution_id(l_index));

3854: FOR l_index IN 1..g_tab_set_of_books_id.Last LOOP
3855:
3856: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3857: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - document type = '||g_tab_doc_type(l_index));
3858: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - distribution Id = '||g_tab_doc_distribution_id(l_index));
3859: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - Entered Dr = '||g_tab_entered_dr(l_index));
3860: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - Entered Cr = '||g_tab_entered_cr(l_index));
3861: End if;
3862:

Line 3859: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - Entered Dr = '||g_tab_entered_dr(l_index));

3855:
3856: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3857: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - document type = '||g_tab_doc_type(l_index));
3858: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - distribution Id = '||g_tab_doc_distribution_id(l_index));
3859: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - Entered Dr = '||g_tab_entered_dr(l_index));
3860: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - Entered Cr = '||g_tab_entered_cr(l_index));
3861: End if;
3862:
3863: -- Code to populate budget_version_id

Line 3860: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - Entered Cr = '||g_tab_entered_cr(l_index));

3856: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3857: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - document type = '||g_tab_doc_type(l_index));
3858: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - distribution Id = '||g_tab_doc_distribution_id(l_index));
3859: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - Entered Dr = '||g_tab_entered_dr(l_index));
3860: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside LOOP - Entered Cr = '||g_tab_entered_cr(l_index));
3861: End if;
3862:
3863: -- Code to populate budget_version_id
3864: g_tab_budget_version_id(l_index)

Line 3868: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3864: g_tab_budget_version_id(l_index)
3865: := pa_funds_control_utils2.GET_DRAFTORBASELINE_BDGTVER
3866: (g_tab_project_id(l_index),'GL','BASELINE');
3867: If (g_tab_budget_version_id(l_index) is NULL ) Then
3868: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3869: pa_funds_control_pkg.log_message(p_msg_token1 => 'Budget derivation failed marking to F166 ');
3870: End if;
3871: g_tab_result_code(l_index) := 'F166';
3872: g_tab_status_code(l_index) := 'R';

Line 3869: pa_funds_control_pkg.log_message(p_msg_token1 => 'Budget derivation failed marking to F166 ');

3865: := pa_funds_control_utils2.GET_DRAFTORBASELINE_BDGTVER
3866: (g_tab_project_id(l_index),'GL','BASELINE');
3867: If (g_tab_budget_version_id(l_index) is NULL ) Then
3868: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3869: pa_funds_control_pkg.log_message(p_msg_token1 => 'Budget derivation failed marking to F166 ');
3870: End if;
3871: g_tab_result_code(l_index) := 'F166';
3872: g_tab_status_code(l_index) := 'R';
3873: g_tab_fck_reqd_flag(l_index) := 'Y';

Line 3885: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3881:
3882: End If; --If (g_tab_budget_version_id(l_index) is NULL ) Then
3883: --End of code to populate budget_version_id
3884:
3885: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3886: pa_funds_control_pkg.log_message(p_msg_token1 => 'Budget Version Id derived = '||g_tab_budget_version_id(l_index));
3887: End if;
3888:
3889: IF g_tab_doc_type(l_index) ='REQ' THEN

Line 3886: pa_funds_control_pkg.log_message(p_msg_token1 => 'Budget Version Id derived = '||g_tab_budget_version_id(l_index));

3882: End If; --If (g_tab_budget_version_id(l_index) is NULL ) Then
3883: --End of code to populate budget_version_id
3884:
3885: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3886: pa_funds_control_pkg.log_message(p_msg_token1 => 'Budget Version Id derived = '||g_tab_budget_version_id(l_index));
3887: End if;
3888:
3889: IF g_tab_doc_type(l_index) ='REQ' THEN
3890:

Line 3902: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3898: l_req_org_id;
3899: CLOSE cur_req_vend_org_details;
3900: l_old_req_line_id := g_tab_doc_line_id(l_index);
3901:
3902: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3903: pa_funds_control_pkg.log_message(p_msg_token1 => 'Vendor detials : l_req_vendor_id = '||l_req_vendor_id||' l_req_org_id = '||l_req_org_id);
3904: End if;
3905:
3906: END IF; --IF l_old_req_line_id <> g_tab_doc_line_id(l_index) THEN

Line 3903: pa_funds_control_pkg.log_message(p_msg_token1 => 'Vendor detials : l_req_vendor_id = '||l_req_vendor_id||' l_req_org_id = '||l_req_org_id);

3899: CLOSE cur_req_vend_org_details;
3900: l_old_req_line_id := g_tab_doc_line_id(l_index);
3901:
3902: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3903: pa_funds_control_pkg.log_message(p_msg_token1 => 'Vendor detials : l_req_vendor_id = '||l_req_vendor_id||' l_req_org_id = '||l_req_org_id);
3904: End if;
3905:
3906: END IF; --IF l_old_req_line_id <> g_tab_doc_line_id(l_index) THEN
3907:

Line 3913: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3909: g_tab_org_id(l_index) := l_req_org_id ;
3910:
3911: -- End of Code to populate vendor_id and org_id
3912:
3913: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3914: pa_funds_control_pkg.log_message(p_msg_token1 => 'main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3915: End if;
3916:
3917: -- Code to populate information for backing requisition

Line 3914: pa_funds_control_pkg.log_message(p_msg_token1 => 'main_or_backing_code = '||g_tab_main_or_backing_code(l_index));

3910:
3911: -- End of Code to populate vendor_id and org_id
3912:
3913: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3914: pa_funds_control_pkg.log_message(p_msg_token1 => 'main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
3915: End if;
3916:
3917: -- Code to populate information for backing requisition
3918: IF g_tab_main_or_backing_code(l_index) = 'B_REQ' THEN

Line 3947: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

3943: l_po_org_id;
3944: CLOSE cur_po_vend_org_details;
3945: l_old_po_header_id := g_tab_doc_header_id(l_index);
3946:
3947: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3948: pa_funds_control_pkg.log_message(p_msg_token1 => 'Vendor detials : l_po_vendor_id = '||l_po_vendor_id||' l_po_org_id = '||l_po_org_id);
3949: End if;
3950:
3951: END IF; --IF l_old_po_header_id <> g_tab_doc_header_id(l_index) THEN

Line 3948: pa_funds_control_pkg.log_message(p_msg_token1 => 'Vendor detials : l_po_vendor_id = '||l_po_vendor_id||' l_po_org_id = '||l_po_org_id);

3944: CLOSE cur_po_vend_org_details;
3945: l_old_po_header_id := g_tab_doc_header_id(l_index);
3946:
3947: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
3948: pa_funds_control_pkg.log_message(p_msg_token1 => 'Vendor detials : l_po_vendor_id = '||l_po_vendor_id||' l_po_org_id = '||l_po_org_id);
3949: End if;
3950:
3951: END IF; --IF l_old_po_header_id <> g_tab_doc_header_id(l_index) THEN
3952:

Line 3984: IF pa_funds_control_pkg.g_debug_mode = 'Y' AND g_tab_doc_header_id.count<>0 THEN

3980: END LOOP;
3981:
3982: END IF; --IF g_tab_set_of_books_id.count <> 0 THEN
3983:
3984: IF pa_funds_control_pkg.g_debug_mode = 'Y' AND g_tab_doc_header_id.count<>0 THEN
3985:
3986: FOR l_index IN 1..g_tab_doc_header_id.last LOOP
3987:
3988: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after firing PO fetching logic ***');

Line 3988: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after firing PO fetching logic ***');

3984: IF pa_funds_control_pkg.g_debug_mode = 'Y' AND g_tab_doc_header_id.count<>0 THEN
3985:
3986: FOR l_index IN 1..g_tab_doc_header_id.last LOOP
3987:
3988: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after firing PO fetching logic ***');
3989: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3990: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3991: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3992: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));

Line 3989: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));

3985:
3986: FOR l_index IN 1..g_tab_doc_header_id.last LOOP
3987:
3988: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after firing PO fetching logic ***');
3989: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3990: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3991: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3992: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3993: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));

Line 3990: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));

3986: FOR l_index IN 1..g_tab_doc_header_id.last LOOP
3987:
3988: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after firing PO fetching logic ***');
3989: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3990: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3991: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3992: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3993: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3994: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));

Line 3991: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));

3987:
3988: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after firing PO fetching logic ***');
3989: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3990: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3991: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3992: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3993: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3994: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3995: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));

Line 3992: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));

3988: pa_funds_control_pkg.log_message(p_msg_token1 => '***Start of record-'||l_index||' records after firing PO fetching logic ***');
3989: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3990: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3991: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3992: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3993: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3994: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3995: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3996: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));

Line 3993: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));

3989: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_version_id = '||g_tab_budget_version_id(l_index));
3990: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3991: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3992: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3993: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3994: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3995: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3996: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3997: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));

Line 3994: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));

3990: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_line_id = '||g_tab_budget_line_id(l_index));
3991: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3992: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3993: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3994: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3995: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3996: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3997: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3998: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));

Line 3995: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));

3991: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_budget_ccid = '||g_tab_budget_ccid(l_index));
3992: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3993: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3994: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3995: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3996: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3997: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3998: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3999: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));

Line 3996: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));

3992: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_project_id = '||g_tab_project_id(l_index));
3993: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3994: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3995: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3996: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3997: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3998: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3999: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
4000: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));

Line 3997: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));

3993: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_task_id = '||g_tab_task_id(l_index));
3994: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3995: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3996: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3997: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3998: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3999: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
4000: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
4001: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));

Line 3998: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));

3994: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_type = '||g_tab_exp_type(l_index));
3995: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3996: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3997: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3998: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3999: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
4000: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
4001: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
4002: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));

Line 3999: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));

3995: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_org_id = '||g_tab_exp_org_id(l_index));
3996: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3997: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3998: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3999: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
4000: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
4001: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
4002: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
4003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));

Line 4000: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));

3996: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_source_name = '||g_tab_je_source_name(l_index));
3997: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3998: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3999: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
4000: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
4001: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
4002: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
4003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
4004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));

Line 4001: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));

3997: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_je_category_name = '||g_tab_je_category_name(l_index));
3998: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3999: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
4000: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
4001: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
4002: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
4003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
4004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
4005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));

Line 4002: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));

3998: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_type = '||g_tab_doc_type(l_index));
3999: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
4000: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
4001: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
4002: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
4003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
4004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
4005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
4006: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));

Line 4003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));

3999: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_header_id = '||g_tab_doc_header_id(l_index));
4000: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
4001: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
4002: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
4003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
4004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
4005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
4006: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
4007: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));

Line 4004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));

4000: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_line_id = '||g_tab_doc_line_id(l_index));
4001: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
4002: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
4003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
4004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
4005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
4006: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
4007: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));
4008: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));

Line 4005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));

4001: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_doc_distribution_id = '||g_tab_doc_distribution_id(l_index));
4002: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
4003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
4004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
4005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
4006: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
4007: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));
4008: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));
4009: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));

Line 4006: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));

4002: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_actual_flag = '||g_tab_actual_flag(l_index));
4003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
4004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
4005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
4006: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
4007: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));
4008: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));
4009: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));
4010: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));

Line 4007: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));

4003: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_result_code = '||g_tab_result_code(l_index));
4004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
4005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
4006: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
4007: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));
4008: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));
4009: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));
4010: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));
4011: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));

Line 4008: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));

4004: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_status_code = '||g_tab_status_code(l_index));
4005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
4006: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
4007: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));
4008: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));
4009: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));
4010: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));
4011: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
4012: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));

Line 4009: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));

4005: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_amount = '||g_tab_entered_amount(l_index));
4006: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
4007: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));
4008: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));
4009: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));
4010: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));
4011: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
4012: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
4013: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));

Line 4010: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));

4006: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accted_amount = '||g_tab_accted_amount(l_index));
4007: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));
4008: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));
4009: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));
4010: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));
4011: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
4012: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
4013: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
4014: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));

Line 4011: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));

4007: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_dr = '||g_tab_entered_dr(l_index));
4008: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));
4009: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));
4010: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));
4011: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
4012: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
4013: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
4014: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
4015: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));

Line 4012: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));

4008: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_entered_cr = '||g_tab_entered_cr(l_index));
4009: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));
4010: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));
4011: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
4012: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
4013: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
4014: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
4015: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
4016: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));

Line 4013: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));

4009: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_dr = '||g_tab_accounted_dr(l_index));
4010: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));
4011: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
4012: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
4013: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
4014: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
4015: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
4016: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
4017: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));

Line 4014: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));

4010: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_accounted_cr = '||g_tab_accounted_cr(l_index));
4011: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
4012: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
4013: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
4014: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
4015: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
4016: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
4017: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
4018: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));

Line 4015: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));

4011: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_balance_posted_flag = '||g_tab_balance_posted_flag(l_index));
4012: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
4013: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
4014: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
4015: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
4016: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
4017: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
4018: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
4019: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));

Line 4016: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));

4012: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_funds_process_mode = '||g_tab_funds_process_mode(l_index));
4013: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
4014: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
4015: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
4016: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
4017: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
4018: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
4019: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
4020: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));

Line 4017: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));

4013: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_cost_flag = '||g_tab_burden_cost_flag(l_index));
4014: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
4015: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
4016: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
4017: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
4018: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
4019: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
4020: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
4021: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));

Line 4018: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));

4014: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference1 = '||g_tab_pkt_reference1(l_index));
4015: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
4016: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
4017: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
4018: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
4019: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
4020: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
4021: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
4022: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));

Line 4019: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));

4015: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference2 = '||g_tab_pkt_reference2(l_index));
4016: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
4017: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
4018: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
4019: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
4020: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
4021: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
4022: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
4023: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));

Line 4020: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));

4016: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_pkt_reference3 = '||g_tab_pkt_reference3(l_index));
4017: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
4018: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
4019: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
4020: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
4021: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
4022: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
4023: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
4024: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));

Line 4021: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));

4017: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_event_id = '||g_tab_event_id(l_index));
4018: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
4019: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
4020: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
4021: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
4022: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
4023: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
4024: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
4025: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));

Line 4022: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));

4018: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_burden_method_code = '||g_tab_burden_method_code(l_index));
4019: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
4020: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
4021: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
4022: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
4023: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
4024: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
4025: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
4026: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));

Line 4023: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));

4019: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_main_or_backing_code = '||g_tab_main_or_backing_code(l_index));
4020: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
4021: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
4022: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
4023: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
4024: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
4025: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
4026: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
4027: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));

Line 4024: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));

4020: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_source_event_id = '||g_tab_source_event_id(l_index));
4021: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
4022: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
4023: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
4024: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
4025: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
4026: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
4027: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
4028: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));

Line 4025: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));

4021: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_trxn_ccid = '||g_tab_trxn_ccid(l_index));
4022: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
4023: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
4024: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
4025: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
4026: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
4027: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
4028: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
4029: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));

Line 4026: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));

4022: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_p_bc_packet_id = '||g_tab_p_bc_packet_id(l_index));
4023: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
4024: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
4025: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
4026: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
4027: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
4028: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
4029: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
4030: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));

Line 4027: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));

4023: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_fck_reqd_flag = '||g_tab_fck_reqd_flag(l_index));
4024: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
4025: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
4026: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
4027: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
4028: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
4029: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
4030: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
4031: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));

Line 4028: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));

4024: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_gl_date = '||g_tab_gl_date(l_index));
4025: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
4026: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
4027: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
4028: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
4029: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
4030: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
4031: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
4032: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));

Line 4029: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));

4025: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_distribution_type = '||g_tab_distribution_type(l_index));
4026: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
4027: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
4028: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
4029: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
4030: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
4031: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
4032: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
4033: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_orig_sequence_num = '||g_tab_orig_sequence_num(l_index));

Line 4030: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));

4026: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_po_release_id = '||g_tab_po_release_id(l_index));
4027: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
4028: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
4029: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
4030: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
4031: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
4032: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
4033: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_orig_sequence_num = '||g_tab_orig_sequence_num(l_index));
4034: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_applied_to_dist_id_2 = '||g_tab_applied_to_dist_id_2(l_index));

Line 4031: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));

4027: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_enc_type_id = '||g_tab_enc_type_id(l_index));
4028: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
4029: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
4030: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
4031: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
4032: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
4033: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_orig_sequence_num = '||g_tab_orig_sequence_num(l_index));
4034: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_applied_to_dist_id_2 = '||g_tab_applied_to_dist_id_2(l_index));
4035: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));

Line 4032: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));

4028: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_period_name = '||g_tab_period_name(l_index));
4029: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
4030: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
4031: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
4032: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
4033: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_orig_sequence_num = '||g_tab_orig_sequence_num(l_index));
4034: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_applied_to_dist_id_2 = '||g_tab_applied_to_dist_id_2(l_index));
4035: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
4036: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' records after firing PO fetching logic***');

Line 4033: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_orig_sequence_num = '||g_tab_orig_sequence_num(l_index));

4029: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_set_of_books_id = '||g_tab_set_of_books_id(l_index));
4030: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
4031: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
4032: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
4033: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_orig_sequence_num = '||g_tab_orig_sequence_num(l_index));
4034: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_applied_to_dist_id_2 = '||g_tab_applied_to_dist_id_2(l_index));
4035: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
4036: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' records after firing PO fetching logic***');
4037: END LOOP;

Line 4034: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_applied_to_dist_id_2 = '||g_tab_applied_to_dist_id_2(l_index));

4030: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_exp_item_date = '||g_tab_exp_item_date(l_index));
4031: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
4032: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
4033: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_orig_sequence_num = '||g_tab_orig_sequence_num(l_index));
4034: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_applied_to_dist_id_2 = '||g_tab_applied_to_dist_id_2(l_index));
4035: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
4036: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' records after firing PO fetching logic***');
4037: END LOOP;
4038:

Line 4035: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));

4031: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_org_id = '||g_tab_org_id(l_index));
4032: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
4033: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_orig_sequence_num = '||g_tab_orig_sequence_num(l_index));
4034: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_applied_to_dist_id_2 = '||g_tab_applied_to_dist_id_2(l_index));
4035: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
4036: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' records after firing PO fetching logic***');
4037: END LOOP;
4038:
4039: End if;

Line 4036: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' records after firing PO fetching logic***');

4032: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_vendor_id = '||g_tab_vendor_id(l_index));
4033: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_orig_sequence_num = '||g_tab_orig_sequence_num(l_index));
4034: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_applied_to_dist_id_2 = '||g_tab_applied_to_dist_id_2(l_index));
4035: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of g_tab_bc_packet_id = '||g_tab_bc_packet_id(l_index));
4036: pa_funds_control_pkg.log_message(p_msg_token1 => '****End of record-'||l_index||' records after firing PO fetching logic***');
4037: END LOOP;
4038:
4039: End if;
4040:

Line 4049: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

4045: SELECT gl_bc_packets_s.nextval
4046: INTO l_packet_id
4047: FROM dual;
4048:
4049: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4050: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_packet_id = '||l_packet_id);
4051: End if;
4052:
4053: /* Commented for Bug 5726535

Line 4050: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_packet_id = '||l_packet_id);

4046: INTO l_packet_id
4047: FROM dual;
4048:
4049: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4050: pa_funds_control_pkg.log_message(p_msg_token1 => 'l_packet_id = '||l_packet_id);
4051: End if;
4052:
4053: /* Commented for Bug 5726535
4054: -- Updating dangling records created in previous run to 'T' status

Line 4057: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

4053: /* Commented for Bug 5726535
4054: -- Updating dangling records created in previous run to 'T' status
4055: FAIL_DANGLING_PKTS(l_packet_id);
4056:
4057: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4058: pa_funds_control_pkg.log_message(p_msg_token1 => 'Updated I status records created in last run to T status '||SQL%ROWCOUNT);
4059: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling Load_pkts ');
4060: End if;
4061: */

Line 4058: pa_funds_control_pkg.log_message(p_msg_token1 => 'Updated I status records created in last run to T status '||SQL%ROWCOUNT);

4054: -- Updating dangling records created in previous run to 'T' status
4055: FAIL_DANGLING_PKTS(l_packet_id);
4056:
4057: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4058: pa_funds_control_pkg.log_message(p_msg_token1 => 'Updated I status records created in last run to T status '||SQL%ROWCOUNT);
4059: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling Load_pkts ');
4060: End if;
4061: */
4062:

Line 4059: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling Load_pkts ');

4055: FAIL_DANGLING_PKTS(l_packet_id);
4056:
4057: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4058: pa_funds_control_pkg.log_message(p_msg_token1 => 'Updated I status records created in last run to T status '||SQL%ROWCOUNT);
4059: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling Load_pkts ');
4060: End if;
4061: */
4062:
4063: Load_pkts(l_packet_id,p_bc_mode); -- to create bc records in autonomous mode;

Line 4065: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

4061: */
4062:
4063: Load_pkts(l_packet_id,p_bc_mode); -- to create bc records in autonomous mode;
4064:
4065: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4066: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling update_cwk_pkt_lines ');
4067: End if;
4068:
4069: -- To update CWK related columns of pa_bc_packets PO records

Line 4066: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling update_cwk_pkt_lines ');

4062:
4063: Load_pkts(l_packet_id,p_bc_mode); -- to create bc records in autonomous mode;
4064:
4065: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4066: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling update_cwk_pkt_lines ');
4067: End if;
4068:
4069: -- To update CWK related columns of pa_bc_packets PO records
4070: update_cwk_pkt_lines (p_calling_module => 'GL',

Line 4073: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

4069: -- To update CWK related columns of pa_bc_packets PO records
4070: update_cwk_pkt_lines (p_calling_module => 'GL',
4071: p_packet_id => l_packet_id);
4072:
4073: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4074: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling Populate_burden_cost');
4075: End if;
4076:
4077: Populate_burden_cost

Line 4074: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling Populate_burden_cost');

4070: update_cwk_pkt_lines (p_calling_module => 'GL',
4071: p_packet_id => l_packet_id);
4072:
4073: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4074: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling Populate_burden_cost');
4075: End if;
4076:
4077: Populate_burden_cost
4078: (p_packet_id => l_packet_id

Line 4083: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

4079: ,p_calling_module => 'GL'
4080: ,x_return_status => l_return_status
4081: ,x_err_msg_code => l_err_msg_code);
4082:
4083: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4084: pa_funds_control_pkg.log_message(p_msg_token1 => 'After Populate_burden_cost l_return_status ='||l_return_status);
4085: pa_funds_control_pkg.log_message(p_msg_token1 => 'After Populate_burden_cost l_err_msg_code ='||l_err_msg_code);
4086: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling DERIVE_PKT_RLMI_BUDGET_CCID ');
4087: End if;

Line 4084: pa_funds_control_pkg.log_message(p_msg_token1 => 'After Populate_burden_cost l_return_status ='||l_return_status);

4080: ,x_return_status => l_return_status
4081: ,x_err_msg_code => l_err_msg_code);
4082:
4083: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4084: pa_funds_control_pkg.log_message(p_msg_token1 => 'After Populate_burden_cost l_return_status ='||l_return_status);
4085: pa_funds_control_pkg.log_message(p_msg_token1 => 'After Populate_burden_cost l_err_msg_code ='||l_err_msg_code);
4086: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling DERIVE_PKT_RLMI_BUDGET_CCID ');
4087: End if;
4088:

Line 4085: pa_funds_control_pkg.log_message(p_msg_token1 => 'After Populate_burden_cost l_err_msg_code ='||l_err_msg_code);

4081: ,x_err_msg_code => l_err_msg_code);
4082:
4083: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4084: pa_funds_control_pkg.log_message(p_msg_token1 => 'After Populate_burden_cost l_return_status ='||l_return_status);
4085: pa_funds_control_pkg.log_message(p_msg_token1 => 'After Populate_burden_cost l_err_msg_code ='||l_err_msg_code);
4086: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling DERIVE_PKT_RLMI_BUDGET_CCID ');
4087: End if;
4088:
4089: -- Add code to handle exceptions

Line 4086: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling DERIVE_PKT_RLMI_BUDGET_CCID ');

4082:
4083: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4084: pa_funds_control_pkg.log_message(p_msg_token1 => 'After Populate_burden_cost l_return_status ='||l_return_status);
4085: pa_funds_control_pkg.log_message(p_msg_token1 => 'After Populate_burden_cost l_err_msg_code ='||l_err_msg_code);
4086: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling DERIVE_PKT_RLMI_BUDGET_CCID ');
4087: End if;
4088:
4089: -- Add code to handle exceptions
4090:

Line 4109: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

4105: FETCH c_count_success_recs INTO l_count_success_rec;
4106: CLOSE c_count_success_recs;
4107:
4108: IF l_count_success_rec = 0 THEN
4109: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4110: pa_funds_control_pkg.log_message(p_msg_token1 => 'In partial mode returning F status as all records have failed insert validation');
4111: End if;
4112: x_return_code := 'F';
4113: END IF;

Line 4110: pa_funds_control_pkg.log_message(p_msg_token1 => 'In partial mode returning F status as all records have failed insert validation');

4106: CLOSE c_count_success_recs;
4107:
4108: IF l_count_success_rec = 0 THEN
4109: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4110: pa_funds_control_pkg.log_message(p_msg_token1 => 'In partial mode returning F status as all records have failed insert validation');
4111: End if;
4112: x_return_code := 'F';
4113: END IF;
4114:

Line 4122: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

4118:
4119: -------->6599207 ------As part of CC Enhancements -- Imposed the if condition.
4120: IF p_application_id <> 8407 THEN
4121:
4122: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4123: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling pa_xla_interface_pkg.create_events ');
4124: End if;
4125:
4126: pa_xla_interface_pkg.create_events(p_calling_module => 'FUNDS_CHECK',

Line 4123: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling pa_xla_interface_pkg.create_events ');

4119: -------->6599207 ------As part of CC Enhancements -- Imposed the if condition.
4120: IF p_application_id <> 8407 THEN
4121:
4122: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4123: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling pa_xla_interface_pkg.create_events ');
4124: End if;
4125:
4126: pa_xla_interface_pkg.create_events(p_calling_module => 'FUNDS_CHECK',
4127: p_data_set_id => l_packet_id,

Line 4130: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

4126: pa_xla_interface_pkg.create_events(p_calling_module => 'FUNDS_CHECK',
4127: p_data_set_id => l_packet_id,
4128: x_result_code => l_return_status);
4129:
4130: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4131: pa_funds_control_pkg.log_message(p_msg_token1 => 'After pa_xla_interface_pkg.create_events l_return_status ='||l_return_status);
4132: End if;
4133:
4134: --Failing records with null bc_event_id

Line 4131: pa_funds_control_pkg.log_message(p_msg_token1 => 'After pa_xla_interface_pkg.create_events l_return_status ='||l_return_status);

4127: p_data_set_id => l_packet_id,
4128: x_result_code => l_return_status);
4129:
4130: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4131: pa_funds_control_pkg.log_message(p_msg_token1 => 'After pa_xla_interface_pkg.create_events l_return_status ='||l_return_status);
4132: End if;
4133:
4134: --Failing records with null bc_event_id
4135: FAIL_NULL_EVENT_PKTS (l_packet_id,p_bc_mode);

Line 4151: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

4147: FETCH c_count_success_recs INTO l_count_success_rec;
4148: CLOSE c_count_success_recs;
4149:
4150: IF l_count_success_rec = 0 THEN
4151: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4152: pa_funds_control_pkg.log_message(p_msg_token1 => 'In partial mode returning F status as all records have failed insert validation');
4153: End if;
4154: x_return_code := 'F';
4155: END IF;

Line 4152: pa_funds_control_pkg.log_message(p_msg_token1 => 'In partial mode returning F status as all records have failed insert validation');

4148: CLOSE c_count_success_recs;
4149:
4150: IF l_count_success_rec = 0 THEN
4151: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4152: pa_funds_control_pkg.log_message(p_msg_token1 => 'In partial mode returning F status as all records have failed insert validation');
4153: End if;
4154: x_return_code := 'F';
4155: END IF;
4156:

Line 4165: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

4161: END IF; -- IF g_tab_set_of_books_id.count THEN
4162:
4163: END IF; -- IF p_application_id in (200, 201, 8407) THEN
4164:
4165: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4166: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : End ;Value of x_return_code '||x_return_code);
4167: End if;
4168:
4169: RETURN;

Line 4166: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : End ;Value of x_return_code '||x_return_code);

4162:
4163: END IF; -- IF p_application_id in (200, 201, 8407) THEN
4164:
4165: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4166: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : End ;Value of x_return_code '||x_return_code);
4167: End if;
4168:
4169: RETURN;
4170:

Line 4174: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

4170:
4171: EXCEPTION
4172: WHEN OTHERS THEN
4173:
4174: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4175: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : EXCEPTION '||SQLERRM);
4176: End if;
4177:
4178: -- have to put proper result code

Line 4175: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : EXCEPTION '||SQLERRM);

4171: EXCEPTION
4172: WHEN OTHERS THEN
4173:
4174: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4175: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : EXCEPTION '||SQLERRM);
4176: End if;
4177:
4178: -- have to put proper result code
4179: PA_FUNDS_CONTROL_PKG.result_status_code_update

Line 4179: PA_FUNDS_CONTROL_PKG.result_status_code_update

4175: pa_funds_control_pkg.log_message(p_msg_token1 => 'CREATE_PROJ_ENCUMBRANCE_EVENTS : EXCEPTION '||SQLERRM);
4176: End if;
4177:
4178: -- have to put proper result code
4179: PA_FUNDS_CONTROL_PKG.result_status_code_update
4180: ( p_status_code => 'T',
4181: p_result_code => 'F09',
4182: p_res_result_code => 'F09',
4183: p_res_grp_result_code => 'F09',

Line 4223: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

4219: l_return_status VARCHAR2(1);
4220:
4221: BEGIN
4222:
4223: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4224: pa_funds_control_pkg.log_message(p_msg_token1 => 'LOAD_PKTS : Start ');
4225: End if;
4226:
4227: If l_request_id is null then

Line 4224: pa_funds_control_pkg.log_message(p_msg_token1 => 'LOAD_PKTS : Start ');

4220:
4221: BEGIN
4222:
4223: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4224: pa_funds_control_pkg.log_message(p_msg_token1 => 'LOAD_PKTS : Start ');
4225: End if;
4226:
4227: If l_request_id is null then
4228: l_request_id := -1;

Line 4376: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

4372: Where packet_id = p_packet_id
4373: AND SUBSTR(result_code,1,1) = 'F'
4374: ANd status_code in ( 'I' ,'R'); -- Bug 12597774 Added status_code R
4375:
4376: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4377: pa_funds_control_pkg.log_message(p_msg_token1 => 'NUmber of records updated to Failed status ='||SQL%ROWCOUNT);
4378: End if;
4379:
4380: -------->6599207 ------As part of CC Enhancements

Line 4377: pa_funds_control_pkg.log_message(p_msg_token1 => 'NUmber of records updated to Failed status ='||SQL%ROWCOUNT);

4373: AND SUBSTR(result_code,1,1) = 'F'
4374: ANd status_code in ( 'I' ,'R'); -- Bug 12597774 Added status_code R
4375:
4376: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4377: pa_funds_control_pkg.log_message(p_msg_token1 => 'NUmber of records updated to Failed status ='||SQL%ROWCOUNT);
4378: End if;
4379:
4380: -------->6599207 ------As part of CC Enhancements
4381: ---- Updating the ROWID on reference column so as to use

Line 4395: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

4391: /* End of bug fix :3086398 */
4392:
4393: commit;
4394:
4395: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4396: pa_funds_control_pkg.log_message(p_msg_token1 => 'LOAD_PKTS : End ');
4397: End if;
4398:
4399: EXCEPTION

Line 4396: pa_funds_control_pkg.log_message(p_msg_token1 => 'LOAD_PKTS : End ');

4392:
4393: commit;
4394:
4395: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4396: pa_funds_control_pkg.log_message(p_msg_token1 => 'LOAD_PKTS : End ');
4397: End if;
4398:
4399: EXCEPTION
4400: WHEN OTHERS THEN

Line 4401: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

4397: End if;
4398:
4399: EXCEPTION
4400: WHEN OTHERS THEN
4401: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4402: pa_funds_control_pkg.log_message(p_msg_token1 => 'LOAD_PKTS : Exception '||SQLERRM);
4403: End if;
4404:
4405: RAISE;

Line 4402: pa_funds_control_pkg.log_message(p_msg_token1 => 'LOAD_PKTS : Exception '||SQLERRM);

4398:
4399: EXCEPTION
4400: WHEN OTHERS THEN
4401: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4402: pa_funds_control_pkg.log_message(p_msg_token1 => 'LOAD_PKTS : Exception '||SQLERRM);
4403: End if;
4404:
4405: RAISE;
4406:

Line 4494: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

4490: end Rate_PO_Unreserve ;
4491:
4492: BEGIN
4493:
4494: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4495: pa_funds_control_pkg.log_message(p_msg_token1 => 'update_cwk_pkt_lines : Start ');
4496: End if;
4497:
4498: -- R12 Funds management uptake: commented CBC related code

Line 4495: pa_funds_control_pkg.log_message(p_msg_token1 => 'update_cwk_pkt_lines : Start ');

4491:
4492: BEGIN
4493:
4494: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4495: pa_funds_control_pkg.log_message(p_msg_token1 => 'update_cwk_pkt_lines : Start ');
4496: End if;
4497:
4498: -- R12 Funds management uptake: commented CBC related code
4499:

Line 4680: pa_funds_control_pkg.log_message(p_msg_token1 => 'check invoice is interfaced');

4676: */
4677:
4678: -- This object will be obsolete
4679: If p_calling_module = 'GL' and g_doc_type = 'AP' then
4680: pa_funds_control_pkg.log_message(p_msg_token1 => 'check invoice is interfaced');
4681: PA_FUNDS_CONTROL_PKG.is_ap_from_project
4682: (p_packet_id => p_packet_id,
4683: p_calling_module => 'GL',
4684: x_return_status => l_return_status);

Line 4681: PA_FUNDS_CONTROL_PKG.is_ap_from_project

4677:
4678: -- This object will be obsolete
4679: If p_calling_module = 'GL' and g_doc_type = 'AP' then
4680: pa_funds_control_pkg.log_message(p_msg_token1 => 'check invoice is interfaced');
4681: PA_FUNDS_CONTROL_PKG.is_ap_from_project
4682: (p_packet_id => p_packet_id,
4683: p_calling_module => 'GL',
4684: x_return_status => l_return_status);
4685: End if;

Line 4687: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

4683: p_calling_module => 'GL',
4684: x_return_status => l_return_status);
4685: End if;
4686:
4687: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4688: pa_funds_control_pkg.log_message(p_msg_token1 => 'update_cwk_pkt_lines : End ');
4689: End if;
4690:
4691:

Line 4688: pa_funds_control_pkg.log_message(p_msg_token1 => 'update_cwk_pkt_lines : End ');

4684: x_return_status => l_return_status);
4685: End if;
4686:
4687: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4688: pa_funds_control_pkg.log_message(p_msg_token1 => 'update_cwk_pkt_lines : End ');
4689: End if;
4690:
4691:
4692: EXCEPTION

Line 4696: PA_FUNDS_CONTROL_PKG.log_message

4692: EXCEPTION
4693:
4694: when others then
4695:
4696: PA_FUNDS_CONTROL_PKG.log_message
4697: (p_msg_token1 => 'failed in create bc pkt lines SQLERR :'||sqlcode||sqlerrm);
4698: Raise;
4699:
4700: END update_cwk_pkt_lines;

Line 4727: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

4723:
4724:
4725: BEGIN
4726:
4727: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4728: pa_funds_control_pkg.log_message(p_msg_token1 => 'trxn_dister_burden_lines : Start ');
4729: pa_funds_control_pkg.log_message(p_msg_token1 => 'p_calling_module is= '||p_calling_module);
4730: pa_funds_control_pkg.log_message(p_msg_token1 => 'p_mode is= '||p_mode);
4731: End if;

Line 4728: pa_funds_control_pkg.log_message(p_msg_token1 => 'trxn_dister_burden_lines : Start ');

4724:
4725: BEGIN
4726:
4727: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4728: pa_funds_control_pkg.log_message(p_msg_token1 => 'trxn_dister_burden_lines : Start ');
4729: pa_funds_control_pkg.log_message(p_msg_token1 => 'p_calling_module is= '||p_calling_module);
4730: pa_funds_control_pkg.log_message(p_msg_token1 => 'p_mode is= '||p_mode);
4731: End if;
4732:

Line 4729: pa_funds_control_pkg.log_message(p_msg_token1 => 'p_calling_module is= '||p_calling_module);

4725: BEGIN
4726:
4727: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4728: pa_funds_control_pkg.log_message(p_msg_token1 => 'trxn_dister_burden_lines : Start ');
4729: pa_funds_control_pkg.log_message(p_msg_token1 => 'p_calling_module is= '||p_calling_module);
4730: pa_funds_control_pkg.log_message(p_msg_token1 => 'p_mode is= '||p_mode);
4731: End if;
4732:
4733:

Line 4730: pa_funds_control_pkg.log_message(p_msg_token1 => 'p_mode is= '||p_mode);

4726:
4727: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
4728: pa_funds_control_pkg.log_message(p_msg_token1 => 'trxn_dister_burden_lines : Start ');
4729: pa_funds_control_pkg.log_message(p_msg_token1 => 'p_calling_module is= '||p_calling_module);
4730: pa_funds_control_pkg.log_message(p_msg_token1 => 'p_mode is= '||p_mode);
4731: End if;
4732:
4733:
4734: If p_calling_module in ('DISTBTC','TRXNIMPORT','DISTVIADJ','DISTERADJ','TRXIMPORT','DISTCWKST')

Line 4741: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling checkCWKbdExp Api to check burden cost codes');

4737: /* PA.M changes for contingent worker functionality */
4738: /* This check is not required as this is done even before inserting the record into pa_bc_packets
4739: * during distribute process. Having this check is redudant
4740: If p_calling_module = 'DISTCWKST' then
4741: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling checkCWKbdExp Api to check burden cost codes');
4742: -- check for the burden cost codes changed if so error out the transactions
4743: checkCWKbdExp(p_packet_id => p_packet_id
4744: ,p_calling_module => p_calling_module
4745: ,x_return_status => l_return_status

Line 4747: pa_funds_control_pkg.log_message(p_msg_token1 => 'End of checkCWKbdExp Api');

4743: checkCWKbdExp(p_packet_id => p_packet_id
4744: ,p_calling_module => p_calling_module
4745: ,x_return_status => l_return_status
4746: );
4747: pa_funds_control_pkg.log_message(p_msg_token1 => 'End of checkCWKbdExp Api');
4748: End If;
4749: ***/
4750: /* This Query insert records into pa_bc_packets
4751: * for the projects which is of burden on same

Line 4837: pa_funds_control_pkg1.get_period_name(pa_utils2.get_pa_date

4833: pbc.actual_flag,
4834: --decode(pbc.document_type,'AP',(
4835: /** pagl period enhancement changes instead of passing pa date
4836: pass transaction date to derive the period name
4837: pa_funds_control_pkg1.get_period_name(pa_utils2.get_pa_date
4838: (pbc.expenditure_item_date,NULL,pbc.org_id),pbc.set_of_books_id),
4839: -- ),pbc.period_name),
4840: **/
4841: /** Bug fix:2905892 As per discussions with Barbara , Dinakar, Prithi

Line 4845: *pa_funds_control_pkg1.get_period_name

4841: /** Bug fix:2905892 As per discussions with Barbara , Dinakar, Prithi
4842: * for Transaction import process the period name is to derived
4843: * based on the orginal raw line for the burden transactions
4844: * so reverting back to changes made earlier
4845: *pa_funds_control_pkg1.get_period_name
4846: * (pbc.expenditure_item_date,pbc.set_of_books_id),**/
4847: pbc.period_name,
4848: /** End of bug fix: 2905892 ***/
4849: pbc.period_year,

Line 4920: AND pa_funds_control_pkg.check_bdn_on_sep_item

4916: FROM pa_bc_packets pbc
4917: WHERE pbc.packet_id = p_packet_id
4918: AND pbc.parent_bc_packet_id = -1
4919: AND substr(nvl(pbc.result_code,'X'),1,1) <> 'F'
4920: AND pa_funds_control_pkg.check_bdn_on_sep_item
4921: (pbc.project_id ) = 'S'
4922: AND NVL (pa_funds_control_utils.get_fc_compiled_multiplier
4923: ( pbc.expenditure_organization_id,
4924: pbc.task_id,

Line 4930: pa_funds_control_pkg.log_message(p_msg_token1 =>

4926: 'C',
4927: pbc.expenditure_type
4928: ), 0) <> 0;
4929:
4930: pa_funds_control_pkg.log_message(p_msg_token1 =>
4931: 'Num of records inserted ='||sql%rowcount);
4932:
4933: /* This Query insert records into pa_bc_packets
4934: * for the projects which is of burden on different

Line 5019: pa_funds_control_pkg1.get_period_name(pa_utils2.get_pa_date

5015: pbc.document_distribution_id,
5016: pbc.actual_flag,
5017: /** pagl period enhancement changes instead of passing pa date
5018: pass transaction date to derive the period name
5019: pa_funds_control_pkg1.get_period_name(pa_utils2.get_pa_date
5020: (pbc.expenditure_item_date,NULL,pbc.org_id),pbc.set_of_books_id),
5021: **/
5022: /** Bug fix:2905892 As per discussions with Barbara , Dinakar, Prithi
5023: * for Transaction import process the period name is to derived

Line 5026: * pa_funds_control_pkg1.get_period_name

5022: /** Bug fix:2905892 As per discussions with Barbara , Dinakar, Prithi
5023: * for Transaction import process the period name is to derived
5024: * based on the orginal raw line for the burden transactions
5025: * so reverting back to changes made earlier
5026: * pa_funds_control_pkg1.get_period_name
5027: * (pbc.expenditure_item_date,pbc.set_of_books_id), --pbc.period_name, **/
5028: pbc.period_name,
5029: /** End of bug fix: 2905892 **/
5030: pbc.period_year,

Line 5097: AND pa_funds_control_pkg.check_bdn_on_sep_item

5093: AND cm.compiled_multiplier <> 0
5094: AND pbc.packet_id = p_packet_id
5095: AND pbc.parent_bc_packet_id = -1
5096: AND substr(nvl(pbc.result_code,'X'),1,1) <> 'F'
5097: AND pa_funds_control_pkg.check_bdn_on_sep_item
5098: (pbc.project_id ) = 'D';
5099:
5100: pa_funds_control_pkg.log_message(p_msg_token1 =>
5101: 'Num of records inserted ='||sql%rowcount);

Line 5100: pa_funds_control_pkg.log_message(p_msg_token1 =>

5096: AND substr(nvl(pbc.result_code,'X'),1,1) <> 'F'
5097: AND pa_funds_control_pkg.check_bdn_on_sep_item
5098: (pbc.project_id ) = 'D';
5099:
5100: pa_funds_control_pkg.log_message(p_msg_token1 =>
5101: 'Num of records inserted ='||sql%rowcount);
5102:
5103:
5104: End if;

Line 5106: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

5102:
5103:
5104: End if;
5105:
5106: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
5107: pa_funds_control_pkg.log_message(p_msg_token1 => 'trxn_dister_burden_lines : End ');
5108: End if;
5109:
5110: commit;

Line 5107: pa_funds_control_pkg.log_message(p_msg_token1 => 'trxn_dister_burden_lines : End ');

5103:
5104: End if;
5105:
5106: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
5107: pa_funds_control_pkg.log_message(p_msg_token1 => 'trxn_dister_burden_lines : End ');
5108: End if;
5109:
5110: commit;
5111: return;

Line 5149: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

5145:
5146: BEGIN
5147:
5148:
5149: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
5150: pa_funds_control_pkg.log_message(p_msg_token1 => 'update_cwk_po_burden : Start ');
5151: End if;
5152:
5153: IF g_project_id_tab.count > 0 THEN

Line 5150: pa_funds_control_pkg.log_message(p_msg_token1 => 'update_cwk_po_burden : Start ');

5146: BEGIN
5147:
5148:
5149: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
5150: pa_funds_control_pkg.log_message(p_msg_token1 => 'update_cwk_po_burden : Start ');
5151: End if;
5152:
5153: IF g_project_id_tab.count > 0 THEN
5154: for line_indx in 1..g_project_id_tab.count LOOP

Line 5395: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

5391:
5392: end loop ; --g_project_id_tab.count LOOP
5393: END IF ; -- g_project_id_tab.count
5394:
5395: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
5396: pa_funds_control_pkg.log_message(p_msg_token1 => 'update_cwk_po_burden : End ');
5397: End if;
5398:
5399: COMMIT ;

Line 5396: pa_funds_control_pkg.log_message(p_msg_token1 => 'update_cwk_po_burden : End ');

5392: end loop ; --g_project_id_tab.count LOOP
5393: END IF ; -- g_project_id_tab.count
5394:
5395: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
5396: pa_funds_control_pkg.log_message(p_msg_token1 => 'update_cwk_po_burden : End ');
5397: End if;
5398:
5399: COMMIT ;
5400:

Line 5454: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>

5450:
5451: l_ap_parent_dist_id ap_invoice_distributions_all.parent_reversal_id%TYPE;
5452:
5453: BEGIN
5454: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>
5455: ' burden type for ap po = '||p_burden_type||' - related link -'||p_related_link);
5456:
5457: -- bug : 3717214
5458: -- Determine if we need to use existing idc multipliers for PO or REQs

Line 5469: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_doc_type :'||p_doc_type);

5465: l_prev_multiplier := 'N' ;
5466: l_tab_multiplier.DELETE ;
5467: l_tab_icc_exp_type.DELETE ;
5468:
5469: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_doc_type :'||p_doc_type);
5470: pa_funds_control_pkg.log_message(p_msg_token1 =>'Use Existing Multiplier init :'||l_prev_multiplier);
5471: IF p_doc_type in ( 'PO', 'REQ' , 'AP' ) THEN
5472:
5473: select document_header_id ,

Line 5470: pa_funds_control_pkg.log_message(p_msg_token1 =>'Use Existing Multiplier init :'||l_prev_multiplier);

5466: l_tab_multiplier.DELETE ;
5467: l_tab_icc_exp_type.DELETE ;
5468:
5469: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_doc_type :'||p_doc_type);
5470: pa_funds_control_pkg.log_message(p_msg_token1 =>'Use Existing Multiplier init :'||l_prev_multiplier);
5471: IF p_doc_type in ( 'PO', 'REQ' , 'AP' ) THEN
5472:
5473: select document_header_id ,
5474: document_distribution_id ,

Line 5485: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

5481: and bc_packet_id = p_bc_packet_id ;
5482:
5483: IF p_doc_type = 'AP' THEN
5484:
5485: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
5486: pa_funds_control_pkg.log_message(p_msg_token1 =>'Checking if AP distribution is reversal/cancelled distribution') ;
5487: END IF ;
5488:
5489: /* Bug 5406690 : Changed the logic for checking if AP distribution is reversal/cancelled distribution.

Line 5486: pa_funds_control_pkg.log_message(p_msg_token1 =>'Checking if AP distribution is reversal/cancelled distribution') ;

5482:
5483: IF p_doc_type = 'AP' THEN
5484:
5485: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
5486: pa_funds_control_pkg.log_message(p_msg_token1 =>'Checking if AP distribution is reversal/cancelled distribution') ;
5487: END IF ;
5488:
5489: /* Bug 5406690 : Changed the logic for checking if AP distribution is reversal/cancelled distribution.
5490: The old logic i.e cursor C_ap_parent_reversal_dist was not able to read uncommitted

Line 5497: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

5493: for i in 1 .. g_tab_bc_packet_id.count loop
5494: if ((g_tab_bc_packet_id(i)=p_bc_packet_id) and (g_tab_parent_reversal_id(i) IS NOT NULL)) then
5495: l_doc_distribution_id := g_tab_parent_reversal_id(i);
5496: l_prev_multiplier := 'Y' ;
5497: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
5498: pa_funds_control_pkg.log_message(p_msg_token1 =>'Parent AP distribution id '||l_doc_distribution_id) ;
5499: END IF ;
5500: end if;
5501: end loop;

Line 5498: pa_funds_control_pkg.log_message(p_msg_token1 =>'Parent AP distribution id '||l_doc_distribution_id) ;

5494: if ((g_tab_bc_packet_id(i)=p_bc_packet_id) and (g_tab_parent_reversal_id(i) IS NOT NULL)) then
5495: l_doc_distribution_id := g_tab_parent_reversal_id(i);
5496: l_prev_multiplier := 'Y' ;
5497: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
5498: pa_funds_control_pkg.log_message(p_msg_token1 =>'Parent AP distribution id '||l_doc_distribution_id) ;
5499: END IF ;
5500: end if;
5501: end loop;
5502:

Line 5510: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

5506: FETCH C_ap_parent_reversal_dist INTO l_ap_parent_dist_id;
5507: IF C_ap_parent_reversal_dist%FOUND THEN
5508: l_doc_distribution_id := l_ap_parent_dist_id;
5509: l_prev_multiplier := 'Y' ;
5510: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
5511: pa_funds_control_pkg.log_message(p_msg_token1 =>'Parent AP distribution id '||l_doc_distribution_id) ;
5512: END IF ;
5513: END IF;
5514: CLOSE C_ap_parent_reversal_dist; */

Line 5511: pa_funds_control_pkg.log_message(p_msg_token1 =>'Parent AP distribution id '||l_doc_distribution_id) ;

5507: IF C_ap_parent_reversal_dist%FOUND THEN
5508: l_doc_distribution_id := l_ap_parent_dist_id;
5509: l_prev_multiplier := 'Y' ;
5510: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
5511: pa_funds_control_pkg.log_message(p_msg_token1 =>'Parent AP distribution id '||l_doc_distribution_id) ;
5512: END IF ;
5513: END IF;
5514: CLOSE C_ap_parent_reversal_dist; */
5515:

Line 5523: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_doc_type :'||p_doc_type);

5519:
5520: -- Bug 5511059 : For AP, below logic should get fired only if its reversal/cancel scenario (i.e l_prev_multiplier
5521: -- is set to 'Y' by above if condition) Note : For credit and debit memos l_amount will be negative
5522:
5523: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_doc_type :'||p_doc_type);
5524: pa_funds_control_pkg.log_message(p_msg_token1 =>'l_amount :'||l_amount);
5525: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_related_link :'||p_related_link);
5526: pa_funds_control_pkg.log_message(p_msg_token1 =>'l_prev_multiplier :'||l_prev_multiplier);
5527:

Line 5524: pa_funds_control_pkg.log_message(p_msg_token1 =>'l_amount :'||l_amount);

5520: -- Bug 5511059 : For AP, below logic should get fired only if its reversal/cancel scenario (i.e l_prev_multiplier
5521: -- is set to 'Y' by above if condition) Note : For credit and debit memos l_amount will be negative
5522:
5523: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_doc_type :'||p_doc_type);
5524: pa_funds_control_pkg.log_message(p_msg_token1 =>'l_amount :'||l_amount);
5525: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_related_link :'||p_related_link);
5526: pa_funds_control_pkg.log_message(p_msg_token1 =>'l_prev_multiplier :'||l_prev_multiplier);
5527:
5528: IF ( (p_doc_type in ( 'PO', 'REQ' ) AND (l_amount < 0 and p_related_link = 'N')) OR

Line 5525: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_related_link :'||p_related_link);

5521: -- is set to 'Y' by above if condition) Note : For credit and debit memos l_amount will be negative
5522:
5523: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_doc_type :'||p_doc_type);
5524: pa_funds_control_pkg.log_message(p_msg_token1 =>'l_amount :'||l_amount);
5525: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_related_link :'||p_related_link);
5526: pa_funds_control_pkg.log_message(p_msg_token1 =>'l_prev_multiplier :'||l_prev_multiplier);
5527:
5528: IF ( (p_doc_type in ( 'PO', 'REQ' ) AND (l_amount < 0 and p_related_link = 'N')) OR
5529: (p_doc_type = 'AP' AND (l_prev_multiplier = 'Y' and p_related_link = 'N'))) then

Line 5526: pa_funds_control_pkg.log_message(p_msg_token1 =>'l_prev_multiplier :'||l_prev_multiplier);

5522:
5523: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_doc_type :'||p_doc_type);
5524: pa_funds_control_pkg.log_message(p_msg_token1 =>'l_amount :'||l_amount);
5525: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_related_link :'||p_related_link);
5526: pa_funds_control_pkg.log_message(p_msg_token1 =>'l_prev_multiplier :'||l_prev_multiplier);
5527:
5528: IF ( (p_doc_type in ( 'PO', 'REQ' ) AND (l_amount < 0 and p_related_link = 'N')) OR
5529: (p_doc_type = 'AP' AND (l_prev_multiplier = 'Y' and p_related_link = 'N'))) then
5530:

Line 5532: pa_funds_control_pkg.log_message(p_msg_token1 =>'Use Existing Multiplier Credit found :'||l_prev_multiplier);

5528: IF ( (p_doc_type in ( 'PO', 'REQ' ) AND (l_amount < 0 and p_related_link = 'N')) OR
5529: (p_doc_type = 'AP' AND (l_prev_multiplier = 'Y' and p_related_link = 'N'))) then
5530:
5531: l_prev_multiplier := 'Y' ;
5532: pa_funds_control_pkg.log_message(p_msg_token1 =>'Use Existing Multiplier Credit found :'||l_prev_multiplier);
5533:
5534: select NVL(max(pbc.packet_id) ,0)
5535: into l_max_packet_id
5536: from pa_bc_commitments pbc

Line 5542: pa_funds_control_pkg.log_message(p_msg_token1 =>'OLD Multiplier: pa_bc_commitments packet id '||l_max_packet_id);

5538: and pbc.document_distribution_id = l_doc_distribution_id
5539: and pbc.document_type = p_doc_type
5540: and pbc.packet_id <> p_packet_id ;
5541:
5542: pa_funds_control_pkg.log_message(p_msg_token1 =>'OLD Multiplier: pa_bc_commitments packet id '||l_max_packet_id);
5543:
5544: select max(packet_id)
5545: into l_max_packet_id_b
5546: from pa_bc_packets gbc1

Line 5554: pa_funds_control_pkg.log_message(p_msg_token1 =>'OLD Multiplier: pa_bc_packets packet id '||l_max_packet_id_b);

5550: and document_header_id = l_doc_header_id
5551: and document_distribution_id = l_doc_distribution_id
5552: and status_code in ( 'A','C') ;
5553:
5554: pa_funds_control_pkg.log_message(p_msg_token1 =>'OLD Multiplier: pa_bc_packets packet id '||l_max_packet_id_b);
5555: -- bug : 3717214
5556: -- Spool the existing multipliers.
5557: BEGIN
5558: IF NVL(l_max_packet_id,0) >= nvl(l_max_packet_id_b,0) THEN

Line 5582: pa_funds_control_pkg.log_message(p_msg_token1 =>'OLD Multiplier: pa_bc_commitments multiplier used');

5578: AND bc1.document_type = p_doc_type
5579: AND bc1.parent_bc_packet_id IS NULL
5580: AND ROWNUM = 1 );
5581:
5582: pa_funds_control_pkg.log_message(p_msg_token1 =>'OLD Multiplier: pa_bc_commitments multiplier used');
5583: ELSE
5584:
5585: select compiled_multiplier ,
5586: expenditure_type

Line 5608: pa_funds_control_pkg.log_message(p_msg_token1 =>'OLD Multiplier: pa_bc_packets multiplier used');

5604: AND bc1.document_type = p_doc_type
5605: AND bc1.parent_bc_packet_id IS NULL
5606: AND ROWNUM = 1 );
5607:
5608: pa_funds_control_pkg.log_message(p_msg_token1 =>'OLD Multiplier: pa_bc_packets multiplier used');
5609:
5610: END IF ;
5611: EXCEPTION
5612: when no_data_found then

Line 5623: pa_funds_control_pkg.log_message(p_msg_token1 =>'OLD Multiplier: Prior to PAM Data');

5619: --
5620: IF l_tab_multiplier.count > 0 THEN
5621: IF l_tab_multiplier(1) is NULL THEN
5622: l_prev_multiplier := 'N' ;
5623: pa_funds_control_pkg.log_message(p_msg_token1 =>'OLD Multiplier: Prior to PAM Data');
5624: pa_funds_control_pkg.log_message(p_msg_token1 =>'OLD Multiplier: Calculate Multiplier');
5625: END IF ; -- l_tab_multiplier(1) is null
5626: END IF ; -- l_tab_multiplier.count
5627: END IF; -- IF ( (p_doc_type in ( 'PO', 'REQ' ) AND (l_amount < 0 and p_related_link = 'N')) OR ..

Line 5624: pa_funds_control_pkg.log_message(p_msg_token1 =>'OLD Multiplier: Calculate Multiplier');

5620: IF l_tab_multiplier.count > 0 THEN
5621: IF l_tab_multiplier(1) is NULL THEN
5622: l_prev_multiplier := 'N' ;
5623: pa_funds_control_pkg.log_message(p_msg_token1 =>'OLD Multiplier: Prior to PAM Data');
5624: pa_funds_control_pkg.log_message(p_msg_token1 =>'OLD Multiplier: Calculate Multiplier');
5625: END IF ; -- l_tab_multiplier(1) is null
5626: END IF ; -- l_tab_multiplier.count
5627: END IF; -- IF ( (p_doc_type in ( 'PO', 'REQ' ) AND (l_amount < 0 and p_related_link = 'N')) OR ..
5628:

Line 5635: pa_funds_control_pkg.log_message(p_msg_token1 =>'OLD Multiplier: Calculate Multiplier for p_burden_type '||p_burden_type);

5631: -- bug : 3717214
5632: -- Calculate the new multipliers...
5633: --
5634: IF l_prev_multiplier = 'N' THEN
5635: pa_funds_control_pkg.log_message(p_msg_token1 =>'OLD Multiplier: Calculate Multiplier for p_burden_type '||p_burden_type);
5636: IF p_burden_type = 'SAME' THEN
5637:
5638: SELECT NVL (pa_funds_control_utils.get_fc_compiled_multiplier
5639: ( pbc.expenditure_organization_id,

Line 5704: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_burden_type :'||p_burden_type);

5700: END IF ; -- p_burden_type = 'SAME'
5701:
5702: END IF ; -- l_prev_multiplier = 'N'
5703:
5704: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_burden_type :'||p_burden_type);
5705: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_related_link :'||p_related_link);
5706:
5707: IF p_burden_type = 'SAME' THEN
5708: If p_related_link = 'N' then

Line 5705: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_related_link :'||p_related_link);

5701:
5702: END IF ; -- l_prev_multiplier = 'N'
5703:
5704: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_burden_type :'||p_burden_type);
5705: pa_funds_control_pkg.log_message(p_msg_token1 =>'p_related_link :'||p_related_link);
5706:
5707: IF p_burden_type = 'SAME' THEN
5708: If p_related_link = 'N' then
5709: IF l_tab_multiplier.count > 0 THEN

Line 5803: pa_funds_control_pkg1.get_period_name(pa_utils2.get_pa_date

5799: pbc.actual_flag,
5800: /** pagl period enhancement changes instead of passing pa date
5801: pass transaction date to derive the period name
5802: --decode(pbc.document_type,'AP',(
5803: pa_funds_control_pkg1.get_period_name(pa_utils2.get_pa_date
5804: (pbc.expenditure_item_date,NULL,pbc.org_id),pbc.set_of_books_id),
5805: -- ),pbc.period_name),
5806: **/
5807: /** Bug fix:2905892 As per discussions with Barbara , Dinakar, Prithi

Line 5811: *pa_funds_control_pkg1.get_period_name

5807: /** Bug fix:2905892 As per discussions with Barbara , Dinakar, Prithi
5808: * the period name should be derived
5809: * based on the orginal raw line for the burden transactions
5810: * so reverting back to changes made earlier
5811: *pa_funds_control_pkg1.get_period_name
5812: * (pbc.expenditure_item_date,pbc.set_of_books_id),**/
5813: pbc.period_name,
5814: /** End of bug fix: 2905892 ***/
5815: pbc.period_year,

Line 5868: PA_FUNDS_CONTROL_PKG.log_message

5864: AND pbc.document_type = p_doc_type
5865: AND substr(nvl(pbc.result_code,'X'),1,1) <> 'F' ;
5866: --If sql%Notfound then
5867: IF SQL%BULK_ROWCOUNT(1) = 0 THEN
5868: PA_FUNDS_CONTROL_PKG.log_message
5869: (p_msg_token1 => 'Transaction failed to populate burden cost',
5870: p_msg_token2 => 'bc_packet_id = '||to_char(p_bc_packet_id));
5871:
5872: -- Error msg : 'F114 = Transaction Failed to populate burden cost'

Line 5873: PA_FUNDS_CONTROL_PKG.result_status_code_update

5869: (p_msg_token1 => 'Transaction failed to populate burden cost',
5870: p_msg_token2 => 'bc_packet_id = '||to_char(p_bc_packet_id));
5871:
5872: -- Error msg : 'F114 = Transaction Failed to populate burden cost'
5873: PA_FUNDS_CONTROL_PKG.result_status_code_update
5874: (p_packet_id => p_packet_id,
5875: p_bc_packet_id => p_bc_packet_id,
5876: p_result_code => 'F114',
5877: p_res_result_code => 'F114',

Line 5886: PA_FUNDS_CONTROL_PKG.log_message

5882: p_proj_acct_result_code => 'F114');
5883: End if;
5884: IF SQL%BULK_ROWCOUNT(1) > 0 THEN
5885: --IF sql%found then
5886: PA_FUNDS_CONTROL_PKG.log_message
5887: (p_msg_token1 =>'No of bdn lines created ='||sql%bulk_rowcount(1) );
5888: End if;
5889:
5890: END IF ; -- l_tab_multiplier.count endif

Line 5982: pa_funds_control_pkg1.get_period_name(pa_utils2.get_pa_date

5978: pbc.document_distribution_id,
5979: pbc.actual_flag,
5980: /** pagl period enhancement changes instead of passing pa date
5981: pass transaction date to derive the period name
5982: pa_funds_control_pkg1.get_period_name(pa_utils2.get_pa_date
5983: (pbc.expenditure_item_date,NULL,pbc.org_id),pbc.set_of_books_id),
5984: --P_period_name,
5985: **/
5986: /** Bug fix:2905892 As per discussions with Barbara , Dinakar, Prithi

Line 5990: *pa_funds_control_pkg1.get_period_name

5986: /** Bug fix:2905892 As per discussions with Barbara , Dinakar, Prithi
5987: * the period name should be derived
5988: * based on the orginal raw line for the burden transactions
5989: * so reverting back to changes made earlier
5990: *pa_funds_control_pkg1.get_period_name
5991: * (pbc.expenditure_item_date,pbc.set_of_books_id),**/
5992: pbc.period_name,
5993: /** End of bug fix: 2905892 ***/
5994: pbc.period_year,

Line 6049: PA_FUNDS_CONTROL_PKG.log_message

6045: AND pbc.bc_packet_id = p_bc_packet_id
6046: AND pbc.document_type = p_doc_type
6047: AND substr(nvl(pbc.result_code,'X'),1,1) <> 'F';
6048: If sql%Notfound then
6049: PA_FUNDS_CONTROL_PKG.log_message
6050: (p_msg_token1 => 'Transaction failed to populate burden cost',
6051: p_msg_token2 => 'bc_packet_id = '||to_char(p_bc_packet_id));
6052:
6053: -- Error msg : 'F114 = Transaction Failed to populate burden cost'

Line 6054: PA_FUNDS_CONTROL_PKG.result_status_code_update

6050: (p_msg_token1 => 'Transaction failed to populate burden cost',
6051: p_msg_token2 => 'bc_packet_id = '||to_char(p_bc_packet_id));
6052:
6053: -- Error msg : 'F114 = Transaction Failed to populate burden cost'
6054: PA_FUNDS_CONTROL_PKG.result_status_code_update
6055: (p_packet_id => p_packet_id,
6056: p_bc_packet_id => p_bc_packet_id,
6057: p_result_code => 'F114',
6058: p_res_result_code => 'F114',

Line 6066: PA_FUNDS_CONTROL_PKG.log_message

6062: p_project_result_code => 'F114',
6063: p_proj_acct_result_code => 'F114');
6064: End if;
6065: IF sql%found then
6066: PA_FUNDS_CONTROL_PKG.log_message
6067: (p_msg_token1 =>'No of bdn lines created ='||sql%rowcount);
6068: End if;
6069:
6070:

Line 6170: pa_funds_control_pkg1.get_period_name(pa_utils2.get_pa_date

6166: pbc.document_distribution_id,
6167: pbc.actual_flag,
6168: /** added the pagl enhancement changes pass ei date instead of pa date
6169: * to get glperiod name
6170: pa_funds_control_pkg1.get_period_name(pa_utils2.get_pa_date
6171: (pbc.expenditure_item_date,NULL,pbc.org_id),pbc.set_of_books_id),
6172: --pbc.period_name,
6173: */
6174: /** Bug fix:2905892 As per discussions with Barbara , Dinakar, Prithi

Line 6178: *pa_funds_control_pkg1.get_period_name

6174: /** Bug fix:2905892 As per discussions with Barbara , Dinakar, Prithi
6175: * the period name should be derived
6176: * based on the orginal raw line for the burden transactions
6177: * so reverting back to changes made earlier
6178: *pa_funds_control_pkg1.get_period_name
6179: * (pbc.expenditure_item_date,pbc.set_of_books_id),**/
6180: pbc.period_name,
6181: /** End of bug fix: 2905892 ***/
6182: pbc.period_year,

Line 6232: PA_FUNDS_CONTROL_PKG.log_message

6228: AND substr(nvl(pbc.result_code,'X'),1,1) <> 'F';
6229:
6230: FOR indx in 1..l_tab_multiplier.count LOOP
6231: IF SQL%BULK_ROWCOUNT(indx) = 0 THEN
6232: PA_FUNDS_CONTROL_PKG.log_message
6233: (p_msg_token1 => 'Transaction failed to populate burden cost',
6234: p_msg_token2 => 'bc_packet_id = '||to_char(p_bc_packet_id));
6235:
6236: -- Error msg : 'F114 = Transaction Failed to populate burden cost'

Line 6237: PA_FUNDS_CONTROL_PKG.result_status_code_update

6233: (p_msg_token1 => 'Transaction failed to populate burden cost',
6234: p_msg_token2 => 'bc_packet_id = '||to_char(p_bc_packet_id));
6235:
6236: -- Error msg : 'F114 = Transaction Failed to populate burden cost'
6237: PA_FUNDS_CONTROL_PKG.result_status_code_update
6238: (p_packet_id => p_packet_id,
6239: p_bc_packet_id => p_bc_packet_id,
6240: p_result_code => 'F114',
6241: p_res_result_code => 'F114',

Line 6252: PA_FUNDS_CONTROL_PKG.log_message

6248: l_count := l_count + SQL%BULK_ROWCOUNT(indx) ;
6249: END LOOP ;
6250:
6251: IF l_count > 0 then
6252: PA_FUNDS_CONTROL_PKG.log_message
6253: (p_msg_token1 =>'No of bdn lines created ='||l_count);
6254: End if;
6255:
6256:

Line 6357: pa_funds_control_pkg1.get_period_name(pa_utils2.get_pa_date

6353: pbc.document_distribution_id,
6354: pbc.actual_flag,
6355: /** pagl period enhancement changes instead of passing pa date
6356: pass transaction date to derive the period name
6357: pa_funds_control_pkg1.get_period_name(pa_utils2.get_pa_date
6358: (pbc.expenditure_item_date,NULL,pbc.org_id),pbc.set_of_books_id),
6359: **/
6360: /** Bug fix:2905892 As per discussions with Barbara , Dinakar, Prithi
6361: * the period name should be derived

Line 6364: *pa_funds_control_pkg1.get_period_name

6360: /** Bug fix:2905892 As per discussions with Barbara , Dinakar, Prithi
6361: * the period name should be derived
6362: * based on the orginal raw line for the burden transactions
6363: * so reverting back to changes made earlier
6364: *pa_funds_control_pkg1.get_period_name
6365: * (pbc.expenditure_item_date,pbc.set_of_books_id),**/
6366: pbc.period_name,
6367: /** End of bug fix: 2905892 ***/
6368: pbc.period_year,

Line 6422: PA_FUNDS_CONTROL_PKG.log_message

6418: AND pbc.bc_packet_id = p_bc_packet_id
6419: AND pbc.document_type = p_doc_type
6420: AND substr(nvl(pbc.result_code,'X'),1,1) <> 'F';
6421: If sql%Notfound then
6422: PA_FUNDS_CONTROL_PKG.log_message
6423: (p_msg_token1 => 'Transaction failed to populate burden cost',
6424: p_msg_token2 => 'bc_packet_id = '||to_char(p_bc_packet_id));
6425:
6426: -- Error msg : 'F114 = Transaction Failed to populate burden cost'

Line 6427: PA_FUNDS_CONTROL_PKG.result_status_code_update

6423: (p_msg_token1 => 'Transaction failed to populate burden cost',
6424: p_msg_token2 => 'bc_packet_id = '||to_char(p_bc_packet_id));
6425:
6426: -- Error msg : 'F114 = Transaction Failed to populate burden cost'
6427: PA_FUNDS_CONTROL_PKG.result_status_code_update
6428: (p_packet_id => p_packet_id,
6429: p_bc_packet_id => p_bc_packet_id,
6430: p_result_code => 'F114',
6431: p_res_result_code => 'F114',

Line 6439: PA_FUNDS_CONTROL_PKG.log_message

6435: p_project_result_code => 'F114',
6436: p_proj_acct_result_code => 'F114');
6437: End if;
6438: IF sql%found then
6439: PA_FUNDS_CONTROL_PKG.log_message
6440: (p_msg_token1 =>'No of bdn lines created ='||sql%rowcount);
6441: End if;
6442:
6443:

Line 6451: PA_FUNDS_CONTROL_PKG.log_message

6447: commit; -- to end an active autonmous transaction
6448: Return True;
6449: EXCEPTION
6450: WHEN OTHERS THEN
6451: PA_FUNDS_CONTROL_PKG.log_message
6452: (p_msg_token1 => 'failed in create ap po bdn lines api SQLERR :'||sqlcode||sqlerrm);
6453: commit;
6454: RAISE;
6455:

Line 6688: PA_DEBUG.init_err_stack('PA_FUNDS_CONTROL_PKG1.populate_burden_cost');

6684: AND pbc.status_code IN ('P', 'I');
6685:
6686: BEGIN
6687: -- Initialize the error stack
6688: PA_DEBUG.init_err_stack('PA_FUNDS_CONTROL_PKG1.populate_burden_cost');
6689:
6690: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
6691: l_debug_mode := NVL(l_debug_mode, 'N');
6692:

Line 6701: pa_funds_control_pkg.log_message(p_msg_token1 => 'Before Calling pa_multi_currency.init');

6697:
6698: --Initialize the return status to success
6699: x_return_status := 'S';
6700:
6701: pa_funds_control_pkg.log_message(p_msg_token1 => 'Before Calling pa_multi_currency.init');
6702: -- initialize the accounting currency code,
6703: pa_multi_currency.init;
6704:
6705: pa_funds_control_pkg.log_message(p_msg_token1 => 'Before Calling pa_multi_currency.g_accounting_currency_code');

Line 6705: pa_funds_control_pkg.log_message(p_msg_token1 => 'Before Calling pa_multi_currency.g_accounting_currency_code');

6701: pa_funds_control_pkg.log_message(p_msg_token1 => 'Before Calling pa_multi_currency.init');
6702: -- initialize the accounting currency code,
6703: pa_multi_currency.init;
6704:
6705: pa_funds_control_pkg.log_message(p_msg_token1 => 'Before Calling pa_multi_currency.g_accounting_currency_code');
6706: --Get the accounting currency into a global variable.
6707: g_acct_currency_code := pa_multi_currency.g_accounting_currency_code;
6708:
6709: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside Populate burden api');

Line 6709: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside Populate burden api');

6705: pa_funds_control_pkg.log_message(p_msg_token1 => 'Before Calling pa_multi_currency.g_accounting_currency_code');
6706: --Get the accounting currency into a global variable.
6707: g_acct_currency_code := pa_multi_currency.g_accounting_currency_code;
6708:
6709: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside Populate burden api');
6710:
6711: -- Initialize global variables
6712: init_globals;
6713:

Line 6714: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of p_calling_module= '||p_calling_module);

6710:
6711: -- Initialize global variables
6712: init_globals;
6713:
6714: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of p_calling_module= '||p_calling_module);
6715:
6716: IF p_calling_module IN ('GL','CBC','EXPENDITURE') then
6717:
6718: OPEN burden_type;

Line 6719: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'opened cursor');

6715:
6716: IF p_calling_module IN ('GL','CBC','EXPENDITURE') then
6717:
6718: OPEN burden_type;
6719: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'opened cursor');
6720: LOOP
6721: FETCH burden_type INTO
6722: l_burden_method
6723: ,l_bc_packet_id

Line 6760: pa_funds_control_pkg.log_message(p_msg_token2 =>

6756: -- expenditure type is part of the burdening
6757: -- but there is error for this expenditure type
6758: -- either the schedule id is not found or
6759: -- schedule revision id is null so assign the error
6760: pa_funds_control_pkg.log_message(p_msg_token2 =>
6761: 'Burden error '||l_err_msg_code);
6762: l_status_flag := 'Y';
6763: l_related_link := 'Y';
6764: GOTO END_OF_BURDEN;

Line 6766: pa_funds_control_pkg.log_message(p_msg_token2 =>

6762: l_status_flag := 'Y';
6763: l_related_link := 'Y';
6764: GOTO END_OF_BURDEN;
6765: Elsif l_base is NOT NULL then
6766: pa_funds_control_pkg.log_message(p_msg_token2 =>
6767: 'cost Base type ='||l_base);
6768: l_status_flag := 'N';
6769: l_related_link := 'N';
6770: null;

Line 6774: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 => 'burden type ['||l_burden_method||

6770: null;
6771: END IF;
6772: END IF;
6773:
6774: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 => 'burden type ['||l_burden_method||
6775: ']bc_packet id ['||l_bc_packet_id||']' );
6776:
6777: IF l_burden_method = 'SAME' and l_bc_packet_id is NOT NULL then
6778:

Line 6802: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 => '

6798: FETCH pkt_po_amount into l_period_name
6799: ,l_entered_dr,l_entered_cr
6800: ,l_accounted_dr,l_accounted_cr,l_exp_type,l_compiled_multiplier;
6801: If pkt_po_amount%found then
6802: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 => '
6803: cc amount got from bc packets');
6804: End if;
6805: If pkt_po_amount%NOTFOUND then
6806: l_status_flag := 'Y';

Line 6812: PA_FUNDS_CONTROL_PKG.log_message

6808: End if;
6809: CLOSE pkt_po_amount;
6810: End if;
6811: If po_amount%found then
6812: PA_FUNDS_CONTROL_PKG.log_message
6813: (p_msg_token1 => 'cc amount got from commitments');
6814: End if;
6815: CLOSE po_amount;
6816:

Line 6818: PA_FUNDS_CONTROL_PKG.log_message

6814: End if;
6815: CLOSE po_amount;
6816:
6817: Else
6818: PA_FUNDS_CONTROL_PKG.log_message
6819: (p_msg_token1 => 'Not related link N');
6820: l_related_link := 'N';
6821: End if;
6822: If Not create_ap_po_bdn_lines

Line 6859: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 => '

6855: FETCH pkt_po_amount into l_period_name
6856: ,l_entered_dr,l_entered_cr
6857: ,l_accounted_dr,l_accounted_cr,l_exp_type,l_compiled_multiplier;
6858: If pkt_po_amount%found then
6859: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 => '
6860: burden amount got from bc packets');
6861: End if;
6862: If pkt_po_amount%NOTFOUND then
6863: l_status_flag := 'Y';

Line 6869: PA_FUNDS_CONTROL_PKG.log_message

6865: End if;
6866: CLOSE pkt_po_amount;
6867: End if;
6868: If po_amount%found then
6869: PA_FUNDS_CONTROL_PKG.log_message
6870: (p_msg_token1 => ' amount got from commitments');
6871: End if;
6872: CLOSE po_amount;
6873:

Line 6875: PA_FUNDS_CONTROL_PKG.log_message

6871: End if;
6872: CLOSE po_amount;
6873:
6874: Else
6875: PA_FUNDS_CONTROL_PKG.log_message
6876: (p_msg_token1 => 'Not related link N');
6877: l_related_link := 'N';
6878: End if;
6879: If Not create_ap_po_bdn_lines

Line 6915: PA_FUNDS_CONTROL_PKG.log_message

6911: ,l_doc_type);
6912: FETCH po_amount into l_period_name,l_entered_dr,l_entered_cr,
6913: l_accounted_dr,l_accounted_cr,l_exp_type,l_compiled_multiplier;
6914: If po_amount%found then
6915: PA_FUNDS_CONTROL_PKG.log_message
6916: (p_msg_token1 => 'amounts got from commitments ');
6917: End if;
6918: If po_amount%NOTFOUND then
6919: OPEN pkt_po_amount(l_doc_distribution_id

Line 6926: PA_FUNDS_CONTROL_PKG.log_message

6922: ,l_doc_type);
6923: FETCH pkt_po_amount into l_period_name,l_entered_dr,l_entered_cr,
6924: l_accounted_dr,l_accounted_cr,l_exp_type,l_compiled_multiplier;
6925: If pkt_po_amount%found then
6926: PA_FUNDS_CONTROL_PKG.log_message
6927: (p_msg_token1 => 'amounts got from bc packets ');
6928: End if;
6929: If pkt_po_amount%NOTFOUND then
6930: l_status_flag := 'Y';

Line 6937: PA_FUNDS_CONTROL_PKG.log_message

6933: CLOSE pkt_po_amount;
6934: End IF;
6935: CLOSE po_amount;
6936: Else
6937: PA_FUNDS_CONTROL_PKG.log_message
6938: (p_msg_token1 => 'Not related link N');
6939: l_related_link := 'N';
6940: End if;
6941: If Not create_ap_po_bdn_lines

Line 7029: PA_FUNDS_CONTROL_PKG.log_message

7025: FETCH po_amount into l_period_name
7026: ,l_entered_dr,l_entered_cr
7027: ,l_accounted_dr,l_accounted_cr,l_exp_type,l_compiled_multiplier;
7028: EXIT when po_amount%NOTFOUND;
7029: PA_FUNDS_CONTROL_PKG.log_message
7030: (p_msg_token1 => 'amount found from commitment');
7031: If Not create_ap_po_bdn_lines
7032: (p_packet_id => p_packet_id
7033: ,p_bc_packet_id => l_bc_packet_id

Line 7082: PA_FUNDS_CONTROL_PKG.log_message

7078: END LOOP;
7079: CLOSE pkt_po_amount;
7080: End if;
7081: Else
7082: PA_FUNDS_CONTROL_PKG.log_message
7083: (p_msg_token1 => 'not related link = N ');
7084: l_related_link := 'N';
7085:
7086: End if;

Line 7155: PA_FUNDS_CONTROL_PKG.log_message

7151: FETCH po_amount into l_period_name
7152: ,l_entered_dr,l_entered_cr
7153: ,l_accounted_dr,l_accounted_cr,l_exp_type,l_compiled_multiplier;
7154: EXIT when po_amount%NOTFOUND;
7155: PA_FUNDS_CONTROL_PKG.log_message
7156: (p_msg_token1 => 'amount found from commitment');
7157: If Not create_ap_po_bdn_lines
7158: (p_packet_id => p_packet_id
7159: ,p_bc_packet_id => l_bc_packet_id

Line 7187: PA_FUNDS_CONTROL_PKG.log_message

7183: FETCH pkt_po_amount into l_period_name
7184: ,l_entered_dr,l_entered_cr
7185: ,l_accounted_dr,l_accounted_cr,l_exp_type,l_compiled_multiplier;
7186: EXIT when pkt_po_amount%NOTFOUND;
7187: PA_FUNDS_CONTROL_PKG.log_message
7188: (p_msg_token1 => 'amount found from packets');
7189: If Not create_ap_po_bdn_lines
7190: (p_packet_id => p_packet_id
7191: ,p_bc_packet_id => l_bc_packet_id

Line 7210: PA_FUNDS_CONTROL_PKG.log_message

7206: END LOOP;
7207: CLOSE pkt_po_amount;
7208: End if;
7209: Else
7210: PA_FUNDS_CONTROL_PKG.log_message
7211: (p_msg_token1 => ' not related link = N ');
7212: l_related_link := 'N';
7213:
7214: End if;

Line 7284: PA_FUNDS_CONTROL_PKG.log_message

7280: FETCH po_amount into l_period_name
7281: ,l_entered_dr,l_entered_cr
7282: ,l_accounted_dr,l_accounted_cr,l_exp_type,l_compiled_multiplier;
7283: EXIT when po_amount%NOTFOUND;
7284: PA_FUNDS_CONTROL_PKG.log_message
7285: (p_msg_token1 => 'amount found from commitments');
7286: If Not create_ap_po_bdn_lines
7287: (p_packet_id => p_packet_id
7288: ,p_bc_packet_id => l_bc_packet_id

Line 7317: PA_FUNDS_CONTROL_PKG.log_message

7313: FETCH pkt_po_amount into l_period_name
7314: ,l_entered_dr,l_entered_cr
7315: ,l_accounted_dr,l_accounted_cr,l_exp_type,l_compiled_multiplier;
7316: EXIT when pkt_po_amount%NOTFOUND;
7317: PA_FUNDS_CONTROL_PKG.log_message
7318: (p_msg_token1 => 'amount found from commitments');
7319: If Not create_ap_po_bdn_lines
7320: (p_packet_id => p_packet_id
7321: ,p_bc_packet_id => l_bc_packet_id

Line 7341: PA_FUNDS_CONTROL_PKG.log_message

7337: CLOSE pkt_po_amount;
7338: End if;
7339:
7340: Else
7341: PA_FUNDS_CONTROL_PKG.log_message
7342: (p_msg_token1 => ' Not invoice based po ');
7343: l_related_link := 'N';
7344:
7345: End if;

Line 7368: PA_FUNDS_CONTROL_PKG.log_message

7364: end If;
7365: End if;
7366:
7367: Elsif l_doc_type = 'AP' then
7368: PA_FUNDS_CONTROL_PKG.log_message
7369: (p_msg_token1 => ' doc type is ap related link N');
7370: l_related_link := 'N';
7371: If l_related_link = 'N' then
7372: If Not create_ap_po_bdn_lines

Line 7397: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 => 'End of Burden Process');

7393: END IF; --- for burden method type
7394:
7395:
7396: <>
7397: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 => 'End of Burden Process');
7398: -- if the burden rows are not found for the po based on requision
7399: -- or invoice based on purchase orders then update the transaction
7400: -- with error status transaction failed to populate burden cost
7401: If l_status_flag = 'Y' and l_related_link = 'Y' then

Line 7402: PA_FUNDS_CONTROL_PKG.result_status_code_update

7398: -- if the burden rows are not found for the po based on requision
7399: -- or invoice based on purchase orders then update the transaction
7400: -- with error status transaction failed to populate burden cost
7401: If l_status_flag = 'Y' and l_related_link = 'Y' then
7402: PA_FUNDS_CONTROL_PKG.result_status_code_update
7403: (p_packet_id => p_packet_id,
7404: p_bc_packet_id => l_bc_packet_id,
7405: p_result_code => 'F114',
7406: p_res_result_code => 'F114',

Line 7459: pa_funds_control_pkg.log_message(p_msg_token1=>'Calling upd_cwk_attributes for Summary record flag');

7455: IF g_cwk_po_unreserve = 'Y' THEN
7456: update_cwk_po_burden(p_packet_id) ;
7457: END IF ;
7458:
7459: pa_funds_control_pkg.log_message(p_msg_token1=>'Calling upd_cwk_attributes for Summary record flag');
7460: pa_funds_control_pkg1.upd_cwk_attributes(
7461: p_calling_module => p_calling_module
7462: ,p_packet_id => p_packet_id
7463: ,p_mode => 'R'

Line 7460: pa_funds_control_pkg1.upd_cwk_attributes(

7456: update_cwk_po_burden(p_packet_id) ;
7457: END IF ;
7458:
7459: pa_funds_control_pkg.log_message(p_msg_token1=>'Calling upd_cwk_attributes for Summary record flag');
7460: pa_funds_control_pkg1.upd_cwk_attributes(
7461: p_calling_module => p_calling_module
7462: ,p_packet_id => p_packet_id
7463: ,p_mode => 'R'
7464: ,p_reference => 'UPD_FLAG'

Line 7467: pa_funds_control_pkg.log_message(p_msg_token1=>'end of upd_cwk_attributes for Summary record flag'||

7463: ,p_mode => 'R'
7464: ,p_reference => 'UPD_FLAG'
7465: ,x_return_status => x_return_status
7466: );
7467: pa_funds_control_pkg.log_message(p_msg_token1=>'end of upd_cwk_attributes for Summary record flag'||
7468: 'RetSts['||x_return_status||']');
7469:
7470:
7471: End If;

Line 7483: PA_FUNDS_CONTROL_PKG.log_message

7479: If burden_type%ISOPEN then
7480: close burden_type;
7481: End if;
7482:
7483: PA_FUNDS_CONTROL_PKG.log_message
7484: (p_msg_token1 => 'PA_FUNDS_CONTROL.populate_burden_cost UNEXPECTED ERROR');
7485: --error msg : 'F140 = Funds check failed because of insert burden cost'
7486: PA_FUNDS_CONTROL_PKG.result_status_code_update
7487: ( p_status_code=> 'T',

Line 7486: PA_FUNDS_CONTROL_PKG.result_status_code_update

7482:
7483: PA_FUNDS_CONTROL_PKG.log_message
7484: (p_msg_token1 => 'PA_FUNDS_CONTROL.populate_burden_cost UNEXPECTED ERROR');
7485: --error msg : 'F140 = Funds check failed because of insert burden cost'
7486: PA_FUNDS_CONTROL_PKG.result_status_code_update
7487: ( p_status_code=> 'T',
7488: p_result_code => 'F140',
7489: p_res_result_code => 'F140',
7490: p_res_grp_result_code => 'F140',

Line 7506: PA_FUNDS_CONTROL_PKG.log_message

7502: close pkt_po_amount;
7503: End if;
7504:
7505: x_return_status := 'T';
7506: PA_FUNDS_CONTROL_PKG.log_message
7507: (p_msg_token1 => 'failed in populate burden cost api SQLERR :'||sqlcode||sqlerrm);
7508: PA_FUNDS_CONTROL_PKG.log_message
7509: (p_error_msg => sqlcode ||sqlerrm);
7510: --commit;

Line 7508: PA_FUNDS_CONTROL_PKG.log_message

7504:
7505: x_return_status := 'T';
7506: PA_FUNDS_CONTROL_PKG.log_message
7507: (p_msg_token1 => 'failed in populate burden cost api SQLERR :'||sqlcode||sqlerrm);
7508: PA_FUNDS_CONTROL_PKG.log_message
7509: (p_error_msg => sqlcode ||sqlerrm);
7510: --commit;
7511: Raise;
7512: END Populate_burden_cost;

Line 7564: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 => 'Inside the setup start and end date api');

7560: l_bal_end_date DATE;
7561: l_debug_mode VARCHAR2(10);
7562: BEGIN
7563:
7564: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 => 'Inside the setup start and end date api');
7565:
7566: -- Inialize the error stack
7567: PA_DEBUG.init_err_stack('PA_FUNDS_CONTROL_PKG1.setup_start_end_dates');
7568: -- set the return status to success

Line 7567: PA_DEBUG.init_err_stack('PA_FUNDS_CONTROL_PKG1.setup_start_end_dates');

7563:
7564: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 => 'Inside the setup start and end date api');
7565:
7566: -- Inialize the error stack
7567: PA_DEBUG.init_err_stack('PA_FUNDS_CONTROL_PKG1.setup_start_end_dates');
7568: -- set the return status to success
7569: x_return_status := 'S';
7570:
7571: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);

Line 7578: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'amount_type ['||p_amount_type||']boundary_code ['

7574: PA_DEBUG.SET_PROCESS( x_process => 'PLSQL'
7575: ,x_write_file => 'LOG'
7576: ,x_debug_mode => l_debug_mode
7577: );
7578: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'amount_type ['||p_amount_type||']boundary_code ['
7579: ||p_boundary_code||'] time_phase_type_code['||p_time_phase_type_code||']' );
7580:
7581: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'p_set_of_books_id ['||p_set_of_books_id||']p_expenditure_item_date ['
7582: ||p_expenditure_item_date||'] p_budget_version_id['||p_budget_version_id||']' );

Line 7581: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'p_set_of_books_id ['||p_set_of_books_id||']p_expenditure_item_date ['

7577: );
7578: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'amount_type ['||p_amount_type||']boundary_code ['
7579: ||p_boundary_code||'] time_phase_type_code['||p_time_phase_type_code||']' );
7580:
7581: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'p_set_of_books_id ['||p_set_of_books_id||']p_expenditure_item_date ['
7582: ||p_expenditure_item_date||'] p_budget_version_id['||p_budget_version_id||']' );
7583:
7584:
7585: x_error_code := 0; -- initialize error code

Line 7590: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'Project Start and End Date');

7586: IF ( p_time_phase_type_code = 'N'
7587: OR p_amount_type = 'PJTD'
7588: OR p_boundary_code = 'J' ) THEN
7589: g_error_stage := 'Project Start and End Date';
7590: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'Project Start and End Date');
7591: SELECT start_date,
7592: completion_date
7593: INTO l_project_start_date,
7594: l_project_end_date

Line 7629: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'Year Start and End Date');

7625:
7626: IF ( p_amount_type = 'YTD'
7627: OR p_boundary_code = 'Y' ) THEN
7628: g_error_stage := 'Year Start and End Date';
7629: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'Year Start and End Date');
7630:
7631: SELECT gps.year_start_date
7632: INTO l_year_start_date
7633: FROM gl_period_statuses gps

Line 7639: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_year_start_date is = '||l_year_start_date);

7635: AND gps.set_of_books_id = p_set_of_books_id
7636: AND p_expenditure_item_date BETWEEN gps.start_date AND gps.end_date
7637: AND gps.adjustment_period_flag = 'N';
7638:
7639: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_year_start_date is = '||l_year_start_date);
7640: l_year_end_date := ADD_MONTHS ( l_year_start_date, 12 ) - 1;
7641: END IF;
7642:
7643: -- get period start and end dates

Line 7644: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'get period start and end dates');

7640: l_year_end_date := ADD_MONTHS ( l_year_start_date, 12 ) - 1;
7641: END IF;
7642:
7643: -- get period start and end dates
7644: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'get period start and end dates');
7645:
7646: IF p_time_phase_type_code = 'G' THEN
7647: -- FOR GL period
7648: g_error_stage := 'Time Phase = G';

Line 7649: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'Time Phase = G');

7645:
7646: IF p_time_phase_type_code = 'G' THEN
7647: -- FOR GL period
7648: g_error_stage := 'Time Phase = G';
7649: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'Time Phase = G');
7650: SELECT TRUNC ( gps.start_date ),
7651: TRUNC ( gps.end_date )
7652: INTO l_gl_period_start_date,
7653: l_gl_period_end_date

Line 7660: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gl_period_start_date is = '||l_gl_period_start_date);

7656: AND gps.set_of_books_id = p_set_of_books_id
7657: AND p_expenditure_item_date BETWEEN gps.start_date AND gps.end_date
7658: AND gps.adjustment_period_flag = 'N';
7659:
7660: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gl_period_start_date is = '||l_gl_period_start_date);
7661: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gl_period_end_date is = '||l_gl_period_end_date);
7662:
7663: ELSIF p_time_phase_type_code = 'P' THEN
7664: -- FOR PA period

Line 7661: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gl_period_end_date is = '||l_gl_period_end_date);

7657: AND p_expenditure_item_date BETWEEN gps.start_date AND gps.end_date
7658: AND gps.adjustment_period_flag = 'N';
7659:
7660: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gl_period_start_date is = '||l_gl_period_start_date);
7661: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gl_period_end_date is = '||l_gl_period_end_date);
7662:
7663: ELSIF p_time_phase_type_code = 'P' THEN
7664: -- FOR PA period
7665: g_error_stage := 'Time Phase = P';

Line 7666: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'Time Phase = P');

7662:
7663: ELSIF p_time_phase_type_code = 'P' THEN
7664: -- FOR PA period
7665: g_error_stage := 'Time Phase = P';
7666: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'Time Phase = P');
7667: SELECT TRUNC ( start_date ),
7668: TRUNC ( end_date )
7669: INTO l_pa_period_start_date,
7670: l_pa_period_end_date

Line 7674: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_pa_period_start_date is = '||l_pa_period_start_date);

7670: l_pa_period_end_date
7671: FROM pa_periods gpa
7672: WHERE p_expenditure_item_date BETWEEN gpa.start_date AND gpa.end_date;
7673:
7674: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_pa_period_start_date is = '||l_pa_period_start_date);
7675: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_pa_period_end_date is = '||l_pa_period_end_date);
7676:
7677: ELSIF p_time_phase_type_code = 'R' THEN
7678: -- FOR DATE RANGE

Line 7675: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_pa_period_end_date is = '||l_pa_period_end_date);

7671: FROM pa_periods gpa
7672: WHERE p_expenditure_item_date BETWEEN gpa.start_date AND gpa.end_date;
7673:
7674: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_pa_period_start_date is = '||l_pa_period_start_date);
7675: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_pa_period_end_date is = '||l_pa_period_end_date);
7676:
7677: ELSIF p_time_phase_type_code = 'R' THEN
7678: -- FOR DATE RANGE
7679: g_error_stage := 'Time Phase R';

Line 7680: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'Time Phase = R');

7676:
7677: ELSIF p_time_phase_type_code = 'R' THEN
7678: -- FOR DATE RANGE
7679: g_error_stage := 'Time Phase R';
7680: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'Time Phase = R');
7681: SELECT TRUNC ( MAX ( start_date ))
7682: INTO l_dr_period_start_date
7683: FROM pa_bc_balances
7684: WHERE project_id = p_project_id

Line 7697: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_dr_period_start_date is = '||l_dr_period_start_date);

7693: AND budget_version_id = p_budget_version_id
7694: AND balance_type = 'BGT'
7695: AND end_date >= p_expenditure_item_date;
7696:
7697: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_dr_period_start_date is = '||l_dr_period_start_date);
7698: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_dr_period_end_date is = '||l_dr_period_end_date);
7699: END IF;
7700:
7701: -- Find the p_start_date and x_end_date

Line 7698: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_dr_period_end_date is = '||l_dr_period_end_date);

7694: AND balance_type = 'BGT'
7695: AND end_date >= p_expenditure_item_date;
7696:
7697: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_dr_period_start_date is = '||l_dr_period_start_date);
7698: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_dr_period_end_date is = '||l_dr_period_end_date);
7699: END IF;
7700:
7701: -- Find the p_start_date and x_end_date
7702:

Line 7707: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'Invalid amount type boundary code');

7703: IF p_time_phase_type_code = 'N' THEN -- for no time phase
7704: IF ( p_amount_type <> 'PJTD'
7705: OR p_boundary_code <> 'J' ) THEN
7706: -- Error msg : F123 = Invalid Amount type and Boundary code for No time phase
7707: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'Invalid amount type boundary code');
7708:
7709: x_result_code := 'F123';
7710: x_return_status := 'F';
7711: PA_DEBUG.reset_err_stack;

Line 7725: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>' PJTD- P');

7721:
7722: IF p_amount_type = 'PJTD' THEN
7723: IF p_time_phase_type_code = 'P' THEN
7724: g_error_stage := 'PJTD- P';
7725: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>' PJTD- P');
7726: BEGIN
7727: SELECT TRUNC ( start_date )
7728: INTO l_gs_start_date
7729: FROM pa_periods gpa

Line 7731: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_start_date is = '||l_gs_start_date);

7727: SELECT TRUNC ( start_date )
7728: INTO l_gs_start_date
7729: FROM pa_periods gpa
7730: WHERE l_project_start_date BETWEEN gpa.start_date AND gpa.end_date;
7731: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_start_date is = '||l_gs_start_date);
7732:
7733: EXCEPTION
7734: WHEN NO_DATA_FOUND THEN
7735: SELECT TRUNC ( MIN ( start_date ))

Line 7741: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_start_date is = '||l_gs_start_date);

7737: FROM pa_bc_balances
7738: WHERE project_id = p_project_id
7739: AND budget_version_id = p_budget_version_id
7740: AND balance_type = 'BGT';
7741: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_start_date is = '||l_gs_start_date);
7742: END;
7743: ELSIF p_time_phase_type_code = 'G' THEN
7744: g_error_stage := 'PJTD-G';
7745: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD-G');

Line 7745: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD-G');

7741: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_start_date is = '||l_gs_start_date);
7742: END;
7743: ELSIF p_time_phase_type_code = 'G' THEN
7744: g_error_stage := 'PJTD-G';
7745: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD-G');
7746: BEGIN
7747: SELECT TRUNC ( gps.start_date )
7748: INTO l_gs_start_date
7749: FROM gl_period_statuses gps

Line 7754: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_start_date is = '||l_gs_start_date);

7750: WHERE gps.application_id = 101
7751: AND gps.set_of_books_id = p_set_of_books_id
7752: AND l_project_start_date BETWEEN gps.start_date AND gps.end_date
7753: AND gps.adjustment_period_flag = 'N';
7754: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_start_date is = '||l_gs_start_date);
7755: EXCEPTION
7756: WHEN NO_DATA_FOUND THEN
7757: SELECT TRUNC ( MIN ( start_date ))
7758: INTO l_gs_start_date

Line 7763: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_start_date is = '||l_gs_start_date);

7759: FROM pa_bc_balances
7760: WHERE project_id = p_project_id
7761: AND budget_version_id = p_budget_version_id
7762: AND balance_type = 'BGT';
7763: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_start_date is = '||l_gs_start_date);
7764: END;
7765: ELSIF p_time_phase_type_code = 'R' THEN
7766: g_error_stage := 'PJTD-R';
7767: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD-R');

Line 7767: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD-R');

7763: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_start_date is = '||l_gs_start_date);
7764: END;
7765: ELSIF p_time_phase_type_code = 'R' THEN
7766: g_error_stage := 'PJTD-R';
7767: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD-R');
7768: SELECT TRUNC ( MIN ( start_date ))
7769: INTO l_gs_start_date
7770: FROM pa_bc_balances
7771: WHERE project_id = p_project_id

Line 7774: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_start_date is = '||l_gs_start_date);

7770: FROM pa_bc_balances
7771: WHERE project_id = p_project_id
7772: AND budget_version_id = p_budget_version_id
7773: AND balance_type = 'BGT';
7774: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_start_date is = '||l_gs_start_date);
7775: END IF;
7776: IF l_gs_start_date < l_project_start_date THEN
7777: x_start_date := l_gs_start_date;
7778: ELSE

Line 7783: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>' end date calc for PJTD ');

7779: x_start_date := l_project_start_date;
7780: END IF;
7781:
7782: -- end date calc for PJTD - Project
7783: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>' end date calc for PJTD ');
7784:
7785: IF p_boundary_code = 'J' THEN
7786: IF p_time_phase_type_code = 'P' THEN
7787: g_error_stage := 'PJTD_J-P';

Line 7788: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD_J-P');

7784:
7785: IF p_boundary_code = 'J' THEN
7786: IF p_time_phase_type_code = 'P' THEN
7787: g_error_stage := 'PJTD_J-P';
7788: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD_J-P');
7789: BEGIN
7790: SELECT TRUNC ( end_date )
7791: INTO l_gs_end_date
7792: FROM pa_periods gpa

Line 7794: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_end_date is = '||l_gs_end_date);

7790: SELECT TRUNC ( end_date )
7791: INTO l_gs_end_date
7792: FROM pa_periods gpa
7793: WHERE l_project_end_date BETWEEN gpa.start_date AND gpa.end_date;
7794: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_end_date is = '||l_gs_end_date);
7795: EXCEPTION
7796: WHEN NO_DATA_FOUND THEN
7797: SELECT TRUNC ( MAX ( end_date ))
7798: INTO l_gs_end_date

Line 7803: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_end_date is = '||l_gs_end_date);

7799: FROM pa_bc_balances
7800: WHERE project_id = p_project_id
7801: AND budget_version_id = p_budget_version_id
7802: AND balance_type = 'BGT';
7803: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_end_date is = '||l_gs_end_date);
7804: END;
7805: IF l_gs_end_date > l_project_end_date THEN
7806: x_end_date := l_gs_end_date;
7807: ELSE

Line 7812: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD_J-G');

7808: x_end_date := l_project_end_date;
7809: END IF;
7810: ELSIF p_time_phase_type_code = 'G' THEN
7811: g_error_stage := 'PJTD_J-G';
7812: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD_J-G');
7813: BEGIN
7814: SELECT TRUNC ( gps.end_date )
7815: INTO l_gs_end_date
7816: FROM gl_period_statuses gps

Line 7821: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_end_date is = '||l_gs_end_date);

7817: WHERE gps.application_id = 101
7818: AND gps.set_of_books_id = p_set_of_books_id
7819: AND l_project_end_date BETWEEN gps.start_date AND gps.end_date
7820: AND gps.adjustment_period_flag = 'N';
7821: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_end_date is = '||l_gs_end_date);
7822: EXCEPTION
7823: WHEN NO_DATA_FOUND THEN
7824: SELECT TRUNC ( MAX ( end_date ))
7825: INTO l_gs_end_date

Line 7830: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_end_date is = '||l_gs_end_date);

7826: FROM pa_bc_balances
7827: WHERE project_id = p_project_id
7828: AND budget_version_id = p_budget_version_id
7829: AND balance_type = 'BGT';
7830: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_end_date is = '||l_gs_end_date);
7831: END;
7832: IF l_gs_end_date > l_project_end_date THEN
7833: x_end_date := l_gs_end_date;
7834: ELSE

Line 7839: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD_J-R');

7835: x_end_date := l_project_end_date;
7836: END IF;
7837: ELSIF p_time_phase_type_code = 'R' THEN
7838: g_error_stage := 'PJTD_J-R';
7839: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD_J-R');
7840: x_end_date := l_project_end_date;
7841: END IF;
7842: -- end date calc for PJTD - Year
7843:

Line 7847: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD-Y-P');

7843:
7844: ELSIF p_boundary_code = 'Y' THEN
7845: IF p_time_phase_type_code = 'P' THEN
7846: g_error_stage := 'PJTD-Y-P';
7847: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD-Y-P');
7848: BEGIN
7849: SELECT p.end_date
7850: INTO l_gs_end_date
7851: FROM pa_periods p

Line 7854: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_end_date is = '||l_gs_end_date);

7850: INTO l_gs_end_date
7851: FROM pa_periods p
7852: WHERE l_year_end_date BETWEEN p.start_date AND p.end_date;
7853: x_end_date := l_gs_end_date;
7854: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'l_gs_end_date is = '||l_gs_end_date);
7855: EXCEPTION
7856: WHEN NO_DATA_FOUND THEN
7857: x_end_date := l_year_end_date;
7858: END;

Line 7861: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD-Y-G');

7857: x_end_date := l_year_end_date;
7858: END;
7859: ELSIF p_time_phase_type_code = 'G' THEN
7860: g_error_stage := 'PJTD-Y-G';
7861: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD-Y-G');
7862: x_end_date := l_year_end_date;
7863: ELSIF p_time_phase_type_code = 'R' THEN
7864: g_error_stage := 'PJTD-Y-R';
7865: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD-Y-R');

Line 7865: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD-Y-R');

7861: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD-Y-G');
7862: x_end_date := l_year_end_date;
7863: ELSIF p_time_phase_type_code = 'R' THEN
7864: g_error_stage := 'PJTD-Y-R';
7865: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD-Y-R');
7866: x_end_date := l_year_end_date;
7867: END IF;
7868: -- end date calc for PJTD - period
7869: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'end date calc for PJTD - period');

Line 7869: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'end date calc for PJTD - period');

7865: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD-Y-R');
7866: x_end_date := l_year_end_date;
7867: END IF;
7868: -- end date calc for PJTD - period
7869: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'end date calc for PJTD - period');
7870:
7871: ELSIF p_boundary_code = 'P' THEN
7872: g_error_stage := 'PJTD-P';
7873: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD-P');

Line 7873: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD-P');

7869: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'end date calc for PJTD - period');
7870:
7871: ELSIF p_boundary_code = 'P' THEN
7872: g_error_stage := 'PJTD-P';
7873: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PJTD-P');
7874: IF p_time_phase_type_code = 'P' THEN
7875: x_end_date := l_pa_period_end_date;
7876: ELSIF p_time_phase_type_code = 'G' THEN
7877: x_end_date := l_gl_period_end_date;

Line 7883: PA_FUNDS_CONTROL_PKG.log_message

7879: x_end_date := l_dr_period_end_date;
7880: END IF;
7881: ELSE -- end date calc for PJTD - period
7882: -- error msg : F124 = Invalid Boundary code for Project to Date
7883: PA_FUNDS_CONTROL_PKG.log_message
7884: (p_msg_token1 =>'Invalid Boundary code for Project to Date');
7885: x_result_code := 'F124';
7886: x_return_status := 'F';
7887: PA_DEBUG.reset_err_stack;

Line 7893: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'start date calc - YTD');

7889: NULL;
7890: END IF;
7891: -- Year to Date - start and End date calculation
7892: -- start date calc - YTD
7893: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'start date calc - YTD');
7894:
7895: ELSIF p_amount_type = 'YTD' THEN
7896:
7897: IF p_time_phase_type_code = 'P' THEN

Line 7899: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'YTD1-P');

7895: ELSIF p_amount_type = 'YTD' THEN
7896:
7897: IF p_time_phase_type_code = 'P' THEN
7898: g_error_stage := 'YTD1-P';
7899: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'YTD1-P');
7900: BEGIN
7901: SELECT p.start_date
7902: INTO l_gs_start_date
7903: FROM pa_periods p

Line 7912: PA_FUNDS_CONTROL_PKG.log_message

7908: x_start_date := l_year_start_date;
7909: END;
7910: ELSIF p_time_phase_type_code = 'G' THEN
7911: g_error_stage := 'YTD2-G';
7912: PA_FUNDS_CONTROL_PKG.log_message
7913: (p_msg_token1 =>'YTD2-G');
7914: x_start_date := l_year_start_date;
7915: ELSIF p_time_phase_type_code = 'R' THEN
7916: g_error_stage := 'YTD3-R';

Line 7917: PA_FUNDS_CONTROL_PKG.log_message

7913: (p_msg_token1 =>'YTD2-G');
7914: x_start_date := l_year_start_date;
7915: ELSIF p_time_phase_type_code = 'R' THEN
7916: g_error_stage := 'YTD3-R';
7917: PA_FUNDS_CONTROL_PKG.log_message
7918: (p_msg_token1 =>'YTD3-R');
7919: x_start_date := l_year_start_date;
7920: END IF;
7921:

Line 7923: PA_FUNDS_CONTROL_PKG.log_message

7919: x_start_date := l_year_start_date;
7920: END IF;
7921:
7922: -- end date calc for YTD - year
7923: PA_FUNDS_CONTROL_PKG.log_message
7924: (p_msg_token1 =>'end date calc for YTD - year');
7925: IF p_boundary_code = 'Y' THEN
7926: IF p_time_phase_type_code = 'P' THEN
7927: g_error_stage := 'YTD-Y-P';

Line 7928: PA_FUNDS_CONTROL_PKG.log_message

7924: (p_msg_token1 =>'end date calc for YTD - year');
7925: IF p_boundary_code = 'Y' THEN
7926: IF p_time_phase_type_code = 'P' THEN
7927: g_error_stage := 'YTD-Y-P';
7928: PA_FUNDS_CONTROL_PKG.log_message
7929: (p_msg_token1 =>'YTD-Y-P');
7930: BEGIN
7931: SELECT p.end_date
7932: INTO l_gs_end_date

Line 7942: PA_FUNDS_CONTROL_PKG.log_message

7938: x_end_date := l_year_end_date;
7939: END;
7940: ELSIF p_time_phase_type_code = 'G' THEN
7941: g_error_stage := 'YTD-Y-G';
7942: PA_FUNDS_CONTROL_PKG.log_message
7943: (p_msg_token1 =>'YTD-Y-G');
7944: x_end_date := l_year_end_date;
7945: ELSIF p_time_phase_type_code = 'R' THEN
7946: g_error_stage := 'YTD-Y-R';

Line 7947: PA_FUNDS_CONTROL_PKG.log_message

7943: (p_msg_token1 =>'YTD-Y-G');
7944: x_end_date := l_year_end_date;
7945: ELSIF p_time_phase_type_code = 'R' THEN
7946: g_error_stage := 'YTD-Y-R';
7947: PA_FUNDS_CONTROL_PKG.log_message
7948: (p_msg_token1 =>'YTD-Y-R');
7949: x_end_date := l_year_end_date;
7950: END IF;
7951: -- end date calc for YTD - period

Line 7954: PA_FUNDS_CONTROL_PKG.log_message

7950: END IF;
7951: -- end date calc for YTD - period
7952: ELSIF p_boundary_code = 'P' THEN
7953: g_error_stage := 'YTD-P';
7954: PA_FUNDS_CONTROL_PKG.log_message
7955: (p_msg_token1 => 'YTD-P');
7956: IF p_time_phase_type_code = 'P' THEN
7957: x_end_date := l_pa_period_end_date;
7958: ELSIF p_time_phase_type_code = 'G' THEN

Line 7966: PA_FUNDS_CONTROL_PKG.log_message

7962: END IF;
7963:
7964: ELSE
7965: -- Error msg : F125 = Invalid boundary code for YTD
7966: PA_FUNDS_CONTROL_PKG.log_message
7967: (p_msg_token1 =>'Invalid boundary code for YTD');
7968: x_result_code := 'F125';
7969: x_return_status := 'F';
7970: PA_DEBUG.reset_err_stack;

Line 7980: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PTD-P');

7976:
7977: ELSIF p_amount_type = 'PTD' THEN
7978: IF p_boundary_code = 'P' THEN
7979: g_error_stage := 'PTD-P';
7980: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'PTD-P');
7981: IF p_time_phase_type_code = 'P' THEN
7982: x_start_date := l_pa_period_start_date;
7983: x_end_date := l_pa_period_end_date;
7984: ELSIF p_time_phase_type_code = 'G' THEN

Line 7993: PA_FUNDS_CONTROL_PKG.log_message

7989: x_end_date := l_dr_period_end_date;
7990: END IF;
7991: ELSE
7992: -- error msg : F127 = Invalid boundary code for PTD
7993: PA_FUNDS_CONTROL_PKG.log_message
7994: (p_msg_token1 =>'Invalid boundary code for PTD');
7995: x_result_code := 'F127';
7996: x_return_status := 'F';
7997: PA_DEBUG.reset_err_stack;

Line 8003: PA_FUNDS_CONTROL_PKG.log_message

7999: NULL;
8000: END IF;
8001: ELSE
8002: -- error msg : F122 = Invalid Amount type boundary code
8003: PA_FUNDS_CONTROL_PKG.log_message
8004: (p_msg_token1 =>'Invalid Amount type boundary code');
8005: x_result_code := 'F122';
8006: x_return_status := 'F';
8007: PA_DEBUG.reset_err_stack;

Line 8015: PA_FUNDS_CONTROL_PKG.log_message

8011: END IF;
8012:
8013: ELSE
8014: -- error msg : F122 = Invalid Amount type boundary code
8015: PA_FUNDS_CONTROL_PKG.log_message
8016: (p_msg_token1 =>'Invalid Amount type boundary code');
8017: x_result_code := 'F122';
8018: x_return_status := 'F';
8019: PA_DEBUG.reset_err_stack;

Line 8027: PA_FUNDS_CONTROL_PKG.log_message

8023:
8024: --('After Date Check Process');
8025:
8026: IF x_start_date IS NULL OR x_end_date IS NULL THEN
8027: PA_FUNDS_CONTROL_PKG.log_message
8028: (p_msg_token1 =>'x_start_date IS NULL OR x_end_date IS NULL');
8029: IF p_time_phase_type_code = 'R' THEN
8030: --error msg : F129 = Start and end date is null for Date range
8031: x_result_code := 'F129';

Line 8045: PA_FUNDS_CONTROL_PKG.log_message

8041: END IF;
8042:
8043: x_error_code := 2;
8044: END IF;
8045: PA_FUNDS_CONTROL_PKG.log_message
8046: (p_msg_token1 =>'End of setup start and end date');
8047:
8048: PA_DEBUG.reset_err_stack;
8049: Return;

Line 8053: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'Exception: No Data Found - F136');

8049: Return;
8050: EXCEPTION
8051:
8052: WHEN NO_DATA_FOUND THEN
8053: PA_FUNDS_CONTROL_PKG.log_message(p_msg_token1 =>'Exception: No Data Found - F136');
8054: --Error msg : F136 = Funds check failed at Start and End Date Calculations;
8055: x_result_code := 'F136';
8056: PA_DEBUG.reset_err_stack;
8057: Return;

Line 8101: pa_funds_control_pkg.log_message(p_msg_token1 => 'Different 1 '||p_type);

8097: g_sd_amt_type is null or g_sd_amt_type <> p_amount_type OR
8098: g_sd_boundary_code is null or g_sd_boundary_code <> p_boundary_code OR
8099: g_sd_sob is null or g_sd_sob <> p_set_of_books_id then
8100:
8101: pa_funds_control_pkg.log_message(p_msg_token1 => 'Different 1 '||p_type);
8102: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling setup_start_end_date');
8103: setup_start_end_date (
8104: p_packet_id => p_packet_id
8105: ,p_bc_packet_id => p_bc_packet_id

Line 8102: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling setup_start_end_date');

8098: g_sd_boundary_code is null or g_sd_boundary_code <> p_boundary_code OR
8099: g_sd_sob is null or g_sd_sob <> p_set_of_books_id then
8100:
8101: pa_funds_control_pkg.log_message(p_msg_token1 => 'Different 1 '||p_type);
8102: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling setup_start_end_date');
8103: setup_start_end_date (
8104: p_packet_id => p_packet_id
8105: ,p_bc_packet_id => p_bc_packet_id
8106: ,p_project_id => p_project_id

Line 8136: pa_funds_control_pkg.log_message(p_msg_token1 => 'Same '||p_type);

8132: trunc(p_expenditure_item_date) between trunc(g_start_date) and trunc(g_end_date) then
8133: l_start_date := g_start_date;
8134: l_end_date := g_end_date;
8135: x_result_code := g_sd_result_code;
8136: pa_funds_control_pkg.log_message(p_msg_token1 => 'Same '||p_type);
8137:
8138: Else
8139: pa_funds_control_pkg.log_message(p_msg_token1 => 'Different 2');
8140: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling setup_start_end_date');

Line 8139: pa_funds_control_pkg.log_message(p_msg_token1 => 'Different 2');

8135: x_result_code := g_sd_result_code;
8136: pa_funds_control_pkg.log_message(p_msg_token1 => 'Same '||p_type);
8137:
8138: Else
8139: pa_funds_control_pkg.log_message(p_msg_token1 => 'Different 2');
8140: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling setup_start_end_date');
8141: setup_start_end_date (
8142: p_packet_id => p_packet_id
8143: ,p_bc_packet_id => p_bc_packet_id

Line 8140: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling setup_start_end_date');

8136: pa_funds_control_pkg.log_message(p_msg_token1 => 'Same '||p_type);
8137:
8138: Else
8139: pa_funds_control_pkg.log_message(p_msg_token1 => 'Different 2');
8140: pa_funds_control_pkg.log_message(p_msg_token1 => 'Calling setup_start_end_date');
8141: setup_start_end_date (
8142: p_packet_id => p_packet_id
8143: ,p_bc_packet_id => p_bc_packet_id
8144: ,p_project_id => p_project_id

Line 8174: pa_funds_control_pkg.log_message(p_msg_token1 =>

8170:
8171: EXCEPTION
8172:
8173: when others then
8174: pa_funds_control_pkg.log_message(p_msg_token1 =>
8175: 'Failed in the get_start_date api');
8176: raise;
8177:
8178: END get_start_or_end_date;

Line 8191: If pa_funds_control_pkg.g_debug_mode = 'Y' then

8187: FROM PSA_BC_XLA_EVENTS_GT b;
8188:
8189: BEGIN
8190:
8191: If pa_funds_control_pkg.g_debug_mode = 'Y' then
8192: pa_funds_control_pkg.log_message(p_msg_token1=>'Inside TIEBACK_FAILED_ACCT_STATUS procedure');
8193: end if;
8194:
8195: -- Bug 5354715 : Added the "PA IMPLEMENTED IN OU" check.

Line 8192: pa_funds_control_pkg.log_message(p_msg_token1=>'Inside TIEBACK_FAILED_ACCT_STATUS procedure');

8188:
8189: BEGIN
8190:
8191: If pa_funds_control_pkg.g_debug_mode = 'Y' then
8192: pa_funds_control_pkg.log_message(p_msg_token1=>'Inside TIEBACK_FAILED_ACCT_STATUS procedure');
8193: end if;
8194:
8195: -- Bug 5354715 : Added the "PA IMPLEMENTED IN OU" check.
8196: IF PA_FUNDS_CONTROL_PKG.IS_PA_INSTALL_IN_OU = 'N' then

Line 8196: IF PA_FUNDS_CONTROL_PKG.IS_PA_INSTALL_IN_OU = 'N' then

8192: pa_funds_control_pkg.log_message(p_msg_token1=>'Inside TIEBACK_FAILED_ACCT_STATUS procedure');
8193: end if;
8194:
8195: -- Bug 5354715 : Added the "PA IMPLEMENTED IN OU" check.
8196: IF PA_FUNDS_CONTROL_PKG.IS_PA_INSTALL_IN_OU = 'N' then
8197:
8198: If pa_funds_control_pkg.g_debug_mode = 'Y' then
8199: pa_funds_control_pkg.log_message(p_msg_token1=>'PA NOT INSTALLED IN THIS OU');
8200: end if;

Line 8198: If pa_funds_control_pkg.g_debug_mode = 'Y' then

8194:
8195: -- Bug 5354715 : Added the "PA IMPLEMENTED IN OU" check.
8196: IF PA_FUNDS_CONTROL_PKG.IS_PA_INSTALL_IN_OU = 'N' then
8197:
8198: If pa_funds_control_pkg.g_debug_mode = 'Y' then
8199: pa_funds_control_pkg.log_message(p_msg_token1=>'PA NOT INSTALLED IN THIS OU');
8200: end if;
8201: Return;
8202: END IF;

Line 8199: pa_funds_control_pkg.log_message(p_msg_token1=>'PA NOT INSTALLED IN THIS OU');

8195: -- Bug 5354715 : Added the "PA IMPLEMENTED IN OU" check.
8196: IF PA_FUNDS_CONTROL_PKG.IS_PA_INSTALL_IN_OU = 'N' then
8197:
8198: If pa_funds_control_pkg.g_debug_mode = 'Y' then
8199: pa_funds_control_pkg.log_message(p_msg_token1=>'PA NOT INSTALLED IN THIS OU');
8200: end if;
8201: Return;
8202: END IF;
8203:

Line 8204: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8200: end if;
8201: Return;
8202: END IF;
8203:
8204: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8205: pa_funds_control_pkg.log_message(p_msg_token1 => 'TIEBACK_FAILED_ACCT_STATUS : Start ');
8206: End if;
8207:
8208: IF pa_budget_fund_pkg.g_processing_mode IN ('YEAR_END','CHECK_FUNDS','BASELINE') THEN

Line 8205: pa_funds_control_pkg.log_message(p_msg_token1 => 'TIEBACK_FAILED_ACCT_STATUS : Start ');

8201: Return;
8202: END IF;
8203:
8204: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8205: pa_funds_control_pkg.log_message(p_msg_token1 => 'TIEBACK_FAILED_ACCT_STATUS : Start ');
8206: End if;
8207:
8208: IF pa_budget_fund_pkg.g_processing_mode IN ('YEAR_END','CHECK_FUNDS','BASELINE') THEN
8209: RETURN;

Line 8212: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8208: IF pa_budget_fund_pkg.g_processing_mode IN ('YEAR_END','CHECK_FUNDS','BASELINE') THEN
8209: RETURN;
8210: END IF;
8211:
8212: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8213: FOR i IN C_PRINT_EVENT_STATUS LOOP
8214: pa_funds_control_pkg.log_message(p_msg_token1 => 'TIEBACK_FAILED_ACCT_STATUS : Result Code of event_id '||i.event_id||' = '||i.result_code);
8215: END LOOP;
8216: End if;

Line 8214: pa_funds_control_pkg.log_message(p_msg_token1 => 'TIEBACK_FAILED_ACCT_STATUS : Result Code of event_id '||i.event_id||' = '||i.result_code);

8210: END IF;
8211:
8212: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8213: FOR i IN C_PRINT_EVENT_STATUS LOOP
8214: pa_funds_control_pkg.log_message(p_msg_token1 => 'TIEBACK_FAILED_ACCT_STATUS : Result Code of event_id '||i.event_id||' = '||i.result_code);
8215: END LOOP;
8216: End if;
8217:
8218:

Line 8237: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8233: (SELECT event_id
8234: FROM PSA_BC_XLA_EVENTS_GT
8235: WHERE upper(result_code) in ('XLA_ERROR','FATAL','XLA_UNPROCESSED','XLA_NO_JOURNAL'));
8236:
8237: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8238: pa_funds_control_pkg.log_message(p_msg_token1 => 'TIEBACK_FAILED_ACCT_STATUS : End ');
8239: End if;
8240:
8241: END TIEBACK_FAILED_ACCT_STATUS;

Line 8238: pa_funds_control_pkg.log_message(p_msg_token1 => 'TIEBACK_FAILED_ACCT_STATUS : End ');

8234: FROM PSA_BC_XLA_EVENTS_GT
8235: WHERE upper(result_code) in ('XLA_ERROR','FATAL','XLA_UNPROCESSED','XLA_NO_JOURNAL'));
8236:
8237: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8238: pa_funds_control_pkg.log_message(p_msg_token1 => 'TIEBACK_FAILED_ACCT_STATUS : End ');
8239: End if;
8240:
8241: END TIEBACK_FAILED_ACCT_STATUS;
8242:

Line 8479: PA_DEBUG.init_err_stack ('PA_FUNDS_CONTROL_PKG1.INTERFACE_TBC_BTC_COMT_UPDATE');

8475:
8476: --- Initialize the error statck
8477: x_result_code := 'Success';
8478:
8479: PA_DEBUG.init_err_stack ('PA_FUNDS_CONTROL_PKG1.INTERFACE_TBC_BTC_COMT_UPDATE');
8480:
8481:
8482: fnd_profile.get('PA_DEBUG_MODE',PA_FUNDS_CONTROL_PKG.g_debug_mode);
8483: PA_FUNDS_CONTROL_PKG.g_debug_mode := NVL(PA_FUNDS_CONTROL_PKG.g_debug_mode, 'N');

Line 8482: fnd_profile.get('PA_DEBUG_MODE',PA_FUNDS_CONTROL_PKG.g_debug_mode);

8478:
8479: PA_DEBUG.init_err_stack ('PA_FUNDS_CONTROL_PKG1.INTERFACE_TBC_BTC_COMT_UPDATE');
8480:
8481:
8482: fnd_profile.get('PA_DEBUG_MODE',PA_FUNDS_CONTROL_PKG.g_debug_mode);
8483: PA_FUNDS_CONTROL_PKG.g_debug_mode := NVL(PA_FUNDS_CONTROL_PKG.g_debug_mode, 'N');
8484:
8485: PA_DEBUG.SET_PROCESS( x_process => 'PLSQL'
8486: ,x_write_file => 'LOG'

Line 8483: PA_FUNDS_CONTROL_PKG.g_debug_mode := NVL(PA_FUNDS_CONTROL_PKG.g_debug_mode, 'N');

8479: PA_DEBUG.init_err_stack ('PA_FUNDS_CONTROL_PKG1.INTERFACE_TBC_BTC_COMT_UPDATE');
8480:
8481:
8482: fnd_profile.get('PA_DEBUG_MODE',PA_FUNDS_CONTROL_PKG.g_debug_mode);
8483: PA_FUNDS_CONTROL_PKG.g_debug_mode := NVL(PA_FUNDS_CONTROL_PKG.g_debug_mode, 'N');
8484:
8485: PA_DEBUG.SET_PROCESS( x_process => 'PLSQL'
8486: ,x_write_file => 'LOG'
8487: ,x_debug_mode => PA_FUNDS_CONTROL_PKG.g_debug_mode);

Line 8487: ,x_debug_mode => PA_FUNDS_CONTROL_PKG.g_debug_mode);

8483: PA_FUNDS_CONTROL_PKG.g_debug_mode := NVL(PA_FUNDS_CONTROL_PKG.g_debug_mode, 'N');
8484:
8485: PA_DEBUG.SET_PROCESS( x_process => 'PLSQL'
8486: ,x_write_file => 'LOG'
8487: ,x_debug_mode => PA_FUNDS_CONTROL_PKG.g_debug_mode);
8488:
8489: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8490: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : In start ');
8491: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE: p_calling_module = '||p_calling_module);

Line 8489: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8485: PA_DEBUG.SET_PROCESS( x_process => 'PLSQL'
8486: ,x_write_file => 'LOG'
8487: ,x_debug_mode => PA_FUNDS_CONTROL_PKG.g_debug_mode);
8488:
8489: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8490: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : In start ');
8491: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE: p_calling_module = '||p_calling_module);
8492: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : P_request_id = '||P_request_id);
8493: End if;

Line 8490: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : In start ');

8486: ,x_write_file => 'LOG'
8487: ,x_debug_mode => PA_FUNDS_CONTROL_PKG.g_debug_mode);
8488:
8489: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8490: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : In start ');
8491: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE: p_calling_module = '||p_calling_module);
8492: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : P_request_id = '||P_request_id);
8493: End if;
8494:

Line 8491: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE: p_calling_module = '||p_calling_module);

8487: ,x_debug_mode => PA_FUNDS_CONTROL_PKG.g_debug_mode);
8488:
8489: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8490: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : In start ');
8491: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE: p_calling_module = '||p_calling_module);
8492: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : P_request_id = '||P_request_id);
8493: End if;
8494:
8495: -----------------------------------------------------------------------------------+

Line 8492: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : P_request_id = '||P_request_id);

8488:
8489: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8490: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : In start ');
8491: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE: p_calling_module = '||p_calling_module);
8492: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : P_request_id = '||P_request_id);
8493: End if;
8494:
8495: -----------------------------------------------------------------------------------+
8496: -- Invoke the Sweeper process to sweep all the encumbrance etries

Line 8505: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8501: X_Error_Message_Code => l_Msg_Data
8502: );
8503:
8504: IF l_Return_Status <> FND_API.G_RET_STS_SUCCESS THEN
8505: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8506: pa_funds_control_pkg.log_message(p_msg_token1 => 'Error occured while running sweeper process PA_Sweeper.Update_Act_Enc_Balance');
8507: pa_funds_control_pkg.log_message(p_msg_token1 => 'X_Error_Message_Code:'||l_Msg_Data);
8508: END IF;
8509: x_result_code := 'Error';

Line 8506: pa_funds_control_pkg.log_message(p_msg_token1 => 'Error occured while running sweeper process PA_Sweeper.Update_Act_Enc_Balance');

8502: );
8503:
8504: IF l_Return_Status <> FND_API.G_RET_STS_SUCCESS THEN
8505: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8506: pa_funds_control_pkg.log_message(p_msg_token1 => 'Error occured while running sweeper process PA_Sweeper.Update_Act_Enc_Balance');
8507: pa_funds_control_pkg.log_message(p_msg_token1 => 'X_Error_Message_Code:'||l_Msg_Data);
8508: END IF;
8509: x_result_code := 'Error';
8510: RETURN;

Line 8507: pa_funds_control_pkg.log_message(p_msg_token1 => 'X_Error_Message_Code:'||l_Msg_Data);

8503:
8504: IF l_Return_Status <> FND_API.G_RET_STS_SUCCESS THEN
8505: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8506: pa_funds_control_pkg.log_message(p_msg_token1 => 'Error occured while running sweeper process PA_Sweeper.Update_Act_Enc_Balance');
8507: pa_funds_control_pkg.log_message(p_msg_token1 => 'X_Error_Message_Code:'||l_Msg_Data);
8508: END IF;
8509: x_result_code := 'Error';
8510: RETURN;
8511: END IF;

Line 8513: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8509: x_result_code := 'Error';
8510: RETURN;
8511: END IF;
8512:
8513: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8514: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : Opening cursor CDL_CUR ');
8515: End if;
8516:
8517: OPEN CDL_CUR ;

Line 8514: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : Opening cursor CDL_CUR ');

8510: RETURN;
8511: END IF;
8512:
8513: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8514: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : Opening cursor CDL_CUR ');
8515: End if;
8516:
8517: OPEN CDL_CUR ;
8518: FETCH CDL_CUR BULK COLLECT INTO

Line 8577: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8573: CLOSE CDL_CUR;
8574:
8575: l_count_of_records := l_Exp_Item_Id_tbl.count;
8576:
8577: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8578: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : NUmber of records fethced '||l_count_of_records);
8579: End if;
8580:
8581: IF l_count_of_records <> 0 THEN

Line 8578: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : NUmber of records fethced '||l_count_of_records);

8574:
8575: l_count_of_records := l_Exp_Item_Id_tbl.count;
8576:
8577: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8578: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : NUmber of records fethced '||l_count_of_records);
8579: End if;
8580:
8581: IF l_count_of_records <> 0 THEN
8582:

Line 8598: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8594: FOR cdl_rec in 1..l_count_of_records LOOP
8595:
8596: IF l_budget_line_id_tbl(cdl_rec) IS NULL OR l_budget_version_id_tbl(cdl_rec) is NULL THEN
8597:
8598: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8599: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : Data interfaced prior R12');
8600: End if;
8601:
8602: OPEN c_bc_com_details (l_doc_header_id_tbl(cdl_rec),

Line 8599: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : Data interfaced prior R12');

8595:
8596: IF l_budget_line_id_tbl(cdl_rec) IS NULL OR l_budget_version_id_tbl(cdl_rec) is NULL THEN
8597:
8598: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8599: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : Data interfaced prior R12');
8600: End if;
8601:
8602: OPEN c_bc_com_details (l_doc_header_id_tbl(cdl_rec),
8603: l_doc_line_number_tbl(cdl_rec),

Line 8623: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8619: l_bc_exp_item_id_tbl,
8620: l_bc_transfer_sts_code_tbl;
8621: CLOSE c_bc_com_details;
8622:
8623: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8624: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : # of records fetched from CDL'||l_bc_commitment_id_tbl.count);
8625: End if;
8626:
8627: l_budget_line_id := NULL;

Line 8624: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : # of records fetched from CDL'||l_bc_commitment_id_tbl.count);

8620: l_bc_transfer_sts_code_tbl;
8621: CLOSE c_bc_com_details;
8622:
8623: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8624: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : # of records fetched from CDL'||l_bc_commitment_id_tbl.count);
8625: End if;
8626:
8627: l_budget_line_id := NULL;
8628:

Line 8642: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8638: EXIT;
8639: END IF;
8640: END LOOP;
8641:
8642: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8643: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : budget line id on bc comt'||l_budget_line_id);
8644: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : Before calling PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID' );
8645: End if;
8646:

Line 8643: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : budget line id on bc comt'||l_budget_line_id);

8639: END IF;
8640: END LOOP;
8641:
8642: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8643: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : budget line id on bc comt'||l_budget_line_id);
8644: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : Before calling PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID' );
8645: End if;
8646:
8647: IF l_budget_line_id IS NULL THEN

Line 8644: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : Before calling PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID' );

8640: END LOOP;
8641:
8642: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8643: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : budget line id on bc comt'||l_budget_line_id);
8644: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : Before calling PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID' );
8645: End if;
8646:
8647: IF l_budget_line_id IS NULL THEN
8648:

Line 8663: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8659: x_budget_line_id => l_budget_line_id,
8660: x_return_status => l_return_status,
8661: x_error_message_code => l_error_message_code);
8662:
8663: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8664: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : After calling PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID' );
8665: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : derived budget line id on bc comt'||l_budget_line_id);
8666: End if;
8667:

Line 8664: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : After calling PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID' );

8660: x_return_status => l_return_status,
8661: x_error_message_code => l_error_message_code);
8662:
8663: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8664: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : After calling PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID' );
8665: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : derived budget line id on bc comt'||l_budget_line_id);
8666: End if;
8667:
8668: END IF;

Line 8665: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : derived budget line id on bc comt'||l_budget_line_id);

8661: x_error_message_code => l_error_message_code);
8662:
8663: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8664: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : After calling PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID' );
8665: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : derived budget line id on bc comt'||l_budget_line_id);
8666: End if;
8667:
8668: END IF;
8669:

Line 8676: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8672: SET budget_line_id = l_budget_line_id
8673: WHERE bc_commitment_id = l_bc_commitment_id_tbl(i)
8674: AND budget_line_id IS NULL;
8675:
8676: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8677: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : # of bc comt records updated'||SQL%ROWCOUNT);
8678: End if;
8679:
8680: -- Check if Project/task on CDL has ben modified i.e. different from the one stamped

Line 8677: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : # of bc comt records updated'||SQL%ROWCOUNT);

8673: WHERE bc_commitment_id = l_bc_commitment_id_tbl(i)
8674: AND budget_line_id IS NULL;
8675:
8676: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8677: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : # of bc comt records updated'||SQL%ROWCOUNT);
8678: End if;
8679:
8680: -- Check if Project/task on CDL has ben modified i.e. different from the one stamped
8681: -- on bc commitments.In this case rederive budget version details and then

Line 8697: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8693: l_cdl_budget_version_id,
8694: l_cdl_entry_level_code;
8695: CLOSE c_budget_details;
8696:
8697: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8698: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : Before calling PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID' );
8699: End if;
8700:
8701: PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID (

Line 8698: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : Before calling PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID' );

8694: l_cdl_entry_level_code;
8695: CLOSE c_budget_details;
8696:
8697: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8698: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : Before calling PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID' );
8699: End if;
8700:
8701: PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID (
8702: p_project_id => l_project_id_tbl(cdl_rec),

Line 8714: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8710: x_budget_line_id => l_budget_line_id,
8711: x_return_status => l_return_status,
8712: x_error_message_code => l_error_message_code);
8713:
8714: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8715: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : After calling PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID' );
8716: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : derived budget line id on cdl'||l_budget_line_id);
8717: End if;
8718: END IF;

Line 8715: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : After calling PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID' );

8711: x_return_status => l_return_status,
8712: x_error_message_code => l_error_message_code);
8713:
8714: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8715: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : After calling PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID' );
8716: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : derived budget line id on cdl'||l_budget_line_id);
8717: End if;
8718: END IF;
8719:

Line 8716: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : derived budget line id on cdl'||l_budget_line_id);

8712: x_error_message_code => l_error_message_code);
8713:
8714: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8715: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : After calling PA_FUNDS_CONTROL_UTILS.Get_Budget_CCID' );
8716: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : derived budget line id on cdl'||l_budget_line_id);
8717: End if;
8718: END IF;
8719:
8720: UPDATE pa_cost_distribution_lines_all cdl

Line 8725: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8721: SET cdl.budget_version_id = NVL(l_cdl_budget_version_id,l_bc_budget_version_id_tbl(1)),
8722: cdl.budget_line_id = l_budget_line_id
8723: WHERE cdl.rowid = l_cdl_rowid_tbl(cdl_rec);
8724:
8725: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8726: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : # of cdl records updated'||SQL%ROWCOUNT);
8727: End if;
8728:
8729: FORALL i in 1..l_bc_commitment_id_tbl.count

Line 8726: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : # of cdl records updated'||SQL%ROWCOUNT);

8722: cdl.budget_line_id = l_budget_line_id
8723: WHERE cdl.rowid = l_cdl_rowid_tbl(cdl_rec);
8724:
8725: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8726: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : # of cdl records updated'||SQL%ROWCOUNT);
8727: End if;
8728:
8729: FORALL i in 1..l_bc_commitment_id_tbl.count
8730: UPDATE pa_bc_commitments

Line 8736: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8732: WHERE bc_commitment_id = l_bc_commitment_id_tbl(i)
8733: AND exp_item_id IS NULL
8734: AND transfer_status_code in ('P','R','X');
8735:
8736: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8737: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : # of bc comt records updated'||SQL%ROWCOUNT);
8738: End if;
8739:
8740: END IF; --IF l_budget_line_id_tbl(cdl_rec) IS NULL OR l_budget_version_id_tbl(cdl_rec) is NULL THEN

Line 8737: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : # of bc comt records updated'||SQL%ROWCOUNT);

8733: AND exp_item_id IS NULL
8734: AND transfer_status_code in ('P','R','X');
8735:
8736: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8737: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : # of bc comt records updated'||SQL%ROWCOUNT);
8738: End if;
8739:
8740: END IF; --IF l_budget_line_id_tbl(cdl_rec) IS NULL OR l_budget_version_id_tbl(cdl_rec) is NULL THEN
8741: END LOOP; --FOR cdl_rec in 1..l_count_of_records LOOP

Line 8744: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8740: END IF; --IF l_budget_line_id_tbl(cdl_rec) IS NULL OR l_budget_version_id_tbl(cdl_rec) is NULL THEN
8741: END LOOP; --FOR cdl_rec in 1..l_count_of_records LOOP
8742: -- End of logic added for Bug 5680236
8743:
8744: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8745: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : updating eligible AP commitments for liq encumbrance ');
8746: End if;
8747:
8748: FORALL i in 1..l_count_of_records

Line 8745: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : updating eligible AP commitments for liq encumbrance ');

8741: END LOOP; --FOR cdl_rec in 1..l_count_of_records LOOP
8742: -- End of logic added for Bug 5680236
8743:
8744: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8745: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : updating eligible AP commitments for liq encumbrance ');
8746: End if;
8747:
8748: FORALL i in 1..l_count_of_records
8749: UPDATE pa_bc_commitments bc_cm

Line 8849: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8845: AND bc_cm.document_type = 'AP'
8846: AND bc_cm.burden_cost_flag = 'R'
8847: AND ((bc_cm.parent_bc_packet_id IS NOT NULL AND l_cdl_line_type_tbl(i) ='R') OR l_cdl_line_type_tbl(i) ='D');
8848:
8849: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8850: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE :Number of AP commitments updated '||SQL%ROWCOUNT);
8851: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : updating eligible AP commitments for liq encumbrance ');
8852: End if;
8853:

Line 8850: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE :Number of AP commitments updated '||SQL%ROWCOUNT);

8846: AND bc_cm.burden_cost_flag = 'R'
8847: AND ((bc_cm.parent_bc_packet_id IS NOT NULL AND l_cdl_line_type_tbl(i) ='R') OR l_cdl_line_type_tbl(i) ='D');
8848:
8849: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8850: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE :Number of AP commitments updated '||SQL%ROWCOUNT);
8851: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : updating eligible AP commitments for liq encumbrance ');
8852: End if;
8853:
8854: FORALL i in 1..l_count_of_records

Line 8851: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : updating eligible AP commitments for liq encumbrance ');

8847: AND ((bc_cm.parent_bc_packet_id IS NOT NULL AND l_cdl_line_type_tbl(i) ='R') OR l_cdl_line_type_tbl(i) ='D');
8848:
8849: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8850: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE :Number of AP commitments updated '||SQL%ROWCOUNT);
8851: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : updating eligible AP commitments for liq encumbrance ');
8852: End if;
8853:
8854: FORALL i in 1..l_count_of_records
8855: UPDATE pa_bc_commitments bc_cm

Line 8963: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8959: and bc_cm.document_type = 'PO'
8960: and bc_cm.burden_cost_flag = 'R'
8961: and ((bc_cm.parent_bc_packet_id is not null AND l_cdl_line_type_tbl(i) ='R') OR l_cdl_line_type_tbl(i) ='D');
8962:
8963: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8964: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE :Number of PO commitments updated '||SQL%ROWCOUNT);
8965: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : End');
8966: End if;
8967:

Line 8964: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE :Number of PO commitments updated '||SQL%ROWCOUNT);

8960: and bc_cm.burden_cost_flag = 'R'
8961: and ((bc_cm.parent_bc_packet_id is not null AND l_cdl_line_type_tbl(i) ='R') OR l_cdl_line_type_tbl(i) ='D');
8962:
8963: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8964: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE :Number of PO commitments updated '||SQL%ROWCOUNT);
8965: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : End');
8966: End if;
8967:
8968: END IF; --IF l_count_of_records <> 0 THEN

Line 8965: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : End');

8961: and ((bc_cm.parent_bc_packet_id is not null AND l_cdl_line_type_tbl(i) ='R') OR l_cdl_line_type_tbl(i) ='D');
8962:
8963: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8964: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE :Number of PO commitments updated '||SQL%ROWCOUNT);
8965: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE : End');
8966: End if;
8967:
8968: END IF; --IF l_count_of_records <> 0 THEN
8969:

Line 8972: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8968: END IF; --IF l_count_of_records <> 0 THEN
8969:
8970: EXCEPTION
8971: WHEN OTHERS THEN
8972: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8973: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE :Exception '||SQLERRM);
8974: x_result_code := 'Error';
8975: End if;
8976:

Line 8973: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE :Exception '||SQLERRM);

8969:
8970: EXCEPTION
8971: WHEN OTHERS THEN
8972: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8973: pa_funds_control_pkg.log_message(p_msg_token1 => 'INTERFACE_TBC_BTC_COMT_UPDATE :Exception '||SQLERRM);
8974: x_result_code := 'Error';
8975: End if;
8976:
8977: END INTERFACE_TBC_BTC_COMT_UPDATE;

Line 8996: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN

8992: l_document_distribution_id pa_bc_packets.document_distribution_id%type;
8993: l_document_type pa_bc_packets.document_type%type;
8994: l_ratio pa_bc_packets.accounted_dr%type;
8995: Begin
8996: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8997: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside get_ratio');
8998: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of p_mode is= '||p_mode);
8999: End if;
9000:

Line 8997: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside get_ratio');

8993: l_document_type pa_bc_packets.document_type%type;
8994: l_ratio pa_bc_packets.accounted_dr%type;
8995: Begin
8996: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8997: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside get_ratio');
8998: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of p_mode is= '||p_mode);
8999: End if;
9000:
9001: If (p_document_header_id <> nvl(l_document_header_id,-1) and

Line 8998: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of p_mode is= '||p_mode);

8994: l_ratio pa_bc_packets.accounted_dr%type;
8995: Begin
8996: IF pa_funds_control_pkg.g_debug_mode = 'Y' THEN
8997: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside get_ratio');
8998: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of p_mode is= '||p_mode);
8999: End if;
9000:
9001: If (p_document_header_id <> nvl(l_document_header_id,-1) and
9002: p_document_distribution_id <> nvl(l_document_distribution_id,-1) and

Line 9201: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside populate_plsql_tabs_CBC');

9197: PA_DEBUG.SET_PROCESS( x_process => 'PLSQL'
9198: ,x_write_file => 'LOG'
9199: ,x_debug_mode => l_debug_mode
9200: );
9201: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside populate_plsql_tabs_CBC');
9202: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of p_calling_module is='||p_calling_module);
9203:
9204: -- Initialize the pl/sql tabs
9205: init_plsql_tabs;

Line 9202: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of p_calling_module is='||p_calling_module);

9198: ,x_write_file => 'LOG'
9199: ,x_debug_mode => l_debug_mode
9200: );
9201: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside populate_plsql_tabs_CBC');
9202: pa_funds_control_pkg.log_message(p_msg_token1 => 'Value of p_calling_module is='||p_calling_module);
9203:
9204: -- Initialize the pl/sql tabs
9205: init_plsql_tabs;
9206:

Line 9240: pa_funds_control_pkg.log_message

9236: g_tab_pkt_reference3;
9237:
9238:
9239: CLOSE cur_gl_pkts;
9240: pa_funds_control_pkg.log_message
9241: (p_msg_token1 => 'Number of rows copied to plsql tabs :'||g_tab_rowid.count);
9242: If g_tab_rowid.EXISTS(1) then
9243:
9244: pa_funds_control_pkg.log_message

Line 9244: pa_funds_control_pkg.log_message

9240: pa_funds_control_pkg.log_message
9241: (p_msg_token1 => 'Number of rows copied to plsql tabs :'||g_tab_rowid.count);
9242: If g_tab_rowid.EXISTS(1) then
9243:
9244: pa_funds_control_pkg.log_message
9245: (p_msg_token1 => 'calling pa_multi_currency api to initialize the currency ');
9246:
9247: -- initialize the accounting currency code,
9248: pa_multi_currency.init;

Line 9254: pa_funds_control_pkg.log_message

9250: --Get the accounting currency into a global variable.
9251: g_acct_currency_code := pa_multi_currency.g_accounting_currency_code;
9252:
9253: --insert these records into pa bc packets
9254: pa_funds_control_pkg.log_message
9255: (p_msg_token1 => 'calling create pkt lines api');
9256:
9257: create_CBC_pkt_lines
9258: (p_calling_module => p_calling_module

Line 9268: pa_funds_control_pkg.log_message

9264:
9265: ELSIF p_calling_module = 'CBC' and p_reference2 is NOT NULL then
9266:
9267:
9268: pa_funds_control_pkg.log_message
9269: (p_msg_token1 => 'calling pa_multi_currency api to initialize the currency ');
9270:
9271: -- initialize the accounting currency code,
9272: pa_multi_currency.init;

Line 9278: pa_funds_control_pkg.log_message

9274: --Get the accounting currency into a global variable.
9275: g_acct_currency_code := pa_multi_currency.g_accounting_currency_code;
9276:
9277: --insert these records into pa bc packets
9278: pa_funds_control_pkg.log_message
9279: (p_msg_token1 => 'calling create pkt lines api');
9280:
9281: create_CBC_pkt_lines
9282: (p_calling_module => p_calling_module

Line 9336: pa_funds_control_pkg.check_bdn_on_sep_item(igc.project_id) burden_method_code,

9332: 'I' status_code,
9333: pa_funds_control_utils.get_fnd_reqd_flag(pp.project_id ,'STD') fck_reqd_flag,
9334: null parent_bc_packet_id,
9335: NULL main_or_backing_code,
9336: pa_funds_control_pkg.check_bdn_on_sep_item(igc.project_id) burden_method_code,
9337: NULL budget_line_id,
9338: NULL source_event_id,
9339: NULL distribution_type,
9340: NULL po_release_Id,

Line 9396: pa_funds_control_pkg.check_bdn_on_sep_item(igc.project_id) burden_method_code,

9392: igci.cc_acct_line_id line_id,
9393: NULL event_id,
9394: igchead.vendor_id,
9395: NULL main_or_backing_code,
9396: pa_funds_control_pkg.check_bdn_on_sep_item(igc.project_id) burden_method_code,
9397: NULL budget_line_id,
9398: igci.event_id source_event_id,
9399: igc.CC_ACCT_ENCMBRNC_DATE gl_date,
9400: NULL distribution_type,

Line 9464: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside create_bc_pkt api calling module ['

9460: );
9461: BEGIN
9462:
9463:
9464: pa_funds_control_pkg.log_message(p_msg_token1 => 'Inside create_bc_pkt api calling module ['
9465: ||p_calling_module||'] g_tab_rowid.count['||g_tab_rowid.count||']' );
9466:
9467: IF p_calling_module = 'GL' and g_tab_rowid.EXISTS(1) then
9468:

Line 9471: pa_funds_control_pkg.log_message(p_msg_token1 => 'inside for loop l_counter'||l_counter);

9467: IF p_calling_module = 'GL' and g_tab_rowid.EXISTS(1) then
9468:
9469: FOR i IN g_tab_rowid.FIRST ..g_tab_rowid.LAST LOOP
9470: l_counter := l_counter + 1;
9471: pa_funds_control_pkg.log_message(p_msg_token1 => 'inside for loop l_counter'||l_counter);
9472:
9473: IF g_tab_doc_type(i) in ('CC_C_PAY','CC_P_PAY') then
9474: pa_funds_control_pkg.log_message
9475: (p_msg_token1 =>'doc type is '||g_tab_doc_type(i));

Line 9474: pa_funds_control_pkg.log_message

9470: l_counter := l_counter + 1;
9471: pa_funds_control_pkg.log_message(p_msg_token1 => 'inside for loop l_counter'||l_counter);
9472:
9473: IF g_tab_doc_type(i) in ('CC_C_PAY','CC_P_PAY') then
9474: pa_funds_control_pkg.log_message
9475: (p_msg_token1 =>'doc type is '||g_tab_doc_type(i));
9476: g_tab_p_bc_packet_id(i) := null;
9477: OPEN cur_igc_details(g_tab_reference1(i),
9478: g_tab_reference2(i),

Line 9511: pa_funds_control_pkg.log_message(p_msg_token1 => 'fetch cursor');

9507: g_tab_enc_type_id(i),
9508: g_tab_vendor_id(i),
9509: g_tab_bc_packet_id(i);
9510:
9511: pa_funds_control_pkg.log_message(p_msg_token1 => 'fetch cursor');
9512: g_tab_p_bc_packet_id(i) := null;
9513: g_tab_doc_line_id(i) := NULL;
9514: /* added for bug fix: 3086398 */
9515: IF cur_igc_details%found then

Line 9533: pa_funds_control_pkg.log_message(p_msg_token1 => 'igc cursor Bdgt_Version['

9529: fnd_message.set_name('PA','PA_BC_NO_BASELINE_BGT');
9530: PSA_BC_XLA_PVT.psa_xla_error('PA_BC_NO_BASELINE_BGT',g_tab_source_event_id(i));
9531:
9532: End If;
9533: pa_funds_control_pkg.log_message(p_msg_token1 => 'igc cursor Bdgt_Version['
9534: ||g_tab_budget_version_id(i)||']');
9535: /* end of bug fix:3086398 */
9536: Elsif cur_igc_details%NOTfound then
9537: pa_funds_control_pkg.log_message(p_msg_token1 => 'cur not found');

Line 9537: pa_funds_control_pkg.log_message(p_msg_token1 => 'cur not found');

9533: pa_funds_control_pkg.log_message(p_msg_token1 => 'igc cursor Bdgt_Version['
9534: ||g_tab_budget_version_id(i)||']');
9535: /* end of bug fix:3086398 */
9536: Elsif cur_igc_details%NOTfound then
9537: pa_funds_control_pkg.log_message(p_msg_token1 => 'cur not found');
9538: assign_plsql_tabs(p_counter => l_counter,
9539: p_fck_reqd_flag =>null);
9540: End if;
9541:

Line 9548: /* pa_funds_control_pkg.log_message(p_msg_token1 => 'calling Load_pkt API');

9544: END IF;
9545:
9546: END LOOP;
9547:
9548: /* pa_funds_control_pkg.log_message(p_msg_token1 => 'calling Load_pkt API');
9549: If g_tab_rowid.EXISTS(1) then
9550: Load_pkts(p_packet_id, p_mode);
9551: End if;*/
9552:

Line 9553: pa_funds_control_pkg.log_message(p_msg_token1 => 'end of create_pkt_lines api');

9549: If g_tab_rowid.EXISTS(1) then
9550: Load_pkts(p_packet_id, p_mode);
9551: End if;*/
9552:
9553: pa_funds_control_pkg.log_message(p_msg_token1 => 'end of create_pkt_lines api');
9554:
9555: ELSIF p_calling_module = 'CBC' and p_reference1 is not null and p_reference2 is NOT NULL then
9556:
9557: pa_funds_control_pkg.log_message(p_msg_token1 => 'calling module ['||p_calling_module||

Line 9557: pa_funds_control_pkg.log_message(p_msg_token1 => 'calling module ['||p_calling_module||

9553: pa_funds_control_pkg.log_message(p_msg_token1 => 'end of create_pkt_lines api');
9554:
9555: ELSIF p_calling_module = 'CBC' and p_reference1 is not null and p_reference2 is NOT NULL then
9556:
9557: pa_funds_control_pkg.log_message(p_msg_token1 => 'calling module ['||p_calling_module||
9558: ']p_reference1 ['||p_reference1|| ']p_reference2 ['||p_reference2|| ']opening cursor cur_cbc_details');
9559:
9560: OPEN cur_cbc_details(p_reference1,p_reference2);
9561: FETCH cur_cbc_details BULK COLLECT INTO

Line 9633: pa_funds_control_pkg.log_message(p_msg_token1 =>'cur found calling Load_pkt API');

9629:
9630: End If;
9631: END LOOP;
9632: /* end of bug fix:3086398 */
9633: pa_funds_control_pkg.log_message(p_msg_token1 =>'cur found calling Load_pkt API');
9634: Load_pkts(p_packet_id, p_mode, 'CBC');
9635:
9636:
9637: Else

Line 9638: pa_funds_control_pkg.log_message(p_msg_token1 => ' cur_cbc_details not found');

9634: Load_pkts(p_packet_id, p_mode, 'CBC');
9635:
9636:
9637: Else
9638: pa_funds_control_pkg.log_message(p_msg_token1 => ' cur_cbc_details not found');
9639: null;
9640: End if;
9641: pa_funds_control_pkg.log_message(p_msg_token1 => 'end of create_pkt_lines api');
9642:

Line 9641: pa_funds_control_pkg.log_message(p_msg_token1 => 'end of create_pkt_lines api');

9637: Else
9638: pa_funds_control_pkg.log_message(p_msg_token1 => ' cur_cbc_details not found');
9639: null;
9640: End if;
9641: pa_funds_control_pkg.log_message(p_msg_token1 => 'end of create_pkt_lines api');
9642:
9643: END IF;
9644:
9645: END create_CBC_pkt_lines;

Line 9682: END PA_FUNDS_CONTROL_PKG1;

9678: raise;
9679:
9680: END assign_plsql_tabs;
9681:
9682: END PA_FUNDS_CONTROL_PKG1;