def myBean=spring.getBean("myBean");
myBean.myMethod();
Install hybris temp/trial license
You can reset developer license with initializing. In initialize process all data deleted. You can install temp license without initialize. Use license.bat/license.sh for generating temp license. You can find this script at bin/platform. You need to create temp license by db. We have these options:
- CPS_MYS = mysql
- CPS_HDB = hana
- CPS_ORA = oracle
- CPS_MSS = mssql
- CPS_POS = postgres
- CPS_SQL = ?
For example we create temp license for mysql:./license.sh -temp CPS_MYS
You will get temp license for 90 day.
You need remove old license after 90 day for new one. You can delete it with below command:
./license.sh -delete SystemID HardwareKey SoftwareProductsYou can get above parameters with below command:
./license.sh -get— thanks to Yusuf for above information.
Also you can reset trial license with updating user creation time.
UPDATE users set createdTS = NOW()
NOTE: NOW() command for MySql, you must chose relevant command for your database. There is no option running update command on UI, you can develop groovy script for running this command over jdbc.
Change all table unload priority in hana
Change all table priority for unload in short time.
create procedure update_unload_priority() LANGUAGE SQLSCRIPT AS CURSOR C_TABLE FOR SELECT 'ALTER TABLE "' || TABLE_NAME || '" UNLOAD PRIORITY 9;' AS SQLTEXT FROM SYS.TABLES WHERE SCHEMA_NAME = 'MYSCHEMA' AND TABLE_TYPE = 'COLUMN' and temporary_table_type = 'NONE' AND unload_priority <> 9; BEGIN OPEN C_TABLE; FOR cur_row AS C_TABLE DO EXEC cur_row.SQLTEXT; END FOR; END;
Convert all row table to column in Hana
You can convert all row table to column table with below procedure:
create procedure convert_column() LANGUAGE SQLSCRIPT AS CURSOR C_TABLE FOR SELECT 'ALTER TABLE "' || TABLE_NAME || '" COLUMN;' AS SQLTEXT FROM SYS.TABLES WHERE SCHEMA_NAME = 'SAPABAP1' AND TABLE_TYPE = 'ROW' and temporary_table_type = 'NONE'; BEGIN OPEN C_TABLE; FOR cur_row AS C_TABLE DO EXEC cur_row.SQLTEXT; END FOR; END;
You can execute below procedure like this:
CALL convert_column;
Unloading all column table in hana
You can use below procedure for unloading all column tables in Hana.
create procedure unload_all() LANGUAGE SQLSCRIPT AS CURSOR C_TABLE FOR SELECT 'UNLOAD “' || TABLE_NAME || '”;' AS SQLTEXT FROM SYS.TABLES WHERE SCHEMA_NAME = 'MYSCHEMA' AND TABLE_TYPE = 'COLUMN' and temporary_table_type = 'NONE'; BEGIN OPEN C_TABLE; FOR cur_row AS C_TABLE DO EXEC cur_row.SQLTEXT; END FOR; END;
You call this procedure like below:
CALL unload_all;
Enum tipindeki alanlar için varsayılan değer atamak
<enumtypes>
<enumtype code="MyEnum" generate="true" autocreate="true">
<value code="MyValue1" />
<value code="MyValue2"/>
</enumtype>
</enumtypes>
<itemtype code="MyItem" extends="BaseItem" autocreate="true" generate="true" jaloclass="de.hybris.platform.warehousing.jalo.MyItem">
<attributes>
<attribute type="MyEnum" qualifier="myAttribute">
<modifiers optional="false" />
<defaultvalue>em().getEnumerationValue("MyItem", "MyValue1")</defaultvalue>
<description>My attribute.</description>
<persistence type="property" />
</attribute>
</attributes>
</itemtype>