Robot Framework Setup for SAP GUI Testing

Here i am assuming we have installed Robot framework if not follow this link. i have used pip for installing the library. For SAPGUILibrary follow below command for adding the SAPGUI library pip install robotframework-sapguilibrary We have to enable the SAP Server for accepting the User Scripting Login to SAPRun the transaction RZ10Select the default … Continue reading Robot Framework Setup for SAP GUI Testing

Expression Language (EL)

Immediate and Deferred Evaluation Syntax Those expressions that are evaluated immediately use the ${} syntax. Expressions whose evaluation is deferred use the #{} syntax. Immediate Evaluation Immediate evaluation expressions are always read-only value expressions.  The EL defines two kinds of expressions: value expressions and method expressions.  Referencing Objects Using Value Expressions Both rvalue and lvalue expressions can refer to … Continue reading Expression Language (EL)

Install LSI MegaRAID Storage Manger on Proxmox

1: Install MegaRaid CLI Add repo edit /etc/apt/sources.list add the entry deb http://hwraid.le-vert.net/debian jessie main here i am installing on debian (promox in debian based) and jessie version (proxmox 4.4.1) Then save the file and run the below command to trust or sign the above site. wget -O - https://hwraid.le-vert.net/debian/hwraid.le-vert.net.gpg.key | apt-key add - run the command #apt-get … Continue reading Install LSI MegaRAID Storage Manger on Proxmox

HOW TO SET JAVA_HOME ON MAC OS X

Trying to run a Java application on your Mac and need to set your JAVA_HOME?  Follow the instructions below to quickly and easily do it: Open Terminal Confirm you have JDK by typing “which java”. It should show something like /usr/bin/java. Check you have the needed version of Java, by typing “java -version”. JAVA_HOME is … Continue reading HOW TO SET JAVA_HOME ON MAC OS X

Proxmox : Web GUI not updating the Datacenter status

Problem with proxmox GUI and cluster management. From one node of the cluster I saw on /var/log/syslog file that Apr 12 16:34:37 t1 pveproxy[2502]: proxy detected vanished client connection and when we access to the Web GUI of that node, Show Node 't1' is down. The solution is to simulate a reboot of all the machines … Continue reading Proxmox : Web GUI not updating the Datacenter status

Hibernate + JPA + Spring-data-jpa + HANA Database

In my previous post we have created a HANA Database(Row) and we have created a Web application to create and see the Users with MySQL Now lets change the application to work with HANA DB and In SAP HANA Cloud Platform. 1: We need to Access the Database Using JNDI Data Source, Change the Data Source Name … Continue reading Hibernate + JPA + Spring-data-jpa + HANA Database

MySQL + Hibernate + spring-data-jpa + Java Config

Lets Create a Web based User Application (very Simple which has id and name) With following Maven Spring -MVC spring-data-jpa Hibernate MySQL JNDI I use eclipse IDE to create a "Dynamic Web Application" i have selected the "Dynamic web module" as  3.0 because i need to use this application to deploy in the SAP HANA Cloud, … Continue reading MySQL + Hibernate + spring-data-jpa + Java Config