Tuesday, September 29, 2015

CRM User status management

To create a user status profile, please go to T-cd: SPRO -> SAP Customizing Implementation Guide -> Customer Relationship Management -> Transactions -> Basic Settings -> Status Management -> Define Status Profile for User Status
 
 

 

Thursday, September 17, 2015

Tuesday, September 15, 2015

Wednesday, September 9, 2015

FB04 - FI Accounting document Change logs

FI Accounting document Change logs
 
Go to FB04 transaction.  Click on Environment -> Multiple display.  Follow as per screenshots below.  Please call me if you find any issues.  Thank you.
 
 
 
 
 
 

Tuesday, September 8, 2015

SLG1 Logging setup


First, we need to crete Object 'ZCMS' and then below code need to be put for Logging


REPORT  ZRKTEST11.
DATA: lc_log TYPE REF TO CL_EZLOG.

CREATE OBJECT LC_LOG
  EXPORTING
    MSGOBJECT = 'ZCMS'
    APPENDMODE = '1'
    INTERNAL = 'X'.

  CALL METHOD LC_LOG->ADDMSG
    EXPORTING
      MSGTY    = 'S'
      MSGID    = 'ZC'
      MSGNO    = '002'
      MSGV1    = 'Test by Rajesh'
      MSGV2    = '2nd var'
      MSGV3    = '3rd'      .

  CALL METHOD LC_LOG->SAVE
    EXCEPTIONS
      EMPTY       = 1
      FAILED      = 2
      others      = 3.
  IF SY-SUBRC <> 0.
  ENDIF.
  FREE lc_log.

USR41_MLD - Multiple Logins details for user

 
Table: USR41_MLD  -  You can see users who logged in multiple times simultaneously (by clicking second option given at Logon screen)
 
 
Table USR41 gives Terminal id details
 

 

Monday, September 7, 2015

Friday, September 4, 2015

CRM - Raise global message in Quote/Order

 Raise error in DO_VALIDATE_INPUT method as shown:
THIS WILL NOT BLOCK SAVING
To block saving use ORDER_SAVE BADI - method CHECK_BEFORE_SAVE

If there are error messages:
RAISE do_not_save.

SCMP - Compare table entries between systems (Dev, Live, QA)

SCMP (tcode) – To compare table entries between Dev and Live systems