DBA Data[Home] [Help]

APPS.GL_COA_SEGMENT_VAL_PVT dependencies on FND_FILE

Line 145: FND_FILE.PUT_LINE(FND_FILE.LOG,'Exception1:');

141:
142:
143: EXCEPTION
144: WHEN FND_API.G_EXC_ERROR THEN
145: FND_FILE.PUT_LINE(FND_FILE.LOG,'Exception1:');
146: ROLLBACK;
147: x_return_status := FND_API.G_RET_STS_ERROR;
148: FND_MSG_PUB.Count_And_Get( p_count => x_msg_count ,
149: p_data => x_msg_data );

Line 151: FND_FILE.PUT_LINE(FND_FILE.LOG,'Exception2:');

147: x_return_status := FND_API.G_RET_STS_ERROR;
148: FND_MSG_PUB.Count_And_Get( p_count => x_msg_count ,
149: p_data => x_msg_data );
150: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
151: FND_FILE.PUT_LINE(FND_FILE.LOG,'Exception2:');
152: ROLLBACK;
153: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
154: FND_MSG_PUB.Count_And_Get( p_count => x_msg_count ,
155: p_data => x_msg_data );

Line 158: FND_FILE.PUT_LINE(FND_FILE.LOG,'Exception3:'||SQLERRM);

154: FND_MSG_PUB.Count_And_Get( p_count => x_msg_count ,
155: p_data => x_msg_data );
156:
157: WHEN OTHERS THEN
158: FND_FILE.PUT_LINE(FND_FILE.LOG,'Exception3:'||SQLERRM);
159: ROLLBACK ;
160: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
161: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
162: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,