11 lines
620 B
SQL
11 lines
620 B
SQL
with mapping_storevisibility
|
|
(Project_Id,StoreId,VisibilityDefinitionid,Fromdate,Todate,CreateDate,CreateBy)
|
|
AS (
|
|
select DISTINCT '40148' as Project_Id,StoreId,VisibilityDefinitionid,Fromdate,Todate,getdate(),'SP-Pius'
|
|
FROM OneApp_KelloggsMT.dbo.mapping_storevisibility z WHERE
|
|
convert(date,FROMDATE,101)<=convert(Date,getdate(),101) AND CONVERT(DATE,ToDate,101)>=convert(Date,getdate(),101)
|
|
AND z.VisibilityDefinitionid IN
|
|
(SELECT DISTINCT VisibilityDefinitionid FROM OneApp_KelloggsMT.dbo.MASTER_VISIBILITYDEFINITION WHERE MENUID=22 )
|
|
AND z.StoreId NOT IN ({store_id_list})
|
|
)
|
|
select * from mapping_storevisibility |