Posts

Showing posts from 2023

Management center check box

  Insert below queries :  ---------------------------- insert into EMSPOT (EMSPOT_ID,STOREENT_ID,NAME,USAGETYPE) values ((select counter from KEYS WHERE TABLENAME ='emspot'),10101,'Option','STOREFEATURE'); insert into DMEMSPOTDEF values((select counter from keys where tablename='dmemspotdef'),(SELECT EMSPOT_ID FROM EMSPOT WHERE NAME ='Option'),10101,'FeatureEnabled','true',0,0); update keys set counter = counter + prefetchsize where tablename ='emspot'; update keys set counter = counter + prefetchsize where tablename ='dmemspotdef'; /LOBTools/WebContent/WEB-INF/src/xml/commerce/store/propertiesViews/StorePropertiesView.xml 1. <EnablementCondition objectPath="StoreFlow[name=Option]" propertyName="hiddenFeature" enablementValue="false" /> 2. <PropertyGroup name="groupOption" collapsable="false"> <EnablementCondition objectPath="StoreFlow[name=

CONTRACT PRICING

select * from account where name like '%Performance Testing%' select * from trading where account_id=10561990 and state=1 select * from contract where contract_id=10602006 select * from termcond where trading_id in (select trading_id from trading where account_id=10561990 and state=1) --Fixed Pirce select * from offer where tradeposcn_id          in (select bigintfield1 from termcond where trading_id                  in (select trading_id from trading where account_id=10561990 and state=1) and tcsubtype_id='PriceTCCustomPriceList')                 and catentry_id=30225 --Adjustment----------------- select * from PRSETCEREL where productset_id in ( select productset_id from psetadjmnt where termcond_id in ( select termcond_id from termcond where trading_id in (select trading_id from trading where account_id=10561990 and state=1)  and tcsubtype_id='PriceTCMasterCatalogWithFiltering')) and catentry_id=29587

HTTPD CONF FILE

  Allow from self but DENY others Header set Content-Security-Policy "frame-ancestors 'self';" Allow from self and multiple domains Header set Content-Security-Policy "frame-ancestors 'self' 'test.com' 'test.dev' 'test2.dev';" Reason: CORS header 'Access-Control-Allow-Origin' missing Header set Access-Control-Allow-Origin: https://www.ggggg.com/ RewriteEngine On RewriteCond "%{HTTP_HOST}" "!^www\." [NC] RewriteCond "%{HTTP_HOST}" "!^$" RewriteCond "%{REQUEST_URI}" "^/shop/" RewriteRule "^/?(.*)"      "https://www.%{HTTP_HOST}/$1" [L,R,NE]