I have a stored procedure which needs 2 parameters: Status and Substatus
The parameters are passed from a webpage where a user can choose from the available status/substatus
e.g
if a user chose status 10 substatus 20 , the string to be executed will be
execute rcp_FL_CRPReferenceActivityReport "10,20"
now if a user chooses two status and substatus , status 10 substatus 20 & status 11 substatus 21 then the string to be executed will be
execute rcp_FL_CRPReferenceActivityReport "10,20,11,21"
How do I set up the stored procedure to recognize the incoming string that the 1st value is a status and next is substatus.
in this above case i want the @Where in the stored procedure to be
(vFL_CRPCustomerReferenceActivity.iStatusId=10 and vFL_CRPCustomerReferenceActivity.iStatusSubTypeId=20) OR
(vFL_CRPCustomerReferenceActivity.iStatusId=11 and vFL_CRPCustomerReferenceActivity.iStatusSubTypeId=21)
below is the code for the stored procedure.
------------------------------------
CREATE PROCEDURE rcp_FL_CRPReferenceActivityReport
@status varchar(255),
@substatus varchar(255) = null
AS
BEGIN
SET NOCOUNT ON
DECLARE @WHERE VARCHAR(8000)
DECLARE @SQLSTMT VARCHAR(8000)
SET @SQLSTMT ='
Insert into FL_CRPReferenceActivityReport
(CompId,
CompName,
City,
State,
CompanyType,
CompanySubType,
SIC,
SalesChannel,
RefType,
Status,
StatusSubType,
InsertDate,
CloseDate
)
Select Distinct
vCompany.iCompanyId,
vCompany.vchCompanyName,
vCompany.vchCity,
(select vRegion.chRegionName
from vRegion
where vRegion.chregioncode = vCompany.chregioncode
and vRegion.chcountrycode = vCompany.chcountrycode),
(select vReferenceParameters.vchparameterdesc
from vReferenceParameters
where vCompany.iCompanyTypeCode = vReferenceParameters.iParameterId),
(select vReferenceParameters.vchparameterdesc
from vReferenceParameters
where vCompany.iCompanySubTypeCode = vReferenceParameters.iParameterId),
(select vReferenceParameters.vchparameterdesc
from vReferenceParameters
where vCompany.imarketsector = vReferenceParameters.iParameterId),
(select vReferenceParameters.vchparameterdesc
from vReferenceParameters
where vCompany.vchuser8 = vReferenceParameters.iParameterId),
(select vchparameterdesc
from vreferenceparameters
where vreferenceparameters.iparameterid = vFL_CRPCustomerReferenceActivity.iRefTypeId),
(select vchparameterdesc
from vreferenceparameters
where vreferenceparameters.iparameterid = vFL_CRPCustomerReferenceActivity.iStatusId),
(select vchparameterdesc
from vreferenceparameters
where vreferenceparameters.iparameterid = vFL_CRPCustomerReferenceActivity.iStatusSubTypeId),
vFL_CRPCustomerReferenceActivity.dtInsertDate,
vFL_CRPCustomerReferenceActivity.dtActivityCloseDate
From
vCompany
Inner Join vFL_CRPCustomerReference
on vCompany.iCompanyId = vFL_CRPCustomerReference.iOwnerId
Inner Join vFL_CRPCustomerReferenceActivity
on vFL_CRPCustomerReference.iCustRefId = vFL_CRPCustomerReferenceActivity.iCustRefId
where'
END
SET @WHERE = ' vFL_CRPCustomerReferenceActivity.iStatusId IN (' + @status + ') '
IF Len(@substatus) > 0
BEGIN
SET @WHERE = @WHERE + 'AND vFL_CRPCustomerReferenceActivity.iStatusSubTypeId IN (' + @substatus + ') '
END
SET @SQLSTMT = @SQLSTMT+@WHERE
DELETE FROM FL_CRPReferenceActivityReport
Exec(@SQLSTMT)
--END
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
[highlight]M.Bajwa
[/highlight]
The parameters are passed from a webpage where a user can choose from the available status/substatus
e.g
if a user chose status 10 substatus 20 , the string to be executed will be
execute rcp_FL_CRPReferenceActivityReport "10,20"
now if a user chooses two status and substatus , status 10 substatus 20 & status 11 substatus 21 then the string to be executed will be
execute rcp_FL_CRPReferenceActivityReport "10,20,11,21"
How do I set up the stored procedure to recognize the incoming string that the 1st value is a status and next is substatus.
in this above case i want the @Where in the stored procedure to be
(vFL_CRPCustomerReferenceActivity.iStatusId=10 and vFL_CRPCustomerReferenceActivity.iStatusSubTypeId=20) OR
(vFL_CRPCustomerReferenceActivity.iStatusId=11 and vFL_CRPCustomerReferenceActivity.iStatusSubTypeId=21)
below is the code for the stored procedure.
------------------------------------
CREATE PROCEDURE rcp_FL_CRPReferenceActivityReport
@status varchar(255),
@substatus varchar(255) = null
AS
BEGIN
SET NOCOUNT ON
DECLARE @WHERE VARCHAR(8000)
DECLARE @SQLSTMT VARCHAR(8000)
SET @SQLSTMT ='
Insert into FL_CRPReferenceActivityReport
(CompId,
CompName,
City,
State,
CompanyType,
CompanySubType,
SIC,
SalesChannel,
RefType,
Status,
StatusSubType,
InsertDate,
CloseDate
)
Select Distinct
vCompany.iCompanyId,
vCompany.vchCompanyName,
vCompany.vchCity,
(select vRegion.chRegionName
from vRegion
where vRegion.chregioncode = vCompany.chregioncode
and vRegion.chcountrycode = vCompany.chcountrycode),
(select vReferenceParameters.vchparameterdesc
from vReferenceParameters
where vCompany.iCompanyTypeCode = vReferenceParameters.iParameterId),
(select vReferenceParameters.vchparameterdesc
from vReferenceParameters
where vCompany.iCompanySubTypeCode = vReferenceParameters.iParameterId),
(select vReferenceParameters.vchparameterdesc
from vReferenceParameters
where vCompany.imarketsector = vReferenceParameters.iParameterId),
(select vReferenceParameters.vchparameterdesc
from vReferenceParameters
where vCompany.vchuser8 = vReferenceParameters.iParameterId),
(select vchparameterdesc
from vreferenceparameters
where vreferenceparameters.iparameterid = vFL_CRPCustomerReferenceActivity.iRefTypeId),
(select vchparameterdesc
from vreferenceparameters
where vreferenceparameters.iparameterid = vFL_CRPCustomerReferenceActivity.iStatusId),
(select vchparameterdesc
from vreferenceparameters
where vreferenceparameters.iparameterid = vFL_CRPCustomerReferenceActivity.iStatusSubTypeId),
vFL_CRPCustomerReferenceActivity.dtInsertDate,
vFL_CRPCustomerReferenceActivity.dtActivityCloseDate
From
vCompany
Inner Join vFL_CRPCustomerReference
on vCompany.iCompanyId = vFL_CRPCustomerReference.iOwnerId
Inner Join vFL_CRPCustomerReferenceActivity
on vFL_CRPCustomerReference.iCustRefId = vFL_CRPCustomerReferenceActivity.iCustRefId
where'
END
SET @WHERE = ' vFL_CRPCustomerReferenceActivity.iStatusId IN (' + @status + ') '
IF Len(@substatus) > 0
BEGIN
SET @WHERE = @WHERE + 'AND vFL_CRPCustomerReferenceActivity.iStatusSubTypeId IN (' + @substatus + ') '
END
SET @SQLSTMT = @SQLSTMT+@WHERE
DELETE FROM FL_CRPReferenceActivityReport
Exec(@SQLSTMT)
--END
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
[highlight]M.Bajwa
[/highlight]