Friday, June 20, 2014

HOW TO SAP - Tables to find Tcode and Programs

  1. To find tcode, use table TSTC

  2. To find program, user table TRDIR or TRDIRT

HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



HOW TO SAP - Tables to find Tcode and Programs

HOW TO SAP - Change text on main SAPGui logon screen

Note 205487 – Own text on SAPGui logon


  1. Tcode SE61

  2. Document Class > General Text

  3. Create

  4. Now enter test and save document as “ZLOGIN_SCREEN_INFO”

HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



HOW TO SAP - Change text on main SAPGui logon screen

Thursday, June 19, 2014

HOW TO SAP - RUN BDLSS (new)

After client copy, you have to perform BDLSS

http://help.sap.com/saphelp_nw04/helpdata/EN/33/c823dbaea911d6b29500508b6b8a93/content.htm


  1. Tcode BDLSS > Start

  2. Enter the Source client and target client (newly created client)

  3. Execute

HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



HOW TO SAP - RUN BDLSS (new)

HOW TO SAP - command to login to sap system

  1. Start > Run

  2. sapgui <server> <instance>

  3. Example : sapgui r3dev 00

HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



HOW TO SAP - command to login to sap system

Wednesday, June 18, 2014

HOW TO SAP - SAPCAR all *.car files

  1. First search for sapcar.exe. Its usually located at \usr\sap\sid\dvebmgs00\exe

  2. Copy the sapcar.exe to the folder where you saved all the *.sar files.

  3. Start > Run > cmd > browser to the folder with *.sar files

  4. Execute SAPPCAR -xvf  “.sar”

Without ” ” it will not work.

HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



HOW TO SAP - SAPCAR all *.car files

HOW TO MASS LOCK USER with SQL COMMAND

Execute this SQL command

  • update SID.USR02 set UFLAG=64 where MANDT=’110′ and BNAME != ‘SAP*’;    

  • Explain : UFLAG=64 means lock

  • BNAME !=’SAP*’ means lock everyone except SAP*

Alternately, try the below SQL command:


UPDATE [hrs].[USR02]

SET UFLAG = ’64′

WHERE (UFLAG = ’0′) 

AND NOT (BNAME like ‘SAP%’ OR BNAME = ‘DDIC’ OR BNAME = ‘TMSADM’ 

         OR BNAME like ‘J2EE%’ OR BNAME like ‘SLD%’ OR BNAME = ‘JCO_DATA’

         OR BNAME = ‘BASIS_ADMIN’)


HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



HOW TO MASS LOCK USER with SQL COMMAND

HOW TO SAP - MASS UNLOCK USER WITH SQL COMMAND

Unlock support team :     
update sid.USR02 set UFLAG=0 where MANDT=’110′ and BNAME in
(‘DDIC’,
 ‘SAP*’,
 ‘ALEREMOTE’,
 ‘WF-BATCH’,
 ‘TMSADM’,
 ‘ITOUSER’,
 ‘SAPCPIC’,
 ‘SAPJSF’,
 ‘J2EE_ADMIN’,
 ‘J2EE_GUEST’,
 ‘SAP ADMIN’
)         
          

OR you may unlock all user with
Unlock user :     
update sid.USR02 set UFLAG=0 where MANDT=’110′      


HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



HOW TO SAP - MASS UNLOCK USER WITH SQL COMMAND

Tuesday, June 17, 2014

ST01 return codes

ST01 return codes

0 Auth check passed
1 No auth
2 Too many parameters for auth check
3 Object not contained in user buffer
4 No profile contained in user buffer
6 Authorization check incorrect
7,8,9 Invalid user buffer


HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



ST01 return codes

HOW TO SAP - Upload Protected Area requires a username and password

  1. You get below error message when login to portal even though SSO has been configured

  2. Visual Admin > Services > Configuration Adapter > cluster_data > server > cfg > services > 

  3. Click Edit

  4. Select PropertySheet com.sap.security.core.ume.service

  5. Edit ume.logon.security.relax_domain.level. Change value from 1 to 2

  6. Restart SAP


HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



HOW TO SAP - Upload Protected Area requires a username and password

HOW TO SAP - Change "Upload Enabled" parameter from the PutServlet to false.

  1. Visual Admin

  2. Services > configuration adapter > configurations > cluster_data > server > presistent > servlet_jsp

  3. Edit global-web.xml

  4. Download it to you local machine

  5. Edit the xml file and locate “upload enable” and change parameter from true to false

  6. Save the xml file and upload back

  7. Restart SAP

HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



HOW TO SAP - Change "Upload Enabled" parameter from the PutServlet to false.

Monday, June 16, 2014

How to SAP - liveCache log full

Livecache is not responding due to log full. Tcode LCA03 and other liveCache could not be executed.

  1. Tcode LC10 > You notice error was Log Full

  2. Login to OS Level

  3. Open MaxDB

  4. Connect your database

  5. Perform log backup > Instance > Backup > Backup Wizard

  6. Next

  7. Select Log Backup > Next

  8. Enter name for the backup.
    Type in the folder which you want to save the  log file.
    LCQ_LOG is the backup file name.

  9. Click Start and wait. It will auto shrink the log file once backup completed.

HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



How to SAP - liveCache log full

Sunday, June 15, 2014

HOW TO SAP - ACTIVITY MONITOR FOR MS SQL 2008 R2

  1. Right click on root node > Activity Monitor

  2. It will take sometime to load on slower system

HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



HOW TO SAP - ACTIVITY MONITOR FOR MS SQL 2008 R2

How to SAP - SNC settings on Front End

  1. SAP Logon > Right Click any entries > Properties

  2. Network Tab > Check Activate Secure Network Communication

  3. SNC Name > p:SAPServiceSID@domain.com

  4. OK




HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



How to SAP - SNC settings on Front End

HOW TO SAP - PFCG TRANSPORT BUTTON DISABLE

PFCG transport button has been greyed out or disable


  1. Tcode SHD0

  2. Enter the follow

  3. Button is invisible due to this variant. Deactived this variant and transport button is now visible again


HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



HOW TO SAP - PFCG TRANSPORT BUTTON DISABLE

Saturday, June 14, 2014

HOW TO SAP - GRC creating connectors

Connector in GRC like ABAP RFC. Connector is used to connect front end GRC to the backend ABAP system.

  1. Open GRC CUP > Configuration > Connectors > Create Connectors

  2. Fill in the details

  3. Now you may test the connection

  4. If successful, you will see below

HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



HOW TO SAP - GRC creating connectors

SAP HOW TO GRC Add CUA SYSTEM

CUA system must also be maintain in front end GRC – not just back end  ABAP CUA system.

  1. Login to GRC system

  2. Go Configuration > CUA System

  3. Create (system is your child while CUA system is the parent)

    Save



HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



SAP HOW TO GRC Add CUA SYSTEM

HOW TO SAP - Check IGS services in portal

  1. Open this link http://server:40XX80/

  2. Where XX is the instance number

  3. You will see this result:


HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



HOW TO SAP - Check IGS services in portal

Friday, June 13, 2014

STMS &#62; STORAGE_FREE_FAILED

STMS failed with abap dump “STORAGE_FREE_FAILED”


  1. SNote 148005 and 159616.

  2. Kernel patch in Release 4.5B.

  3. In Release 4.5A, the downwards compatible 4.5B kernel (with the corresponding patch level) must be imported.


HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



STMS > STORAGE_FREE_FAILED

STMS > Transport button mising

Transport button(truck) missing

STEPS


  1. One of the transport request from the import buffer/queue does not have the “Target Client “.

  2. Click on “set target client” button and enter a client number.

  3. Buttons will appear after this

HOW TO SAP – A STEP BY STEP MANUAL GUIDE WITH SCREEN SHOTS



STMS > Transport button mising
Powered by Blogger.

 

© 2013 Sap Basis. All rights resevered. Designed by Templateism

Back To Top