Create Proc GetFeesValues
@RateValue decimal(2,18),
@allfees decimal (2,18),
@Mcfees decimal (2,18),
@Docfees decimal (2,18),
@Comfees decimal(2,18),
@MCID int
as
begin
( (select RateValue from dbo.rates where MCID=@MCID)
Set @Appfees=(@allfees*@RateValue)/100
SET @Docfees=(@allfees*@RateValue)/100
Set @Mcfees=(@allfees*@RateValue)/100
insert into dbo.fees(feesapp,feesdoc,feesmc,allfees,McID) values(@Appfees,@Docfees,@Mcfees,@allfees,@MCID))
end

Rafnas T PPosted Mar 19, 2017, 11:56 PM
Ramesh BarikPosted Mar 19, 2017, 1:22 PM
Carnation FlowersPosted Mar 19, 2017, 1:14 PM
Ramesh BarikPosted Mar 19, 2017, 1:03 PM
Carnation FlowersPosted Mar 19, 2017, 12:49 PM
Ramesh BarikPosted Mar 19, 2017, 10:24 AM
Carnation FlowersPosted Mar 19, 2017, 9:58 AM
Ramesh BarikPosted Mar 19, 2017, 9:47 AM
Carnation FlowersPosted Mar 19, 2017, 6:41 AM
Ramesh PalanivelPosted Mar 19, 2017, 6:35 AM