DBA Data[Home] [Help]

APPS.IGS_FI_PRC_IMPCLC_ANC_CHGS dependencies on FND_FILE

Line 545: FND_FILE.Put_Line(FND_FILE.Log,FND_MESSAGE.Get);

541: l_rec_installed := IGS_FI_GEN_005.finp_get_receivables_inst;
542: -- Logging the Paramteres in the Log File
543:
544: FND_MESSAGE.Set_Name('IGS','IGS_FI_ANC_LOG_PARM');
545: FND_FILE.Put_Line(FND_FILE.Log,FND_MESSAGE.Get);
546:
547: IF p_person_id IS NOT NULL THEN
548: l_person_number := Get_Person_Number(p_person_id);
549: END IF;

Line 557: fnd_file.put_line(fnd_file.log,fnd_message.get);

553: fnd_message.set_token('PARM_TYPE',igs_fi_gen_gl.get_lkp_meaning (p_v_lookup_type => 'IGS_FI_LOCKBOX',
554: p_v_lookup_code => 'PERSON')
555: );
556: fnd_message.set_token('PARM_CODE',l_person_number);
557: fnd_file.put_line(fnd_file.log,fnd_message.get);
558:
559: fnd_message.set_name('IGS','IGS_FI_IMP_CHGS_PARAMETER');
560: fnd_message.set_token('PARM_TYPE',igs_fi_gen_gl.get_lkp_meaning (p_v_lookup_type => 'IGS_FI_LOCKBOX',
561: p_v_lookup_code => 'PERSON_ID_TYPE')

Line 564: fnd_file.put_line(fnd_file.log,fnd_message.get);

560: fnd_message.set_token('PARM_TYPE',igs_fi_gen_gl.get_lkp_meaning (p_v_lookup_type => 'IGS_FI_LOCKBOX',
561: p_v_lookup_code => 'PERSON_ID_TYPE')
562: );
563: fnd_message.set_token('PARM_CODE',p_person_id_type);
564: fnd_file.put_line(fnd_file.log,fnd_message.get);
565:
566: fnd_message.set_name('IGS','IGS_FI_IMP_CHGS_PARAMETER');
567: fnd_message.set_token('PARM_TYPE',igs_fi_gen_gl.get_lkp_meaning (p_v_lookup_type => 'IGS_FI_LOCKBOX',
568: p_v_lookup_code => 'ALTERNATE_PERSON_ID')

Line 571: fnd_file.put_line(fnd_file.log,fnd_message.get);

567: fnd_message.set_token('PARM_TYPE',igs_fi_gen_gl.get_lkp_meaning (p_v_lookup_type => 'IGS_FI_LOCKBOX',
568: p_v_lookup_code => 'ALTERNATE_PERSON_ID')
569: );
570: fnd_message.set_token('PARM_CODE',p_api_person_id);
571: fnd_file.put_line(fnd_file.log,fnd_message.get);
572:
573: fnd_message.set_name('IGS','IGS_FI_IMP_CHGS_PARAMETER');
574: fnd_message.set_token('PARM_TYPE',igs_fi_gen_gl.get_lkp_meaning (p_v_lookup_type => 'IGS_FI_LOCKBOX',
575: p_v_lookup_code => 'FEE_TYPE')

Line 578: fnd_file.put_line(fnd_file.log,fnd_message.get);

574: fnd_message.set_token('PARM_TYPE',igs_fi_gen_gl.get_lkp_meaning (p_v_lookup_type => 'IGS_FI_LOCKBOX',
575: p_v_lookup_code => 'FEE_TYPE')
576: );
577: fnd_message.set_token('PARM_CODE',p_fee_type);
578: fnd_file.put_line(fnd_file.log,fnd_message.get);
579:
580: fnd_message.set_name('IGS','IGS_FI_IMP_CHGS_PARAMETER');
581: fnd_message.set_token('PARM_TYPE',igs_fi_gen_gl.get_lkp_meaning (p_v_lookup_type => 'IGS_FI_LOCKBOX',
582: p_v_lookup_code => 'FEE_CAL_TYPE')

Line 585: fnd_file.put_line(fnd_file.log,fnd_message.get);

581: fnd_message.set_token('PARM_TYPE',igs_fi_gen_gl.get_lkp_meaning (p_v_lookup_type => 'IGS_FI_LOCKBOX',
582: p_v_lookup_code => 'FEE_CAL_TYPE')
583: );
584: fnd_message.set_token('PARM_CODE',p_fee_cal_type);
585: fnd_file.put_line(fnd_file.log,fnd_message.get);
586:
587: -- Get the value of "Manage Accounts" System Option value.
588: -- If this value is NULL then this process should error out.
589: igs_fi_com_rec_interface.chk_manage_account ( p_v_manage_acc => l_v_manage_accounts,

Line 593: fnd_file.put_line(fnd_file.log,fnd_message.get);

589: igs_fi_com_rec_interface.chk_manage_account ( p_v_manage_acc => l_v_manage_accounts,
590: p_v_message_name => l_v_message_name );
591: IF l_v_manage_accounts IS NULL THEN
592: fnd_message.set_name ( 'IGS', l_v_message_name );
593: fnd_file.put_line(fnd_file.log,fnd_message.get);
594: RAISE l_exception;
595: END IF;
596:
597: -- If the Person Id is not null then

Line 609: FND_FILE.Put_Line(FND_FILE.Log, l_message);

605: FND_MESSAGE.Set_Token('PERSON_ID', l_person_number);
606: FND_MESSAGE.Set_Token('PERS_ID_TYPE', p_person_id_type);
607: FND_MESSAGE.Set_Token('API_PERS_ID', p_api_person_id);
608: l_message := FND_MESSAGE.Get;
609: FND_FILE.Put_Line(FND_FILE.Log, l_message);
610: APP_EXCEPTION.Raise_Exception;
611: END IF;
612: ELSE
613:

Line 621: FND_FILE.Put_Line(FND_FILE.Log, l_message);

617: IF ((p_person_id_type IS NOT NULL) AND (p_api_person_id IS NULL)) THEN
618: FND_MESSAGE.Set_Name('IGS','IGS_FI_API_PERS_ID_NULL');
619: FND_MESSAGE.Set_Token('PERS_ID_TYPE', p_person_id_type);
620: l_message := FND_MESSAGE.Get;
621: FND_FILE.Put_Line(FND_FILE.Log, l_message);
622: APP_EXCEPTION.Raise_Exception;
623:
624: -- Else if the Person Id Type is NULL and the API Person Id is NOT NULL then
625: -- Log this as an error

Line 630: FND_FILE.Put_Line(FND_FILE.Log, l_message);

626: ELSIF ((p_person_id_type IS NULL) AND (p_api_person_id IS NOT NULL)) THEN
627: FND_MESSAGE.Set_Name('IGS', 'IGS_FI_PERS_ID_TYPE_NULL');
628: FND_MESSAGE.Set_Token('API_PERS_ID', p_api_person_id);
629: l_message := FND_MESSAGE.Get;
630: FND_FILE.Put_Line(FND_FILE.Log, l_message);
631: APP_EXCEPTION.Raise_Exception;
632: END IF;
633: END IF;
634:

Line 642: fnd_file.put_line(fnd_file.Log,fnd_message.get);

638: p_v_message_name => l_v_message_name
639: );
640: IF l_v_message_name IS NOT NULL THEN
641: fnd_message.set_name('IGS',l_v_message_name);
642: fnd_file.put_line(fnd_file.Log,fnd_message.get);
643: app_exception.raise_exception;
644: ELSE
645: l_v_local_currency := l_n_curr_cd;
646: END IF;

Line 679: fnd_file.new_line(fnd_file.log);

675:
676: l_person_number := Get_Person_Number(l_person_id);
677:
678: -- Log the record Details
679: fnd_file.new_line(fnd_file.log);
680: FND_MESSAGE.Set_name('IGS','IGS_FI_ANC_REC_DTLS');
681: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);
682:
683: FND_MESSAGE.Set_Name('IGS','IGS_FI_ANC_CHG_REC1');

Line 681: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);

677:
678: -- Log the record Details
679: fnd_file.new_line(fnd_file.log);
680: FND_MESSAGE.Set_name('IGS','IGS_FI_ANC_REC_DTLS');
681: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);
682:
683: FND_MESSAGE.Set_Name('IGS','IGS_FI_ANC_CHG_REC1');
684: FND_MESSAGE.Set_Token('TOKEN',l_person_number);
685: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);

Line 685: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);

681: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);
682:
683: FND_MESSAGE.Set_Name('IGS','IGS_FI_ANC_CHG_REC1');
684: FND_MESSAGE.Set_Token('TOKEN',l_person_number);
685: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);
686:
687: FND_MESSAGE.Set_Name('IGS','IGS_FI_ANC_CHG_REC2');
688: FND_MESSAGE.Set_Token('TOKEN', ancrec.fee_cal_type);
689: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);

Line 689: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);

685: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);
686:
687: FND_MESSAGE.Set_Name('IGS','IGS_FI_ANC_CHG_REC2');
688: FND_MESSAGE.Set_Token('TOKEN', ancrec.fee_cal_type);
689: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);
690:
691: FND_MESSAGE.Set_Name('IGS','IGS_FI_ANC_CHG_REC3');
692: FND_MESSAGE.Set_Token('TOKEN', ancrec.fee_type);
693: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);

Line 693: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);

689: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);
690:
691: FND_MESSAGE.Set_Name('IGS','IGS_FI_ANC_CHG_REC3');
692: FND_MESSAGE.Set_Token('TOKEN', ancrec.fee_type);
693: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);
694:
695: -- If the validation flag is set to N then
696: IF NVL(ancrec.validation_flag,'N') = 'N' THEN
697:

