T-Code
|
Description
|
SOLMAN_SETUP | SAP Solution Manager Configurations |
SOLMAN_SETUP_ADMIN | SAP Solution Manager Setup Admin |
SOLMAN_SOL_DISP | Display solutions |
SOLMAN_WORKCENTER | SAP Solution Manager: Work Centers |
SOLMAP | Maintain Solution Maps |
SOLUTION_GRAPHICS | Display graphic for a solution |
SOLUTION_MANAGER | SAP Solution Manager |
SOLUTION_MANAGER_BSP | SAP Solution Manager (Web) |
SOLUTION_TRANSFER | Solution Manager: Solution Transfer |
SOLMANTRANSFER | Configuration of Data Sent to SAP |
SOLMAN_CONNECT | Service Connections |
SOLMAN_DIRECTORY | Solution Manager Directory |
SOLMAN_DOWNTIME_MGMT | Start Application Downtime Manager |
SOLMAN_EWA_ADMIN | EarlyWatch Alert Settings |
SOLMAN_INCIDENT_ISV | Updating incidents from SAP OSS -ISV |
SOLMAN_INCIDENT_UPD | Updating incidents from SAP OSS |
SOLMAN_ISSUE_MGMT | SAP Solution Manager |
SOLMAN_LIC_UD | License Management: Up and Download |
SOLMAN_PLUGINLIST | Plug-In List SOLMAN |
SOLMAN_PROBLEM_MGMT | SAP Solution Manager |
SOLMAN_PROJECT | Solution Manager Project Overview |
SOLMAN_PROJECTX | Solution Manager Project Overview |
SOLMAN_SAPROUTER | Maintenance of SAProuter update data |
SOLMAN_SERVICES | SAP Solution Manager Self Services |
SOLMAN_SETUP | SAP Solution Manager Configurations |
SOLMAN_SETUP_ADMIN | SAP Solution Manager Setup Admin |
RZ70 | SLD Administration |
SMSY | Solution Manager System Landscape |
Wednesday, July 18, 2012
Solution Manager T-Codes
Wednesday, June 27, 2012
SAP Languages Setup
You can check the installed Languages. Default Languages are German and English.
To add more follow the below link.
http://help.sap.com/saphelp_nw70/helpdata/en/a3/30ad5296b511d384bb0060975b04f3/content.htm
http://scn.sap.com/thread/1482841
Friday, May 18, 2012
SAP Sava Password in SAP Shortcut
Wednesday, April 11, 2012
Wednesday, March 28, 2012
Wednesday, February 1, 2012
Determining the Tablespace Type
db2 get snapshot for tablespaces on
To check information about the automatic extend and automatic storage status of all tablespaces, you can also use the following SQL statement:
db2 "SELECT SUBSTR(TBSP_NAME,1,10) AS TBSP_NAME, TBSP_TYPE, TBSP_CONTENT_TYPE, TBSP_USING_AUTO_STORAGE, TBSP_AUTO_RESIZE_ENABLED FROM TABLE(SNAP_GET_TBSP_V91('')) AS T"
A value of 1 in the columns TBSP_USING_AUTO_STORAGE and TBSP_AUTO_RESIZE_ENABLED indicates that the respective feature is enabled, 0 would indicate that it is not enabled.
To check if the database is enabled for automatic storage, use the following command:
db2 "get snapshot for database on
To check if the tablespaces in your DB2 9.7 installation have the reclaimable storage attribute, use the following SQL statement:
db2 "SELECT varchar(tbsp_name, 30) as tbsp_name, tbsp_type, reclaimable_space_enabled FROM TABLE(MON_GET_TABLESPACE('',-2)) AS t"
A value of 1 in the reclaimable_space_enabled column would indicate that this tablespace has the reclaimable storage attribute.
Monday, January 16, 2012
Windows SAP Start and SAP stop script
Stop SAP Script
================================================
@echo off
echo *****************************************************************
echo +++ Stop SAP Time stamp: %date% %time% +++
REM ----------------------------------------------------------
REM Stop SAP Services
REM ----------------------------------------------------------
echo.
echo Stopping SAP Instance ...
echo.
D:\usr\sap\WPT\SYS\exe\uc\NTAMD64\stopsap.exe name=wpt nr=00 SAPDIAHOST=RAMANSAP
IF %ERRORLEVEL% NEQ 0 (
echo.
echo Stopping SAP Instance failed! Please inform system administrator.
echo. exit /B 1
)
net stop saposcol
IF %ERRORLEVEL% NEQ 0 (
echo.
echo Stopping SAP Instance failed! Please inform system administrator.
echo. exit /B 1
)
echo ----------------------------------------------------------
echo Stop DB2 DB
echo ----------------------------------------------------------
echo.
echo Stopping DB2 Database ...
echo.
net stop DB2WPT-0
IF %ERRORLEVEL% NEQ 0 (
echo.
echo Stopping DB2 Database failed! Please inform system administrator.
echo.
exit /B 1
)
echo.
echo -----------------------------------------------------------
echo finished
echo -----------------------------------------------------------
================================================
Start SAP Script
================================================
@echo off
echo ----------------------------------------------------------
echo Start DB2 DB
echo ----------------------------------------------------------
echo.
echo Starting DB2 Database ...
echo.
net start DB2WPT-0
IF %ERRORLEVEL% NEQ 0 (
echo.
echo Starting DB2 Database failed! Please inform system administrator.
echo.
exit /B 1
)
echo.
echo *****************************************************************
echo +++ Start SAP Time stamp: %date% %time% +++
REM ----------------------------------------------------------
REM Start SAP Services
REM ----------------------------------------------------------
echo.
echo Starting SAP Instance ...
echo.
D:\usr\sap\WPT\SYS\exe\uc\NTAMD64\startsap.exe name=wpt nr=00 SAPDIAHOST=RAMANSAP
IF %ERRORLEVEL% NEQ 0 (
echo.
echo Stopping SAP Instance failed! Please inform system administrator.
echo. exit /B 1
)
D:\usr\sap\WPT\SYS\exe\uc\NTAMD64\startsap.exe name=wpt nr=01 SAPDIAHOST=RAMANSAP
IF %ERRORLEVEL% NEQ 0 (
echo.
echo Stopping SAP Instance failed! Please inform system administrator.
echo. exit /B 1
)
net start saposcol
IF %ERRORLEVEL% NEQ 0 (
echo.
echo Stopping SAP Instance failed! Please inform system administrator.
echo. exit /B 1
)
echo -----------------------------------------------------------
echo finished
echo -----------------------------------------------------------