DBA Data[Home] [Help]

APPS.JMF_SHIKYU_RCV_TRANSACTIONS_CP dependencies on FND_API

Line 46: p_init_msg_list => FND_API.G_FALSE,

42: BEGIN
43: -- Call method from private package.
44: JMF_PROCESS_SHIKYU_RCV_TRX_PVT.Process_Shikyu_Rcv_trx
45: ( p_api_version =>1.0,
46: p_init_msg_list => FND_API.G_FALSE,
47: p_request_id => p_request_id,
48: p_group_id => p_group_id,
49: x_return_Status => l_return_status );
50:

Line 53: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN

49: x_return_Status => l_return_status );
50:
51: -- If return status is not Success then raise exception
52: -- to propogate error to concurrent program
53: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
54: raise FND_API.G_EXC_ERROR;
55: END IF;
56:
57: EXCEPTION

Line 54: raise FND_API.G_EXC_ERROR;

50:
51: -- If return status is not Success then raise exception
52: -- to propogate error to concurrent program
53: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
54: raise FND_API.G_EXC_ERROR;
55: END IF;
56:
57: EXCEPTION
58:

Line 61: x_errbuff := SUBSTRB(FND_MSG_PUB.Get(p_encoded => FND_API.G_FALSE)

57: EXCEPTION
58:
59: WHEN OTHERS THEN
60: x_retcode := 2;
61: x_errbuff := SUBSTRB(FND_MSG_PUB.Get(p_encoded => FND_API.G_FALSE)
62: ,1
63: ,250);
64:
65: