SLCA_LCK_FORMS is a standard ABAP INCLUDE 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_FORMS 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
GET_JOB_RUNTIME_INFO CALL FUNCTION 'GET_JOB_RUNTIME_INFO' IMPORTING jobcount = lv_jobcount jobname = lv_jobname EXCEPTIONS no_runtime_info = 1 OTHERS = 2.
BP_SET_APPLICATION_RC CALL FUNCTION 'BP_SET_APPLICATION_RC' EXPORTING jobname = lv_jobname jobcount = lv_jobcount stepcount = 1 app_rc = lv_rc EXCEPTIONS could_not_set_rc = 1 job_does_not_exist = 2 step_does_not_exist = 3 not_in_batch = 4 wrong_param = 5 OTHERS = 6.
LCA_LCK_ENQUEUE CALL FUNCTION 'LCA_LCK_ENQUEUE' EXPORTING iv_owner = iv_owner iv_area = iv_area iv_lock = lv_lock it_charcs = lt_charcs IMPORTING et_rc = gt_rc EXCEPTIONS lc_connect_failed = 1 lc_com_error = 2 lc_appl_error = 3 lock_conflict = 4 OTHERS = 5.
LCA_LCK_ENQUEUE CALL FUNCTION 'LCA_LCK_ENQUEUE' "#EC * EXPORTING iv_owner = iv_owner iv_area = iv_area iv_lock = lv_lock it_charcs = lt_charcs IMPORTING et_rc = gt_rc es_conflict = ls_conflict EXCEPTIONS lc_connect_failed = 1 lc_com_error = 2 lc_appl_error = 3 lock_conflict = 4 OTHERS = 5.
LCA_LCK_LIST_SINGLE CALL FUNCTION 'LCA_LCK_LIST_SINGLE' EXPORTING iv_area = is_lhead-area iv_lock = is_lhead-lock IMPORTING et_rc = lt_rc es_lock = ls_lockhead et_charcs = lt_sels EXCEPTIONS lc_connect_failed = 1 lc_com_error = 2 lc_appl_error = 3 OTHERS = 4.
LCA_LCK_LIST_ALL CALL FUNCTION 'LCA_LCK_LIST_ALL' IMPORTING et_rc = gt_rc et_locks = lt_lockheads et_charcs = lt_charcs EXCEPTIONS lc_connect_failed = 1 lc_com_error = 2 lc_appl_error = 3 OTHERS = 4.
LCA_LCK_LIST_BY_OWNER CALL FUNCTION 'LCA_LCK_LIST_BY_OWNER' EXPORTING iv_owner = iv_owner IMPORTING et_rc = gt_rc et_locks = lt_lockheads et_charcs = lt_charcs EXCEPTIONS lc_connect_failed = 1 lc_com_error = 2 lc_appl_error = 3 OTHERS = 4.
LCA_LCK_LIST_BY_USER CALL FUNCTION 'LCA_LCK_LIST_BY_USER' EXPORTING iv_user = iv_user IMPORTING et_rc = gt_rc et_locks = lt_lockheads et_charcs = lt_charcs EXCEPTIONS lc_connect_failed = 1 lc_com_error = 2 lc_appl_error = 3 OTHERS = 4.
LCA_LCK_LIST_BY_AREA CALL FUNCTION 'LCA_LCK_LIST_BY_AREA' EXPORTING iv_area = iv_area IMPORTING et_rc = gt_rc et_locks = lt_lockheads et_charcs = lt_charcs EXCEPTIONS lc_connect_failed = 1 lc_com_error = 2 lc_appl_error = 3 OTHERS = 4.
LCA_LCK_LIST_SINGLE CALL FUNCTION 'LCA_LCK_LIST_SINGLE' EXPORTING iv_area = iv_area iv_lock = iv_lock IMPORTING et_rc = gt_rc es_lock = ls_lockhead et_charcs = lt_charcs 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 = iv_area it_locks = it_locks IMPORTING et_rc = gt_rc EXCEPTIONS lc_connect_failed = 1 lc_com_error = 2 lc_appl_error = 3 OTHERS = 4.
LCA_LCK_LIST_OWNERS CALL FUNCTION 'LCA_LCK_LIST_OWNERS' IMPORTING et_rc = gt_rc et_owners = lt_owners 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 = iv_owner IMPORTING et_rc = gt_rc EXCEPTIONS lc_connect_failed = 1 lc_com_error = 2 lc_appl_error = 3 OTHERS = 4.
LCA_LCK_RELOAD CALL FUNCTION 'LCA_LCK_RELOAD' IMPORTING et_rc = gt_rc EXCEPTIONS lc_connect_failed = 1 lc_com_error = 2 lc_appl_error = 3 OTHERS = 4.
LCA_LCK_CONSISTENCY CALL FUNCTION 'LCA_LCK_CONSISTENCY' IMPORTING et_rc = gt_rc EXCEPTIONS lc_connect_failed = 1 lc_com_error = 2 lc_appl_error = 3 OTHERS = 4.
LCA_LCK_STATISTICS CALL FUNCTION 'LCA_LCK_STATISTICS' IMPORTING et_rc = gt_rc et_infos = lt_infos EXCEPTIONS lc_connect_failed = 1 lc_com_error = 2 lc_appl_error = 3 OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.