RN2GL_PROPOSAL_LOG is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Using the report you can display and delete the logs of the report
If you would like to execute this report or see the full code listing simply enter RN2GL_PROPOSAL_LOG 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: P_DATE_F = D .
Selection Text: P_DATE_T = D .
Selection Text: P_LDEL = D .
Selection Text: P_LDIDEL = D .
Selection Text: P_LDIS = D .
Selection Text: P_OBJECT = D .
Selection Text: P_SUBOBJ = D .
Title: Treatment Pathway: Logs of Deleted Pathway Proposals
Text Symbol: 010 = Display and Delete Logs of Deleted Pathway Proposals
Text Symbol: 020 = Display Logs of Deleted Pathway Proposals
Text Symbol: B10 = Selection Criteria:
Text Symbol: B98 = Processing
INCLUDE RNDATA00.
No SAP DATABASE tables are accessed within this REPORT code!
ISH_AUTH_CHECK_REPORT_GROUP CALL FUNCTION 'ISH_AUTH_CHECK_REPORT_GROUP' EXPORTING repid = l_reportid repgroup = 'N_2_GLMA' IMPORTING rc = l_rc.
BAL_DB_SEARCH CALL FUNCTION 'BAL_DB_SEARCH' EXPORTING i_s_log_filter = gs_log_filter IMPORTING e_t_log_header = gt_log_header EXCEPTIONS OTHERS = 0.
BAL_DB_LOAD CALL FUNCTION 'BAL_DB_LOAD' EXPORTING i_t_log_header = gt_log_header EXCEPTIONS OTHERS = 0.
BAL_DSP_PROFILE_STANDARD_GET CALL FUNCTION 'BAL_DSP_PROFILE_STANDARD_GET' IMPORTING e_s_display_profile = gs_display_profile.
BAL_DB_DELETE CALL FUNCTION 'BAL_DB_DELETE' EXPORTING i_t_logs_to_delete = gt_log_header i_with_commit_work = on EXCEPTIONS no_logs_specified = 1 OTHERS = 2.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = ps_display_profile IMPORTING e_s_exit_command = gs_exit_command EXCEPTIONS profile_inconsistent = 1 internal_error = 2 no_data_available = 3 no_authority = 4 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.
RN2GL_PROPOSAL_LOG - Treatment Pathway: Logs of Deleted Pathway Proposals RN2GL_PROPOSAL_LOG - Treatment Pathway: Logs of Deleted Pathway Proposals RN2GL_PROPOSAL_DELETE - Treatment Pathway: Delete Proposals for Patient Pathway RN2GL_PROPOSAL_DELETE - Treatment Pathway: Delete Proposals for Patient Pathway RN2GL_MIGRATE - Pathways: Conversion RN2GL_MIGRATE - Pathways: Conversion