R_GJVB_BILLING 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 R_GJVB_BILLING 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.
INCLUDE R_GJVB_BILLING_TOP.
INCLUDE R_GJVB_BILLING_TREE.
INCLUDE R_GJVB_BILLING_GRID.
No SAP DATABASE tables are accessed within this REPORT code!
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'JVA_BILL_TREE' "structure in dictionary CHANGING ct_fieldcat = lt_fcat_tree[] EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'SMOUTPUT' CHANGING ct_fieldcat = lt_fcat_grid[].
MONI_PREPARE_OUTPUT CALL FUNCTION 'MONI_PREPARE_OUTPUT' TABLES lt_smmain = lt_smmain lt_batch = lt_batch lt_output = lt_smgjbr lt_status = lt_status.
MONI_PREPARE_OUTPUT CALL FUNCTION 'MONI_PREPARE_OUTPUT' TABLES lt_smmain = lt_smmain lt_batch = lt_batch lt_output = lt_smgjbt lt_status = lt_status.
MONI_PREPARE_OUTPUT CALL FUNCTION 'MONI_PREPARE_OUTPUT' TABLES lt_smmain = lt_smmain lt_batch = lt_batch lt_output = lt_smgj12 lt_status = lt_status.
MONI_PREPARE_OUTPUT CALL FUNCTION 'MONI_PREPARE_OUTPUT' TABLES lt_smmain = lt_smmain lt_batch = lt_batch lt_output = lt_smgj13 lt_status = lt_status.
MONI_PREPARE_OUTPUT CALL FUNCTION 'MONI_PREPARE_OUTPUT' TABLES lt_smmain = lt_smmain lt_batch = lt_batch lt_output = lt_smgj14 lt_status = lt_status.
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'STRUC_BILLING' CHANGING ct_fieldcat = alv_basic[].
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'STRUC_SELOUT_JOB' CHANGING ct_fieldcat = lt_fcat_cal[].
MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE' IMPORTING e_identification = gd_ident.
MESSAGES_STOP CALL FUNCTION 'MESSAGES_STOP' EXPORTING i_reset_identification = 'X' EXCEPTIONS a_message = 1 e_message = 2 w_message = 3 i_message = 4 s_message = 5 deactivated_by_md = 6 OTHERS = 7.
MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE' IMPORTING e_identification = gd_ident.
MESSAGES_DB_LOAD CALL FUNCTION 'MESSAGES_DB_LOAD' EXPORTING i_identification = gd_ident i_log_handle = wa_smmessage-log_handle EXCEPTIONS log_not_found = 1 log_already_loaded = 2 program_error = 3 wrong_identification = 4 not_active = 5 wrong_protocol = 6 messages_already_stored = 7 OTHERS = 8.
BAL_CNTL_REFRESH CALL FUNCTION 'BAL_CNTL_REFRESH' EXPORTING i_control_handle = control_handle.
BAL_DSP_PROFILE_NO_TREE_GET CALL FUNCTION 'BAL_DSP_PROFILE_NO_TREE_GET' IMPORTING e_s_display_profile = ls_bal_profile.
BAL_CNTL_CREATE CALL FUNCTION 'BAL_CNTL_CREATE' EXPORTING i_container = con_logs i_s_display_profile = ls_bal_profile IMPORTING e_control_handle = control_handle EXCEPTIONS profile_inconsistent = 1 internal_error = 2 OTHERS = 3.
JV_COLLECT_MESSAGE CALL FUNCTION 'JV_COLLECT_MESSAGE' EXPORTING msgid = class msgno = number status = type var1 = var1 var2 = var2 var3 = var3 var4 = var4 IMPORTING max_severity = ws_max_error.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.