SAP DEFINITION | What is SAP | SAP MEANING | SAP SOFTWARE | SAP ERP

This articles answers below questions: What does sap stand for ? SAP DEFINITION What is SAP . What is SAP software? Meaning of SAP ,ERP, SAP R3,SAP NETWEAVER. What is ERP. What is SAP ECC. What is SAP R3 SAP Definition or What does sap stand for or Full Form of SAP ? All these…

SAP HOSTAGENT UPGRADE

Download and Uncar latest host agent file from SAP market place ,here we uncared under /usr/sap/TEMP. Execute command “./saphostexec -upgrade” as root. # ./saphostexec -upgrade Upgrade service [Thr 01] Tue Sep 22 06:55:55 2015 [Thr 01] *** WARNING => HostExecUpgrade initialization – Unable to stat /usr/sap/hostctrl/exe/libslcryptokernel.o: No such file or directory [HostExecAuto 125] [Thr 01]…

JAVA Dosn’t start after oracle 12c upgrade with ORA-28040 No matching authentication Protocol error

Java doesn’t come up after oracle 12c upgrade ,We get ORA-28040 No matching authentication Protocol error. Error :Below error we’ll get in Java trace logs under work directory.   “com.sap.engine.bootstrap.SynchronizationException: Database initialization failed! Check database properties! com.sap.engine.frame.core.configuration.ConfigurationException: Error while connecting to DB. com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.createConnection(DBConnectionPool.java:384) Caused by: java.sql.SQLException: ORA-28040: No matching authentication protocol at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:113) “ This…

GRC 10 installation Complete guide high level

GRC 10.1 installation Guide high level steps: SAP Access Control 10.1, Process Control 10.1, and Risk Management 10.1 are part of the SAP solutions for governance, risk, and compliance (GRC). SAP Access Control 10.1 runs on SAP NetWeaver 7.40 SP02 (on non-HANA or HANA databases). From Basis side high level steps for installation are mentioned…

What is SAP ECC ,ERP and SAP Netweaver -Confusion ?

Always we get confusion in ECC ,ERP and SAP Netweaver,Also one of the favorite question of interviewer: What is SAP Netwaver: SAP Netweaver is the application and technology platfrom for all SAP-Based Application, From SAP Netweaver 2004 onwards all the SAP present and future SAP Applications are based on Netweaver. Netweaver has different stacks as…

SAP WEB DISPATCHER INSTALLATION / REBUILD

SAP WEB DISPATCHER INSTALLATION Below are the steps that we performed on kernel 720 for web dispatcher installation / rebuild— ================================================================================ – NW702/720 – Web dispatcher – rebuild tasks on KERNEL 720 1) shutdown webdisp that is running on older version( if still running). ==================================================================================================== :adm 33> pwd /usr/sap//sapwebdisp :adm 34> ls -ltr total 12672 -rwsr-x—…

SAP SYSTEM STOP | START | MEMORY CLEAN ON UNIX

This blog covers all SAP Unix commands to Bounce SAP systems and clean memory: <iframe src=”//www.googletagmanager.com/ns.html?id=GTM-NKZ9FM” height=”0″ width=”0″ style=”display:none;visibility:hidden”></iframe> SAP System Bounce Sequence with all commands on Unix: Batch Job Hold To hold critical batch jobs and check active jobs before bringing down application Shutdown System stopsap all(stop sap system) Kill remaing processes ps –ef|grep…

TDMS- TEST DATA MIGRATION SERVER — PRESTEPS

SAP Test Data Migration Server (SAP TDMS) is a high-speed data tool that transfers business data from your SAP production system to your development, test, quality training system. By enabling the transfer of just the relevant set of application data from the SAP production system, SAP TDMS allows you to create a lean and consistent…

HOW TO CHANGE SCHEMA PASSWORD FROM BRTOOLS

PASSWORD CHANGE FROM BRTOOLS: Please follow similar steps as below: Open brtools >> brtools BR0651I BRTOOLS 7.20 (33) BR0280I BRTOOLS time stamp: 2013-08-05 12.28.27 BR0656I Choice menu 1 – please make a selection ——————————————————————————- BR*Tools main menu 1 = Instance management 2 – Space management 3 – Segment management 4 – Backup and database copy…

HOW TO CHECK ORACLE TABLESAPCE USAGE

OPEN SQLPLUS — sqlplus / as sysdba Execute below query : select a.TABLESPACE_NAME, round(total,1) Total_M, round(free) Free_M, round(100*(1-free/total),1) Usage from (select TABLESPACE_NAME,sum(BYTES)/(1024*1024) total from dba_data_files group by TABLESPACE_NAME) a ,(select TABLESPACE_NAME,sum(BYTES)/(1024*1024) free from dba_free_space group by TABLESPACE_NAME) b where a.TABLESPACE_NAME=b.TABLESPACE_NAME(+) order by 4 DESC; Output will show all tablesapce usages :