Aşağıdaki işleve sahibim
ALTER FUNCTION [dbo].[ActualWeightDIMS]
(
-- Add the parameters for the function here
@ActualWeight int,
@Actual_Dims_Lenght int,
@Actual_Dims_Width int,
@Actual_Dims_Height int
)
RETURNS varchar(50)
AS
BEGIN
DECLARE @ActualWeightDIMS varchar(50);
--Actual Weight
IF (@ActualWeight is not null)
SET @ActualWeightDIMS = @ActualWeight;
--Actual DIMS
IF (@Actual_Dims_Lenght is not null) AND
(@Actual_Dims_Width is not null) AND (@Actual_Dims_Height is not null)
SET @ActualWeightDIMS= @Actual_Dims_Lenght + 'x' + @Actual_Dims_Width + 'x' + @Actual_Dims_Height;
RETURN(@ActualWeightDIMS);
END
ancak onu kullanmaya çalıştığımda şu hatayı aldım "'x' varchar değerini int veri türüne dönüştürürken dönüştürme başarısız oldu." aşağıdaki select ifadesini kullandığımda
select
BA_Adjustment_Detail.ID_Number [ID_Number],
BA_Adjustment_Detail.Submit_Date [Submit_Date],
BA_Category.Category [category],
BA_Type_Of_Request.Request [Type_Of_Request],
dbo.ActualWeightDIMS(BA_Adjustment_Detail.ActualWeight,BA_Adjustment_Detail.Actual_Dims_Lenght,BA_Adjustment_Detail.Actual_Dims_Width,BA_Adjustment_Detail.Actual_Dims_Height) [Actual Weight/DIMS],
BA_Adjustment_Detail.Notes [Notes],
BA_Adjustment_Detail.UPSCustomerNo [UPSNo],
BA_Adjustment_Detail.TrackingNo [AirbillNo],
BA_Adjustment_Detail.StoreNo [StoreNo],
BA_Adjustment_Detail.Download_Date [Download_Date],
BA_Adjustment_Detail.Shipment_Date[ShipmentDate],
BA_Adjustment_Detail.FranchiseNo [FranchiseNo],
BA_Adjustment_Detail.CustomerNo [CustomerNo],
BA_Adjustment_Detail.BillTo [BillTo],
BA_Adjustment_Detail.Adjustment_Amount_Requested [Adjustment_Amount_Requested]
from BA_Adjustment_Detail
inner join BA_Category
on BA_Category.ID = BA_Adjustment_Detail.CategoryID
inner join BA_Type_Of_Request
on BA_Type_Of_Request.ID = BA_Adjustment_Detail.TypeOfRequestID
Yapmak istediğim şey, Gerçek Ağırlık boş değilse, "Gerçek Ağırlık / DIMS" için Gerçek Ağırlığı döndürmek veya Gerçek_Dims_Lenght, Genişlik ve Yükseklik'i kullanmaktır.
DIMS ise, çıktıyı LenghtxWidhtxHeight (15x10x4) olarak biçimlendirmek istiyorum. Gerçek Ağırlık, Adcutal_Dims_Lenght, Genişlik ve Yükseklik tüm int (tamsayı) değeridir ancak "Gerçek Ağırlık / DIMS" çıktısı varchar (50) olmalıdır.
Nerede yanlış anlıyorum?
teşekkür
düzenleme: Kullanıcı ASP.net sayfasında yalnızca Ağırlık veya DIMS seçebilir ve kullanıcı DIMS'i seçtiyse, Uzunluk, Genişlik ve Yükseklik sağlamaları gerekir. Aksi takdirde ASP.net sayfasında hata atacaktır. Sql tarafında endişelenmeli miyim?