BAPI | Function | Notes |
BAPI_MATERIAL_AVAILABILITY | Stock check | |
BAPI_ACC_DOCUMENT_POST | Create FI document |
Disable interceptors for impex
AWS Lambda Internal Server Error
If you are getting below exception for your .Net Core 3.1 Lambda function after deploying it via web page, continue to reading reason.
Could not find the specified handler assembly with the file name ‘LambdaTest, Culture=neutral, PublicKeyToken=null’. The assembly should be located in the root of your uploaded .zip file.: LambdaException
When you create lambda function via aws web ui, it set default handler as LambdaTest::LambdaTest.LambdaHandler::handleRequest. You need to change it as your your code.
Accsess backoffice config
Oracle linux online repo
You can use below address for Oracle linux online installation.
http://public-yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/index.html
Using classical text editor for Smart Forms instead of MS Word
In updated system MS Word used as default Smart Forms and SAP Script text editor. In cloud system it is mandatory.
You can configure text editor with two ways. You can run ABAP report RSCPSETEDITOR in t-code SE38 for changing it. Other option using t-code I18N. In this t-code you need to open I18N Menu -> I18N Customizing -> I18N System Parameter. Select smartforms_editor as Parameter and emtpy as Value.
If you haven’t got enough privileges to change configuration, you can manipulate it in debug mode. These configuration saved DB table TCP0I as smartforms_editor and sapscript_editor. You can add break point in NLS_WORD_ENABLE function in t-code SE37. This function called by Smart Forms in first use of editor.
In S/4HANA system you need to add additional break point for running old editor. Add break point to CL_GUI_RTF_EDITOR and CL_GUI_SAPSCRIPT_EDITOR classes constructor below line and bypass the raise exception line.
* is not supported in S4H if cl_cos_utilities=>is_s4h( ). raise error_cntl_create. endif.
Set FQDN on Linux for SAP Server
An example FQDN: myserver.mkysoft.com
Add computer name to /etc/hostname file.
myserver
Add you domain to /etc/resolv.conf.
domain mkysoft.com
Add host name and domain with IP to /etc/hosts.
10.10.1.5 myserver.mkysoft.com myserver
You can check yor configuration with niping tool. This tool can be found n SAPRouter package.
niping -v -H myserver.mkysoft.com
Hostname/Nodeaddr verification:
===============================
Hostname of local computer: myserver (NiMyHostName)
FQHN of local computer: myserver.mkysoft.com (NiGetOwnFQDN)
Lookup of hostname: myserver (NiHostToAddr)
--> IP-Addr.: 10.10.1.5
Lookup of IP-Addr.: 10.10.1.5 (NiAddrToHost)
--> Hostname: myserver.mkysoft.com
Lookup of hostname: myserver.mkysoft.com (NiHostToAddr)
--> IP-Addr.: 10.10.1.5
Lookup of IP-Addr.: 10.10.1.5 (NiAddrToHost)
--> Hostname: myserver.mkysoft.com
Useful reports
Report | Description |
RS_REPAIR_SOURCE | ABAP Editor Call |
RDDIT076 | Change request/task status |
RS_STREE_OBJECTS_TO_REQ_GET | Auto adding related objects to request |
SPROX_LOG_TRANSP_OBJ_INSERT | Insert missing logical objects to request |
RFSEPA01 | Fill BSIS table after enabling line item display in FS00. |
SPROX_XSD2WSDL | Convert schema (XSD) to WSDL |
hybris system requirements
hybris minimum requirements by versions. Preferred DB charset is utf8 and collation is utf8_bin.
2011 | 2005 | 1905 | 1811 | 1808 | |
JVM | SapMachine 11 or Oracle JDK/JRE 11 | SapMachine 11 | SapMachine 11 | Oracle 8.0 or SAP JVM 8.1 | Oracle 8.0 or SAP JVM 8.1 |
DB | MySQL 5.7 (jdbc 5.1.x), 8.0 (jdbc 8.x) | MySQL 5.7 (jdbc 5.1.x), 8.0 (jdbc 8.x) | MySQL 5.6, 5.7 (jdbc 5.1.x), 8.0 (jdbc 8.x) | MySQL 5.6, 5.7 (jdbc 5.1.x) ) | MySQL 5.6, 5.7 (jdbc 5.1.x) ) |
Solr | 8.6 | 8.4.0 | 7.7 | 7.5 | 7.4 |
ImageMagick | 6.7.3-5 | 6.7.3-5 | 6.7.3-5 | 6.7.3-5 | 6.7.3-5 |
Tomcat | 8.5.56 | 8.5.51 | 8.5.40 | 8.5.40 |
hybris installer failed
If you are getting error while installing receipt like below, although you have set the parameter, check your maven settings for central repositories URLs start with HTTPS.
******************************************************************************************************** Either platform properties or system environment does not have the required property 'initialpassword.admin' set. Please make sure to provide it in the recipe or in the system environment. If you are running recipe using installer application you can set required property via option -A local_property:initialpassword.admin=property_value If missing property is initialpassword.admin then you can set it up using shortcut -A initAdminPassword=admin_password ********************************************************************************************************
Maven disabled HTTP repositories. You can use below sample maven config file at <user-home>\.m2\settings.xml.
<?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <profiles> <profile> <id>default</id> <repositories> <repository> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> <id>central</id> <url>https://repo1.maven.org/maven2</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> <id>central</id> <url>https://repo1.maven.org/maven2</url> </pluginRepository> </pluginRepositories> </profile> </profiles> <activeProfiles> <activeProfile>default</activeProfile> </activeProfiles> </settings>