DBA Data[Home] [Help]

APPS.EC_DEBUG dependencies on FND_FILE

Line 41: fnd_file.put_line(FND_FILE.LOG, INDENT_TEXT(0)||stemp);

37: begin
38: while(length(i_string) >= nlength)
39: loop
40: stemp := substrb(i_string, nlength, 80);
41: fnd_file.put_line(FND_FILE.LOG, INDENT_TEXT(0)||stemp);
42: nlength := (nlength + 80);
43: end loop;
44: exception
45: when others then

Line 66: fnd_file.put_line(FND_FILE.LOG, INDENT_TEXT(1)|| 'Enter '||i_program_name||'->'||to_char(G_program_stack(ntbl_count).timestamp, 'DD-MON-YYYY HH24:MI:SS'));

62: if G_debug_level >= 2 then
63: ntbl_count := G_program_stack.COUNT + 1;
64: G_program_stack(ntbl_count).program_name := upper(i_program_name);
65: G_program_stack(ntbl_count).timestamp := sysdate;
66: fnd_file.put_line(FND_FILE.LOG, INDENT_TEXT(1)|| 'Enter '||i_program_name||'->'||to_char(G_program_stack(ntbl_count).timestamp, 'DD-MON-YYYY HH24:MI:SS'));
67: end if;
68: exception
69: when others then
70: EC_DEBUG.PL(0,'EC','ECE_ERROR_CODE','ERROR_CODE',SQLCODE);

Line 90: fnd_file.put_line(FND_FILE.LOG, INDENT_TEXT(1)|| 'Exit '||G_program_stack(nposition).program_name||'->'||to_char(sysdate, 'DD-MON-YYYY HH24:MI:SS'));

86: if G_debug_level >= 2
87: then
88: FIND_POS(G_program_stack, i_program_name, nposition);
89: ntime_taken := (sysdate - G_program_stack(nposition).timestamp)*(24*60*60);
90: fnd_file.put_line(FND_FILE.LOG, INDENT_TEXT(1)|| 'Exit '||G_program_stack(nposition).program_name||'->'||to_char(sysdate, 'DD-MON-YYYY HH24:MI:SS'));
91: fnd_file.put_line(FND_FILE.LOG, INDENT_TEXT(1)||'Time Taken '|| round(ntime_taken, 2) || ' seconds' );
92: G_program_stack.DELETE(nposition);
93: end if;
94: exception

Line 91: fnd_file.put_line(FND_FILE.LOG, INDENT_TEXT(1)||'Time Taken '|| round(ntime_taken, 2) || ' seconds' );

87: then
88: FIND_POS(G_program_stack, i_program_name, nposition);
89: ntime_taken := (sysdate - G_program_stack(nposition).timestamp)*(24*60*60);
90: fnd_file.put_line(FND_FILE.LOG, INDENT_TEXT(1)|| 'Exit '||G_program_stack(nposition).program_name||'->'||to_char(sysdate, 'DD-MON-YYYY HH24:MI:SS'));
91: fnd_file.put_line(FND_FILE.LOG, INDENT_TEXT(1)||'Time Taken '|| round(ntime_taken, 2) || ' seconds' );
92: G_program_stack.DELETE(nposition);
93: end if;
94: exception
95: when others then

Line 168: fnd_file.put_line(FND_FILE.LOG, INDENT_TEXT(0)||fnd_message.get);

164: if ( i_token6 is not null ) and ( i_value6 is not null ) then
165: fnd_message.set_token(i_token6,i_value6);
166: end if;
167:
168: fnd_file.put_line(FND_FILE.LOG, INDENT_TEXT(0)||fnd_message.get);
169: end if;
170:
171: exception
172: when others then