DBA Data[Home] [Help]

APPS.FA_DEPRN_ROLLBACK_PKG dependencies on FND_API

Line 96: p_init_msg_list => FND_API.G_FALSE,

92:
93: -- loop through the assets in the book calling api for each
94: FA_DEPRN_ROLLBACK_PUB.do_rollback
95: (p_api_version => 1.0,
96: p_init_msg_list => FND_API.G_FALSE,
97: p_commit => FND_API.G_FALSE,
98: p_validation_level => FND_API.G_VALID_LEVEL_FULL,
99: x_return_status => l_return_status,
100: x_msg_count => l_msg_count,

Line 97: p_commit => FND_API.G_FALSE,

93: -- loop through the assets in the book calling api for each
94: FA_DEPRN_ROLLBACK_PUB.do_rollback
95: (p_api_version => 1.0,
96: p_init_msg_list => FND_API.G_FALSE,
97: p_commit => FND_API.G_FALSE,
98: p_validation_level => FND_API.G_VALID_LEVEL_FULL,
99: x_return_status => l_return_status,
100: x_msg_count => l_msg_count,
101: x_msg_data => l_msg_data,

Line 98: p_validation_level => FND_API.G_VALID_LEVEL_FULL,

94: FA_DEPRN_ROLLBACK_PUB.do_rollback
95: (p_api_version => 1.0,
96: p_init_msg_list => FND_API.G_FALSE,
97: p_commit => FND_API.G_FALSE,
98: p_validation_level => FND_API.G_VALID_LEVEL_FULL,
99: x_return_status => l_return_status,
100: x_msg_count => l_msg_count,
101: x_msg_data => l_msg_data,
102: p_calling_fn => null,

Line 105: if (l_return_status <> FND_API.G_RET_STS_SUCCESS) then

101: x_msg_data => l_msg_data,
102: p_calling_fn => null,
103: px_asset_hdr_rec => l_asset_hdr_rec);
104:
105: if (l_return_status <> FND_API.G_RET_STS_SUCCESS) then
106: raise faxdrb_err ;
107: end if;
108:
109: end loop;