DBA Data[Home] [Help]

APPS.IES_SVY_DEPLOYMENT_PVT dependencies on FND_FILE

Line 1010: fnd_file.put_line(fnd_file.log, x_message);

1006: EXCEPTION
1007: WHEN FND_API.G_EXC_ERROR THEN
1008: ROLLBACK TO FM_Request_From_Survey;
1009: x_return_status := FND_API.G_RET_STS_ERROR ;
1010: fnd_file.put_line(fnd_file.log, x_message);
1011: x_message := x_message || ' ' ||SQLERRM;
1012: -- write the error msg to log, if conc request is executing this code then
1013: -- the log is viewable in concurrent manger log for that specific request
1014: if(l_msg_count is not null) then

Line 1020: fnd_file.put_line(fnd_file.log, l_msg_data);

1016: l_msg_data :=FND_MSG_PUB.Get(
1017: p_msg_index => l_index,
1018: p_encoded => FND_API.G_FALSE);
1019: x_msg_data := l_msg_data;
1020: fnd_file.put_line(fnd_file.log, l_msg_data);
1021: end loop;
1022: end if;
1023: fnd_file.put_line(fnd_file.log, SQLERRM);
1024: FND_MSG_PUB.Count_And_Get

Line 1023: fnd_file.put_line(fnd_file.log, SQLERRM);

1019: x_msg_data := l_msg_data;
1020: fnd_file.put_line(fnd_file.log, l_msg_data);
1021: end loop;
1022: end if;
1023: fnd_file.put_line(fnd_file.log, SQLERRM);
1024: FND_MSG_PUB.Count_And_Get
1025: (p_count => x_msg_count ,
1026: p_data => x_msg_data
1027: );

Line 1043: fnd_file.put_line(fnd_file.log, x_message);

1039: p_update_flag => 'Y');
1040: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1041: ROLLBACK TO FM_Request_From_Survey;
1042: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1043: fnd_file.put_line(fnd_file.log, x_message);
1044: x_message := x_message || ' ' ||SQLERRM;
1045: -- write the error msg to log, if conc request is executing this code then
1046: -- the log is viewable in concurrent manger log for that specific request
1047: if(l_msg_count is not null) then

Line 1053: fnd_file.put_line(fnd_file.log, l_msg_data);

1049: l_msg_data :=FND_MSG_PUB.Get(
1050: p_msg_index => l_index,
1051: p_encoded => FND_API.G_FALSE);
1052: x_msg_data := l_msg_data;
1053: fnd_file.put_line(fnd_file.log, l_msg_data);
1054: end loop;
1055: end if;
1056: fnd_file.put_line(fnd_file.log, SQLERRM);
1057: JTF_FM_REQUEST_GRP.Cancel_Request

Line 1056: fnd_file.put_line(fnd_file.log, SQLERRM);

1052: x_msg_data := l_msg_data;
1053: fnd_file.put_line(fnd_file.log, l_msg_data);
1054: end loop;
1055: end if;
1056: fnd_file.put_line(fnd_file.log, SQLERRM);
1057: JTF_FM_REQUEST_GRP.Cancel_Request
1058: (p_api_version => l_api_version,
1059: p_commit => l_commit,
1060: p_init_msg_list => FND_API.G_FALSE,

Line 1073: fnd_file.put_line(fnd_file.log, x_message);

1069:
1070: WHEN OTHERS THEN
1071: rollback to FM_Request_From_Survey;
1072: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1073: fnd_file.put_line(fnd_file.log, x_message);
1074: x_message := x_message || ' ' ||SQLERRM;
1075: -- write the error msg to log, if conc request is executing this code then
1076: -- the log is viewable in concurrent manger log for that specific request
1077: if(l_msg_count is not null) then

Line 1083: fnd_file.put_line(fnd_file.log, l_msg_data);

1079: l_msg_data :=FND_MSG_PUB.Get(
1080: p_msg_index => l_index,
1081: p_encoded => FND_API.G_FALSE);
1082: x_msg_data := l_msg_data;
1083: fnd_file.put_line(fnd_file.log, l_msg_data);
1084: end loop;
1085: end if;
1086: fnd_file.put_line(fnd_file.log, SQLERRM);
1087:

Line 1086: fnd_file.put_line(fnd_file.log, SQLERRM);

1082: x_msg_data := l_msg_data;
1083: fnd_file.put_line(fnd_file.log, l_msg_data);
1084: end loop;
1085: end if;
1086: fnd_file.put_line(fnd_file.log, SQLERRM);
1087:
1088: -- cancel the request just sent
1089: JTF_FM_REQUEST_GRP.Cancel_Request
1090: (p_api_version => l_api_version,