CACS_BUSSTART_DIRECT 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 CACS_BUSSTART_DIRECT into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
CACS_BDTI_SEL_07 - Reactivate Commission Case Selection
CACS_BDTI_SEL_04 - Reset Commission Case Selection
CACS_BDTI_SEL_01 - Create Commission Case Selection
CACS_BDTI_SEL_03 - Display Commission Case Selection
CACS_BDTI_SEL_02 - Change Commission Case Selection
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.
Title: Program CACS_BUSSTART_DIRECT
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BUS_CONTROL_MAIN call function 'BUS_CONTROL_MAIN' EXPORTING i_objap = gv_objap i_aktyp = gv_aktyp i_action = gv_action i_xinit = gv_xinit i_xsave = gv_xsave i_xupdtask = gv_xupdtask i_appli_call = gv_appli_call i_varnr = gv_varnr i_otitl = gv_otitl i_sicht_start = gv_sicht_start i_xarchive = gv_xarchive i_xhelp = gv_xhelp IMPORTING e_state = e_state e_state_fcode = e_state_fcode e_chashlp = e_chashlp TABLES t_rltyp = gt_rltyp t_rltgr = gt_rltgr t_sicht = gt_sicht t_appli = gt_appli t_fldvl = gt_fldvl t_scrsel = gt_scrsel.
BUS_TBZ1E_SELECT_WITH_TCODE * call function 'BUS_TBZ1E_SELECT_WITH_TCODE' * EXPORTING * i_tcode = gv_tcode * TABLES * t_tbz1e = gt_tbz1e * EXCEPTIONS * not_found = 1 * others = 2.
BUS_CONTROL_MAIN * call function 'BUS_CONTROL_MAIN' * exporting * i_objap = tbz1e-objap * i_action = tbz1e-aktyp * tables * t_rltyp = gt_rltyp * t_rltgr = gt_rltgr.
BUS_CONTROL_MAIN CALL FUNCTION 'BUS_CONTROL_MAIN' EXPORTING i_objap = $case i_aktyp = akt_csi i_action = act_csi i_sicht_start = 'CACII2' i_xinit = ' ' *insertion D038916, 20030115, cmp note 587714 TABLES T_RLTYP = gt_rltyp.
CACS_SET_PARAMETER_ID * call function 'CACS_SET_PARAMETER_ID' * exporting * i_pid = 'CACSCASCALL' * i_value = bdti_new.
CACS_SET_PARAMETER_ID * call function 'CACS_SET_PARAMETER_ID' * exporting * i_pid = 'CACSCASCALL' * i_value = bdti_change.
CACS_SET_PARAMETER_ID * call function 'CACS_SET_PARAMETER_ID' * exporting * i_pid = 'CACSCASCALL' * i_value = bdti_reactivate.
CACS_SET_PARAMETER_ID * call function 'CACS_SET_PARAMETER_ID' * exporting * i_pid = 'CACSCASCALL' * i_value = bdti_show.
CACS_SET_PARAMETER_ID * call function 'CACS_SET_PARAMETER_ID' * exporting * i_pid = 'CACSCASCALL' * i_value = bdti_cancel.
CACS_SET_PARAMETER_ID * call function 'CACS_SET_PARAMETER_ID' * exporting * i_pid = 'CACSCASCALL' * i_value = bdti_show.
CACS_GET_PARAMETER_ID CALL FUNCTION 'CACS_GET_PARAMETER_ID' EXPORTING I_PID = 'CACSCASCALL' IMPORTING E_FIELD = tcode.
CACS_SET_PARAMETER_ID * call function 'CACS_SET_PARAMETER_ID' * exporting * i_pid = 'CACSCASCALL' * i_value = .
CACS_SET_PARAMETER_ID * call function 'CACS_SET_PARAMETER_ID' * exporting * i_pid = 'CACSCASCALL' * i_value = bdti_change.
CACS_SET_PARAMETER_ID * call function 'CACS_SET_PARAMETER_ID' * exporting * i_pid = 'CACSCASCALL' * i_value = bdti_reactivate.
CACS_SET_PARAMETER_ID * call function 'CACS_SET_PARAMETER_ID' * exporting * i_pid = 'CACSCASCALL' * i_value = bdti_show.
CACS_SET_PARAMETER_ID * call function 'CACS_SET_PARAMETER_ID' * exporting * i_pid = 'CACSCASCALL' * i_value = bdti_cancel.
CACS_SET_PARAMETER_ID * call function 'CACS_SET_PARAMETER_ID' * exporting * i_pid = 'CACSCASCALL' * i_value = bdti_show.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.