SLCA_LCK_TESTTASK is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter SLCA_LCK_TESTTASK into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: GV_UE = Check the Lock Conflicts
Selection Text: GV_SE = Random Seed
Selection Text: GV_RA = Value Range
Selection Text: GV_OW = Lock Owner
Selection Text: GV_LO = Number of Locks
Selection Text: GV_IT = Number of Iterations
Selection Text: GV_ID = Task Name
Selection Text: GV_CO = With Consistency Check
Selection Text: GV_CH = Number of Characteristics
Selection Text: GV_AR = Lock Area
Title: Lock Server Test (Single Process)
Text Symbol: 021 = Number of Lock Conflicts
Text Symbol: 020 = Number of Locks Set
Text Symbol: 019 = Iteration
Text Symbol: 018 = Random Seed
Text Symbol: 017 = User
Text Symbol: 016 = Owner
Text Symbol: 015 = Area
Text Symbol: 014 = Lock
Text Symbol: 013 = Conflict check failed
Text Symbol: 012 = Could not analyze conflict
Text Symbol: 011 = Cannot write application RC
Text Symbol: 010 = Cannot obtain runtime info
Text Symbol: 009 = The test ended successfully
Text Symbol: 008 = At least one error occurred
Text Symbol: 007 = Unknown error occurred at
Text Symbol: 006 = Error
Text Symbol: 005 = APP error occurred at
Text Symbol: 004 = Lock error occurred at
Text Symbol: 003 = LCA rout.error occurred at
Text Symbol: 002 = liveCache not accessible at
Text Symbol: 001 = liveCache
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = gv_out.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = gv_out.
LCA_LCK_ENQUEUE CALL FUNCTION 'LCA_LCK_ENQUEUE' EXPORTING iv_owner = gv_ow iv_area = gv_ar iv_lock = gv_lock it_charcs = gt_sels IMPORTING et_rc = gt_rc es_conflict = gs_lhead EXCEPTIONS lc_connect_failed = 1 lc_com_error = 2 lc_appl_error = 3 lock_conflict = 4 OTHERS = 5.
LCA_LCK_LIST_BY_OWNER CALL FUNCTION 'LCA_LCK_LIST_BY_OWNER' EXPORTING iv_owner = gv_ow IMPORTING et_rc = gt_rc et_locks = gt_lheads et_charcs = gt_sels EXCEPTIONS lc_connect_failed = 1 lc_com_error = 2 lc_appl_error = 3 OTHERS = 4.
LCA_LCK_DEQUEUE CALL FUNCTION 'LCA_LCK_DEQUEUE' EXPORTING iv_area = gv_ar it_locks = gt_locks IMPORTING et_rc = gt_rc EXCEPTIONS lc_connect_failed = 1 lc_com_error = 2 lc_appl_error = 3 OTHERS = 4.
LCA_LCK_DEQUEUE_OWNER CALL FUNCTION 'LCA_LCK_DEQUEUE_OWNER' EXPORTING iv_owner = gv_ow IMPORTING et_rc = gt_rc EXCEPTIONS lc_connect_failed = 1 lc_com_error = 2 lc_appl_error = 3 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
SLCA_LCK_TESTTASK - Lock Server Test (Single Process) SLCA_LCK_TESTTASK - Lock Server Test (Single Process) SLCA_LCK_TESTSYNC - Lock Server: Synchronization Test SLCA_LCK_TESTSYNC - Lock Server: Synchronization Test SLCA_LCK_TESTCOCKPIT - Test Cockpit for Lock Server Tests SLCA_LCK_TESTCOCKPIT - Test Cockpit for Lock Server Tests