DBA Data[Home] [Help]

APPS.FA_DEFERRED_DEPRN_PKG dependencies on FND_FILE

Line 71: FND_FILE.put(FND_FILE.output,l_string);

67: fnd_message.set_token(p_token2, p_value2);
68: end if;
69:
70: l_string := fnd_message.get;
71: FND_FILE.put(FND_FILE.output,l_string);
72: FND_FILE.new_line(FND_FILE.output,1);
73:
74: -- now add to log as well
75: fa_srvr_msg.add_message

Line 72: FND_FILE.new_line(FND_FILE.output,1);

68: end if;
69:
70: l_string := fnd_message.get;
71: FND_FILE.put(FND_FILE.output,l_string);
72: FND_FILE.new_line(FND_FILE.output,1);
73:
74: -- now add to log as well
75: fa_srvr_msg.add_message
76: (calling_fn => l_calling_fn,

Line 109: fnd_file.put(FND_FILE.LOG,

105:
106: l_mesg_count := fnd_msg_pub.count_msg;
107:
108: if (l_mesg_count > 0) then
109: fnd_file.put(FND_FILE.LOG,
110: fnd_msg_pub.get(fnd_msg_pub.G_FIRST, l_encoded));
111: fnd_file.new_line(FND_FILE.LOG,1);
112:
113: for i in 1..(l_mesg_count-1) loop

Line 111: fnd_file.new_line(FND_FILE.LOG,1);

107:
108: if (l_mesg_count > 0) then
109: fnd_file.put(FND_FILE.LOG,
110: fnd_msg_pub.get(fnd_msg_pub.G_FIRST, l_encoded));
111: fnd_file.new_line(FND_FILE.LOG,1);
112:
113: for i in 1..(l_mesg_count-1) loop
114: fnd_file.put(FND_FILE.LOG,
115: fnd_msg_pub.get(fnd_msg_pub.G_NEXT, l_encoded));

Line 114: fnd_file.put(FND_FILE.LOG,

110: fnd_msg_pub.get(fnd_msg_pub.G_FIRST, l_encoded));
111: fnd_file.new_line(FND_FILE.LOG,1);
112:
113: for i in 1..(l_mesg_count-1) loop
114: fnd_file.put(FND_FILE.LOG,
115: fnd_msg_pub.get(fnd_msg_pub.G_NEXT, l_encoded));
116: fnd_file.new_line(FND_FILE.LOG,1);
117: end loop;
118:

Line 116: fnd_file.new_line(FND_FILE.LOG,1);

112:
113: for i in 1..(l_mesg_count-1) loop
114: fnd_file.put(FND_FILE.LOG,
115: fnd_msg_pub.get(fnd_msg_pub.G_NEXT, l_encoded));
116: fnd_file.new_line(FND_FILE.LOG,1);
117: end loop;
118:
119: end if;
120: