DBA Data[Home] [Help]

APPS.AR_UPGHARNESS_PKG dependencies on FND_API

Line 71: l_msg_data := l_msg_data || FND_MSG_PUB.Get(p_encoded => FND_API.G_FALSE );

67: BEGIN
68: FND_MSG_PUB.Reset;
69:
70: FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP
71: l_msg_data := l_msg_data || FND_MSG_PUB.Get(p_encoded => FND_API.G_FALSE );
72: END LOOP;
73: IF (SQLERRM IS NOT NULL) THEN
74: l_msg_data := l_msg_data || SQLERRM;
75: END IF;

Line 647: x_return_status := FND_API.G_RET_STS_SUCCESS;

643: outandlog( message =>' l_batch_size :'||l_batch_size );
644: outandlog( message =>' l_worker_id :'||l_worker_id);
645: outandlog( message =>' l_table_name :'||l_table_name);
646:
647: x_return_status := FND_API.G_RET_STS_SUCCESS;
648:
649: IF l_table_name IN ('JL_BR_AR_OCCURRENCE_DOCS_ALL','JL_BR_AR_MC_OCC_DOCS') THEN
650:
651: IF fnd_installation.get_app_info('JL',l_status,l_industry,l_schema) THEN

Line 910: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN

906: --}
907:
908: END IF;
909:
910: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
911: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
912: END IF;
913:
914:

Line 911: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

907:
908: END IF;
909:
910: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
911: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
912: END IF;
913:
914:
915: -- Updating record as successfull

Line 931: WHEN FND_API.G_EXC_ERROR THEN

927: errbuf := errbuf || logerror;
928: outandlog('Aborting concurrent program execution');
929: -- FND_FILE.close;
930:
931: WHEN FND_API.G_EXC_ERROR THEN
932: ROLLBACK TO upgrade_by_request;
933: outandlog('Error: ' || FND_MESSAGE.GET);
934: retcode := 1;
935: errbuf := errbuf || logerror;

Line 940: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

936: outandlog('Aborting concurrent program execution');
937: -- FND_FILE.close;
938:
939:
940: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
941: --JL raises FND api error
942: ROLLBACK TO upgrade_by_request;
943: outandlog('Error: ' || FND_MESSAGE.GET);
944: retcode := 1;

Line 941: --JL raises FND api error

937: -- FND_FILE.close;
938:
939:
940: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
941: --JL raises FND api error
942: ROLLBACK TO upgrade_by_request;
943: outandlog('Error: ' || FND_MESSAGE.GET);
944: retcode := 1;
945: errbuf := errbuf || logerror;

Line 2030: RAISE fnd_api.G_EXC_ERROR;

2026:
2027: IF x_return_status = 'N' THEN
2028: RAISE nothing_to_run;
2029: ELSIF x_return_status = 'E' THEN
2030: RAISE fnd_api.G_EXC_ERROR;
2031: END IF;
2032:
2033:
2034: --------------------------