DBA Data[Home] [Help]

APPS.CSD_UPDATE_PROGRAMS_PVT dependencies on FND_FILE

Line 1448: fnd_file.put_line(fnd_file.log,l_msg_text);

1444: -- Retrive the message from the msg stack
1445: l_msg_text := fnd_message.get;
1446:
1447: -- Log the number of records processed in concurrent program output and log file
1448: fnd_file.put_line(fnd_file.log,l_msg_text);
1449: fnd_file.put_line(fnd_file.output,l_msg_text);
1450:
1451: -- Debug message
1452: Debug(l_msg_text,l_mod_name,1 );

Line 1449: fnd_file.put_line(fnd_file.output,l_msg_text);

1445: l_msg_text := fnd_message.get;
1446:
1447: -- Log the number of records processed in concurrent program output and log file
1448: fnd_file.put_line(fnd_file.log,l_msg_text);
1449: fnd_file.put_line(fnd_file.output,l_msg_text);
1450:
1451: -- Debug message
1452: Debug(l_msg_text,l_mod_name,1 );
1453:

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

2894: -- Debug message
2895: Debug(fnd_message.get,l_mod_name,1);
2896:
2897: -- Log messages in concurrent log and output file
2898: fnd_file.put_line(fnd_file.log, fnd_message.get);
2899:
2900: -- Initialize the activity rec
2901: l_activity_rec := INIT_ACTIVITY_REC ;
2902:

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

3000: Debug(fnd_message.get,l_mod_name,1);
3001:
3002: -- Log the number of records processed in concurrent
3003: -- program output and log file
3004: fnd_file.put_line(fnd_file.log,fnd_message.get);
3005: fnd_file.put_line(fnd_file.output,fnd_message.get);
3006:
3007: -- Standard check of p_commit.
3008: IF FND_API.To_Boolean( p_commit ) THEN

Line 3005: fnd_file.put_line(fnd_file.output,fnd_message.get);

3001:
3002: -- Log the number of records processed in concurrent
3003: -- program output and log file
3004: fnd_file.put_line(fnd_file.log,fnd_message.get);
3005: fnd_file.put_line(fnd_file.output,fnd_message.get);
3006:
3007: -- Standard check of p_commit.
3008: IF FND_API.To_Boolean( p_commit ) THEN
3009: COMMIT WORK;

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

6715: fnd_message.set_name('CSD','CSD_INSTANCE_MISSING');
6716: fnd_message.set_token('SERIAL_NUM',I.shipped_serial_num);
6717: fnd_msg_pub.add;
6718: FND_LOG.MESSAGE(l_error_level,l_mod_name, FALSE);
6719: fnd_file.put_line(fnd_file.log, fnd_message.get);
6720: ELSE
6721: fnd_message.set_name('CSD','CSD_INSTANCE_MISSING');
6722: fnd_message.set_token('SERIAL_NUM',I.shipped_serial_num);
6723: fnd_msg_pub.add;

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

6720: ELSE
6721: fnd_message.set_name('CSD','CSD_INSTANCE_MISSING');
6722: fnd_message.set_token('SERIAL_NUM',I.shipped_serial_num);
6723: fnd_msg_pub.add;
6724: fnd_file.put_line(fnd_file.log, fnd_message.get);
6725: /*Fixed for bug#5563369
6726: Correct message name CSD_INSTANCE_MISSING is used instead of
6727: CSD_INV_INSTANCE_ID.
6728: */

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

6733: fnd_message.set_name('CSD','CSD_INSTANCE_MISSING');
6734: fnd_message.set_token('SERIAL_NUM',I.shipped_serial_num);
6735: fnd_msg_pub.add;
6736: FND_LOG.MESSAGE(l_error_level,l_mod_name, FALSE);
6737: fnd_file.put_line(fnd_file.log, fnd_message.get);
6738: ELSE
6739: fnd_message.set_name('CSD','CSD_INSTANCE_MISSING');
6740: fnd_message.set_token('SERIAL_NUM',I.shipped_serial_num);
6741: fnd_msg_pub.add;

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

6738: ELSE
6739: fnd_message.set_name('CSD','CSD_INSTANCE_MISSING');
6740: fnd_message.set_token('SERIAL_NUM',I.shipped_serial_num);
6741: fnd_msg_pub.add;
6742: fnd_file.put_line(fnd_file.log, fnd_message.get);
6743: END IF;
6744: RAISE FND_API.G_EXC_ERROR;
6745: End;
6746:

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

6907: -- Debug messages
6908: Debug(fnd_message.get,l_mod_name,1);
6909:
6910: -- Log messages in the concurrent log and output file
6911: fnd_file.put_line(fnd_file.log,fnd_message.get);
6912: fnd_file.put_line(fnd_file.output,fnd_message.get);
6913:
6914: -- Standard check of p_commit.
6915: IF FND_API.To_Boolean( p_commit ) THEN

Line 6912: fnd_file.put_line(fnd_file.output,fnd_message.get);

6908: Debug(fnd_message.get,l_mod_name,1);
6909:
6910: -- Log messages in the concurrent log and output file
6911: fnd_file.put_line(fnd_file.log,fnd_message.get);
6912: fnd_file.put_line(fnd_file.output,fnd_message.get);
6913:
6914: -- Standard check of p_commit.
6915: IF FND_API.To_Boolean( p_commit ) THEN
6916: COMMIT WORK;