Line 709: fnd_file.put_line(fnd_file.log,l_msg);

705: p_err_msg_name => l_error_msg);
706: IF NOT l_validate THEN
707: fnd_message.set_name('IGS',l_error_msg);
708: l_msg := fnd_message.get;
709: fnd_file.put_line(fnd_file.log,l_msg);
710: ancrec.error_msg := l_msg;
711: ancrec.status := g_error;
712: END IF;
713:

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

742: l_validate := FALSE;
743: ancrec.status := g_error;
744: fnd_message.set_name('IGS','IGS_AD_INVALID_DESC_FLEX');
745: l_msg := fnd_message.get;
746: fnd_file.put_line(fnd_file.log,l_msg);
747: ancrec.error_msg := ancrec.error_msg||'.'||l_msg;
748: END IF;
749: END IF;
750:

Line 782: fnd_file.put_line(fnd_file.log,l_msg);

778: l_validate := FALSE;
779: ancrec.status := g_error;
780: fnd_message.set_name('IGS','IGS_FI_ANCRATE_NOT_FOUND');
781: l_msg := fnd_message.get;
782: fnd_file.put_line(fnd_file.log,l_msg);
783: ancrec.error_msg := ancrec.error_msg||'.'||l_msg;
784: END IF;
785:
786: IF l_validate THEN

Line 827: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);

823: l_impchgs_lines_id := NULL;
824:
825: FND_MESSAGE.Set_Name('IGS','IGS_FI_ANC_CHG_REC4');
826: FND_MESSAGE.Set_Token('TOKEN',to_char(l_ancillary_chg_rate));
827: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);
828:
829: -- Call the TBH for creating a record in the Import Charges Lines table
830:
831: -- Passed l_v_local_currency derived to the currency_cd field (part of enh bug 2584986)

Line 889: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);

885: l_impchgs_lines_id := NULL;
886:
887: FND_MESSAGE.Set_Name('IGS', 'IGS_FI_ANC_CHG_REC4');
888: FND_MESSAGE.Set_Token('TOKEN', to_char(l_ancillary_chg_rate));
889: FND_FILE.Put_Line(FND_FILE.Log, FND_MESSAGE.Get);
890:
891:
892: -- Call the TBH for creating a record in the Import Charges Lines table
893:

Line 1084: fnd_file.put_line(fnd_file.log,ancrec.error_msg);

1080: ancrec.error_msg := l_msg;
1081: END IF;
1082: l_msg := NULL;
1083: END IF;
1084: fnd_file.put_line(fnd_file.log,ancrec.error_msg);
1085: END IF;
1086: END IF;
1087:
1088: -- If the Ancillary Record Status is TODO then no error has occured

Line 1092: fnd_file.put_line(fnd_file.log,fnd_message.get);

1088: -- If the Ancillary Record Status is TODO then no error has occured
1089: -- and should be updated to SUCCESS
1090: IF ancrec.status <> g_error THEN
1091: fnd_message.set_name('IGS','IGS_FI_ANC_REC_SUCCESS');
1092: fnd_file.put_line(fnd_file.log,fnd_message.get);
1093: ancrec.status := g_success;
1094: ancrec.error_msg:= null;
1095: l_rec_cntr := NVL(l_rec_cntr,0) + 1;
1096: ELSE

Line 1098: fnd_file.put_line(fnd_file.log,fnd_message.get);

1094: ancrec.error_msg:= null;
1095: l_rec_cntr := NVL(l_rec_cntr,0) + 1;
1096: ELSE
1097: fnd_message.set_name('IGS', 'IGS_FI_ANC_REC_IN_ERROR');
1098: fnd_file.put_line(fnd_file.log,fnd_message.get);
1099: END IF;
1100:
1101:
1102: -- The Record in the Ancillary Interface table to be updated with

Line 1156: fnd_file.put_line(fnd_file.log,fnd_message.get_string ('IGS','IGS_GE_TOTAL_REC_PROCESSED')||TO_CHAR(l_rec_cntr));

1152: x_validation_flag => ancrec.validation_flag,
1153: x_mode => 'R');
1154: COMMIT;
1155: END LOOP;
1156: fnd_file.put_line(fnd_file.log,fnd_message.get_string ('IGS','IGS_GE_TOTAL_REC_PROCESSED')||TO_CHAR(l_rec_cntr));
1157: retcode :=0;
1158:
1159: EXCEPTION
1160: WHEN l_exception THEN