DBA Data[Home] [Help]

APPS.FA_ADDITION_PUB dependencies on FND_API

Line 33: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

29: --*********************** Public procedures ******************************--
30: procedure do_addition (
31: -- Standard Parameters --
32: p_api_version IN NUMBER,
33: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
34: p_commit IN VARCHAR2 := FND_API.G_FALSE,
35: p_validation_level IN NUMBER :=FND_API.G_VALID_LEVEL_FULL,
36: x_return_status OUT NOCOPY VARCHAR2,
37: x_msg_count OUT NOCOPY NUMBER,

Line 34: p_commit IN VARCHAR2 := FND_API.G_FALSE,

30: procedure do_addition (
31: -- Standard Parameters --
32: p_api_version IN NUMBER,
33: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
34: p_commit IN VARCHAR2 := FND_API.G_FALSE,
35: p_validation_level IN NUMBER :=FND_API.G_VALID_LEVEL_FULL,
36: x_return_status OUT NOCOPY VARCHAR2,
37: x_msg_count OUT NOCOPY NUMBER,
38: x_msg_data OUT NOCOPY VARCHAR2,

Line 35: p_validation_level IN NUMBER :=FND_API.G_VALID_LEVEL_FULL,

31: -- Standard Parameters --
32: p_api_version IN NUMBER,
33: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
34: p_commit IN VARCHAR2 := FND_API.G_FALSE,
35: p_validation_level IN NUMBER :=FND_API.G_VALID_LEVEL_FULL,
36: x_return_status OUT NOCOPY VARCHAR2,
37: x_msg_count OUT NOCOPY NUMBER,
38: x_msg_data OUT NOCOPY VARCHAR2,
39: p_calling_fn IN VARCHAR2,

Line 123: if (fnd_api.to_boolean(p_init_msg_list)) then

119: end if;
120: end if;
121:
122: -- Initialize message list if p_init_msg_list is set to TRUE.
123: if (fnd_api.to_boolean(p_init_msg_list)) then
124: -- initialize error message stack.
125: fa_srvr_msg.init_server_message;
126:
127: -- initialize debug message stack.

Line 137: if (NOT fnd_api.compatible_api_call (

133:
134:
135: -- Check version of the API
136: -- Standard call to check for API call compatibility.
137: if (NOT fnd_api.compatible_api_call (
138: G_API_VERSION,
139: p_api_version,
140: G_API_NAME,
141: G_PKG_NAME

Line 357: if (p_validation_level = FND_API.G_VALID_LEVEL_FULL) then

353: l_asset_fin_rec.over_depreciate_option
354: ,p_log_level_rec => g_log_level_rec);
355: end if;
356:
357: if (p_validation_level = FND_API.G_VALID_LEVEL_FULL) then
358:
359: if (g_log_level_rec.statement_level) then
360: fa_debug_pkg.add('add before validate','asset_type',
361: px_asset_type_rec.asset_type

Line 896: if (fnd_api.to_boolean (p_commit)) then

892:
893: end if; -- (FA_IGI_EXT_PKG.IAC_Enabled)
894:
895: -- commit if p_commit is TRUE.
896: if (fnd_api.to_boolean (p_commit)) then
897: COMMIT WORK;
898: end if;
899:
900: -- Reset the gl_sob profile

Line 910: x_return_status := FND_API.G_RET_STS_SUCCESS;

906: p_count => x_msg_count,
907: p_data => x_msg_data
908: );
909:
910: x_return_status := FND_API.G_RET_STS_SUCCESS;
911:
912: exception
913: when add_err1 then
914:

Line 930: x_return_status := FND_API.G_RET_STS_ERROR;

926: p_count => x_msg_count,
927: p_data => x_msg_data
928: );
929:
930: x_return_status := FND_API.G_RET_STS_ERROR;
931:
932:
933: when add_err2 then
934:

Line 966: x_return_status := FND_API.G_RET_STS_ERROR;

962: p_count => x_msg_count,
963: p_data => x_msg_data
964: );
965:
966: x_return_status := FND_API.G_RET_STS_ERROR;
967:
968: --Bug6391045 ends
969: when others then
970:

Line 986: x_return_status := FND_API.G_RET_STS_ERROR;

982: p_count => x_msg_count,
983: p_data => x_msg_data
984: );
985:
986: x_return_status := FND_API.G_RET_STS_ERROR;
987:
988: end do_addition;
989:
990: function do_all_books (

Line 1238: x_return_status := FND_API.G_RET_STS_ERROR;

1234: when all_books_err then
1235: fa_srvr_msg.add_message(
1236: calling_fn => 'fa_addition_pub.do_all_books'
1237: ,p_log_level_rec => p_log_level_rec);
1238: x_return_status := FND_API.G_RET_STS_ERROR;
1239:
1240: return FALSE;
1241: when others then
1242: fa_srvr_msg.add_sql_error(

Line 1245: x_return_status := FND_API.G_RET_STS_ERROR;

1241: when others then
1242: fa_srvr_msg.add_sql_error(
1243: calling_fn => 'fa_addition_pub.do_all_books'
1244: ,p_log_level_rec => p_log_level_rec);
1245: x_return_status := FND_API.G_RET_STS_ERROR;
1246:
1247: return FALSE;
1248: end do_all_books;
1249: