DBA Data[Home] [Help]

APPS.INV_MGD_MVT_PURGE_TRANS dependencies on STANDARD

Line 86: -- Standard call to check for call compatibility

82: ,'enter procedure'
83: );
84: END IF;
85:
86: -- Standard call to check for call compatibility
87: IF NOT FND_API.Compatible_API_Call
88: ( l_api_version_number
89: , p_api_version_number
90: , l_procedure_name

Line 103: x_return_status := FND_API.G_RET_STS_SUCCESS;/*bug #7499719 'Y' was hardcoded changed to standard*/

99: THEN
100: FND_MSG_PUB.initialize;
101: END IF;
102:
103: x_return_status := FND_API.G_RET_STS_SUCCESS;/*bug #7499719 'Y' was hardcoded changed to standard*/
104:
105: DELETE FROM MTL_MOVEMENT_STATISTICS
106: WHERE entity_org_id = p_legal_entity_id
107: AND upper(stat_type) like nvl(upper(p_stat_type),'%')

Line 131: x_return_status := FND_API.G_RET_STS_ERROR;/*bug #7499719 'Y' was hardcoded changed to standard*/

127: END IF;
128: EXCEPTION
129:
130: WHEN NO_DATA_FOUND THEN
131: x_return_status := FND_API.G_RET_STS_ERROR;/*bug #7499719 'Y' was hardcoded changed to standard*/
132: FND_MESSAGE.Set_Name('INV', 'INV_NO_DATA_TRANSACTIONS');
133: FND_MSG_PUB.Add;
134: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
135: THEN

Line 144: x_return_status :=FND_API.G_RET_STS_ERROR;/*bug #7499719 'Y' was hardcoded changed to standard*/

140: END IF;
141: RAISE g_no_data_transaction_exc;
142:
143: WHEN TOO_MANY_ROWS THEN
144: x_return_status :=FND_API.G_RET_STS_ERROR;/*bug #7499719 'Y' was hardcoded changed to standard*/
145: FND_MESSAGE.Set_Name('INV', 'INV_TOO_MANY_TRANSACTIONS');
146: FND_MSG_PUB.Add;
147: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
148: THEN