DBA Data[Home] [Help]

APPS.INV_TXNSTUB_PUB dependencies on FND_API

Line 6: * x_return_status = FND_API.G_RET_STS_*;

2: /* $Header: INVTPUBB.pls 120.5 2006/06/23 06:55:34 pannapra noship $ */
3: /**
4: * p_header_id = TRANSACTION_HEADER_ID
5: * p_transaction_id = TRANSACTION_ID
6: * x_return_status = FND_API.G_RET_STS_*;
7: * in case of an error, the error should be put onto the message stake
8: * using fnd_message.set_name and fnd_msg_pub.add functions or similar
9: * functions in those packages. The caller would then retrieve the
10: * messages. If the return status is a normal (predicted) error or

Line 88: x_return_status := FND_API.G_RET_STS_ERROR;

84: WHEN OTHERS THEN
85: IF (l_debug = 1) THEN
86: inv_log_util.trace('Exception while finding the InstallBase Trackable flag '||sqlerrm, 'INV_TXNSTUB_PUB', 9);
87: END IF;
88: x_return_status := FND_API.G_RET_STS_ERROR;
89: return;
90: END;
91: END IF;
92:

Line 111: x_return_status := FND_API.G_RET_STS_SUCCESS;

107: else
108: IF (l_debug = 1) THEN
109: inv_log_util.trace('g_fnd_install_status is not I or item is not installbase trackable' , 'INV_TXNSTUB_PUB', 9);
110: END IF;
111: x_return_status := FND_API.G_RET_STS_SUCCESS;
112: end if;
113: END;
114: END INV_TXNSTUB_PUB;