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 :