INSERT INTO dbo.SYSFLIGHTING(FLIGHTNAME, ENABLED)
VALUES ('<FlightObjectName>_KillSwitch', 1)
or
INSERT INTO dbo.SYSFLIGHTING(FLIGHTNAME, ENABLED)
VALUES ('<FlightObjectName>', 0)
INSERT INTO dbo.SYSFLIGHTING(FLIGHTNAME, ENABLED)
VALUES ('<FlightObjectName>_KillSwitch', 1)
or
INSERT INTO dbo.SYSFLIGHTING(FLIGHTNAME, ENABLED)
VALUES ('<FlightObjectName>', 0)
Excel formula
=AND(ISTEXT(C2),SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(LOWER(C2),"a",),"b",),"c",),"d",),"e",),"f",),"g",),"h",),"i",),"j",),"k",),"l",),"m",),"n",),"o",),"p",),"q",),"r",),"s",),"t",),"u",),"v",),"w",),"x",),"y",),"z",),"-",),",",),"",),"0",),"1",),"2",),"3",),"4",) ,"5",),"6",),"7",),"8",),"9",),"&",),")",),"(",),".",),"/",),"–",),"#",),"*",),"'",),"+",),":",),";",),"$",),"%",)= "")
Public boolean SAN_validateProductAssortment(Str _itemId)
{
RetailAssortmentTable retailAssortmentTable;
RetailChannelAssortedProductView retailChannelAssortedProductView;
InventTable inventTable;
while select retailAssortmentTable
{
select firstonly retailChannelAssortedProductView
exists join inventTable
where inventTable.ItemId == _itemId
&& retailChannelAssortedProductView.AssortmentRecId == retailAssortmentTable.RecId
&& retailChannelAssortedProductView.ProductID == inventTable.Product
&& retailChannelAssortedProductView.InventLocationDataAreaId == inventTable.DataAreaId;
if(retailChannelAssortedProductView)
{
return true;
}
}
}
throw Error("Invalid item to sell based on assortments");
}
Table1 ppt;
select firstonly ppt
order ItemCode, ItemRelation, AccountCode, AccountRelation where
(ppt.ItemCode == TableGroupAll::Table && ppt.ItemRelation == _itemId &&
ppt.AccountCode == TableGroupAll::Table && ppt.AccountRelation == _accountNum) ||
(ppt.ItemCode == TableGroupAll::Table && ppt.ItemRelation == _itemId &&
ppt.AccountCode == TableGroupAll::GroupId && ppt.AccountRelation == _accountGroup) ||
(ppt.ItemCode == TableGroupAll::Table && ppt.ItemRelation == _itemId &&
ppt.AccountCode == TableGroupAll::All && ppt.AccountRelation == '') ||
(ppt.ItemCode == TableGroupAll::GroupId && ppt.ItemRelation == _ItemGroup &&
ppt.AccountCode == TableGroupAll::Table && ppt.AccountRelation == _accountNum) ||
(ppt.ItemCode == TableGroupAll::GroupId && ppt.ItemRelation == _ItemGroup &&
ppt.AccountCode == TableGroupAll::GroupId && ppt.AccountRelation == _accountGroup) ||
(ppt.ItemCode == TableGroupAll::GroupId && ppt.ItemRelation == _ItemGroup &&
ppt.AccountCode == TableGroupAll::All && ppt.AccountRelation == '') ||
(ppt.ItemCode == TableGroupAll::All && ppt.ItemRelation == '' &&
ppt.AccountCode == TableGroupAll::Table && ppt.AccountRelation == _accountNum) ||
(ppt.ItemCode == TableGroupAll::All && ppt.ItemRelation == '' &&
ppt.AccountCode == TableGroupAll::GroupId && ppt.AccountRelation == _accountGroup) ||
(ppt.ItemCode == TableGroupAll::All && ppt.ItemRelation == '' &&
ppt.AccountCode == TableGroupAll::All && ppt.AccountRelation == '');
// Return table buffer if found, otherwise return 0 as the default
if (ppt.RecId)
{
// return result
}
RetailChannelTable channelTable;
MCRChannelUser channelUser;
while select channelTable
where channelTable.ChannelType == RetailChannelType::MCRCallCenter
{
channelUser.clear();
changecompany(channelTable.DefaultCustDataAreaId)
{
channelUser = MCRChannelUser::find();
if(!channelUser)
{
channelUser.clear();
channelUser.initValue();
channelUser.Channel = channelTable.RecId;
channelUser.User = curUserId();
channelUser.insert();
}
}
}
INSERT INTO dbo.SYSFLIGHTING(FLIGHTNAME, ENABLED) VALUES ('<FlightObjectName>_KillSwitch', 1) or INSERT INTO dbo.SYSFLIGHT...