[Home] [Help]
92:
93:
94: -- variables and structs used for api call
95: l_api_version NUMBER := 1.0;
96: l_init_msg_list VARCHAR2(1) := FND_API.G_FALSE;
97: l_commit VARCHAR2(1) := FND_API.G_FALSE;
98: l_validation_level NUMBER := FND_API.G_VALID_LEVEL_FULL;
99: l_return_status VARCHAR2(1);
100: l_mesg_count number;
93:
94: -- variables and structs used for api call
95: l_api_version NUMBER := 1.0;
96: l_init_msg_list VARCHAR2(1) := FND_API.G_FALSE;
97: l_commit VARCHAR2(1) := FND_API.G_FALSE;
98: l_validation_level NUMBER := FND_API.G_VALID_LEVEL_FULL;
99: l_return_status VARCHAR2(1);
100: l_mesg_count number;
101: l_mesg VARCHAR2(4000);
94: -- variables and structs used for api call
95: l_api_version NUMBER := 1.0;
96: l_init_msg_list VARCHAR2(1) := FND_API.G_FALSE;
97: l_commit VARCHAR2(1) := FND_API.G_FALSE;
98: l_validation_level NUMBER := FND_API.G_VALID_LEVEL_FULL;
99: l_return_status VARCHAR2(1);
100: l_mesg_count number;
101: l_mesg VARCHAR2(4000);
102: l_calling_fn VARCHAR2(30) := 'fa_masschg_pkg.do_mass_change';
937: -- to reclass from or to standalone, we must use G_MISS_NUM
938: -- null will leave the asset untouched
939: if (l_to_group_association is not null) then
940: if (l_to_group_association = 'STANDALONE') then
941: l_asset_fin_rec_adj.group_asset_id := FND_API.G_MISS_NUM;
942: else -- member
943: l_asset_fin_rec_adj.group_asset_id := l_to_group_asset_id;
944: end if;
945:
971: x_asset_deprn_mrc_tbl_new => l_asset_deprn_mrc_tbl_new,
972: p_group_reclass_options_rec => l_group_reclass_options_rec
973: );
974:
975: if (l_return_status <> FND_API.G_RET_STS_SUCCESS) then
976: l_mesg_name := null;
977: raise adj_err;
978: end if;
979: