R_SCREEN_CONVERSION 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_SCREEN_CONVERSION into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
LPSC - RF Screen Conversion Tool
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_APL = Application
Title: Screen Conversion Tool
Text Symbol: 001 = Copy display profile
Text Symbol: 002 = Edit display profile
Text Symbol: 005 = Undo deletions
Text Symbol: 006 = Reset field
Text Symbol: 008 = Delete field
Text Symbol: 010 = Cancel processing
Text Symbol: 011 = Display profile exists. Change it?
Text Symbol: 012 = Analyze results
Text Symbol: 013 = Fields
Text Symbol: 014 = Label only
Text Symbol: 015 = Delete field label
INCLUDE SCREEN_CONVERSION_INC.
No SAP DATABASE tables are accessed within this REPORT code!
RS_SET_SELSCREEN_STATUS CALL FUNCTION 'RS_SET_SELSCREEN_STATUS' EXPORTING p_status = 'LMBT_STATUS' TABLES p_exclude = lt_exclude.
LMBT_SCREEN_CONVERT CALL FUNCTION 'LMBT_SCREEN_CONVERT' EXPORTING iv_applc = p_apl iv_src_dprof = lv_dprof_scr iv_src_locat = lv_locat_scr iv_dst_dprof = rlmbt-dprof_dst iv_dst_locat = rlmbt-locat_dst iv_dprof_stxt = rlmbt-dprof_stxt iv_dprof_ltxt = rlmbt-dprof_ltxt iv_func_group_sscr = rlmbt-fngrp_sscr iv_func_group_tmpl = rlmbt-fngrp_tmpl iv_length = rlmbt-height iv_width = rlmbt-width iv_pb_size = rlmbt-pb_size iv_pb_qty = rlmbt-pb_qty iv_analyze = lv_analyze TABLES it_edit = lt_edit et_analyze = lt_analyze.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.