DBA Data[Home] [Help]

APPS.QP_MAINTAIN_DENORMALIZED_DATA dependencies on FND_FILE

Line 16: fnd_file.put_line(FND_FILE.LOG,p_mesg_text);

12: Procedure put_line(p_mesg_text IN varchar2)
13: IS
14: BEGIN
15: IF nvl(fnd_profile.value('CONC_REQUEST_ID'),0) <> 0 THEN
16: fnd_file.put_line(FND_FILE.LOG,p_mesg_text);
17: END IF;
18: END put_line;
19:
20: /**************************end of changes bug fix 2181164****************************************************/

Line 633: --enclosed all fnd_file within this IF block to prevent writing into log

629:
630: -- bug 3136350 end
631: begin
632:
633: --enclosed all fnd_file within this IF block to prevent writing into log
634: --file as it raises an exception in case of delayed requests bug 1621199
635: --and batch calls for the same reason as above
636: IF P_UPDATE_TYPE IN ('ALL','DENORMALIZED','QUAL_IND') THEN
637: fnd_file.put_line(FND_FILE.LOG,'Begin Row Count Update');

Line 637: fnd_file.put_line(FND_FILE.LOG,'Begin Row Count Update');

633: --enclosed all fnd_file within this IF block to prevent writing into log
634: --file as it raises an exception in case of delayed requests bug 1621199
635: --and batch calls for the same reason as above
636: IF P_UPDATE_TYPE IN ('ALL','DENORMALIZED','QUAL_IND') THEN
637: fnd_file.put_line(FND_FILE.LOG,'Begin Row Count Update');
638: END IF;
639:
640:
641: /* Commented for bug 3136350

Line 681: fnd_file.put_line(FND_FILE.LOG,'Completed Row Count Update');

677: commit;
678: END IF;
679:
680: IF P_UPDATE_TYPE IN ('ALL','DENORMALIZED','QUAL_IND') THEN
681: fnd_file.put_line(FND_FILE.LOG,'Completed Row Count Update');
682: END IF;
683: EXCEPTION
684: WHEN OTHERS THEN
685: x_return_status:= FND_API.G_RET_STS_ERROR;