MSSCHF03 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 MSSCHF03 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!
SAPSCRIPT_ATTRIB_GRAPHIC_BDS call function 'SAPSCRIPT_ATTRIB_GRAPHIC_BDS' exporting i_object = g_stxbitmaps-tdobject i_name = g_stxbitmaps-tdname i_id = g_stxbitmaps-tdid i_btype = g_stxbitmaps-tdbtype read_only = true importing e_fuser = g_bds_properties-fuser e_fdate = g_bds_properties-fdate e_ftime = g_bds_properties-ftime e_luser = g_bds_properties-luser e_ldate = g_bds_properties-ldate e_ltime = g_bds_properties-ltime e_description = g_bds_properties-description e_resolution = g_stxbitmaps-resolution e_resident = g_stxbitmaps-resident e_autoheight = g_stxbitmaps-autoheight e_widthtw = g_stxbitmaps-widthtw e_heighttw = g_stxbitmaps-heighttw e_widthpix = g_stxbitmaps-widthpix e_heightpix = g_stxbitmaps-heightpix e_compressed = g_stxbitmaps-bmcomp exceptions bds_info_failed = 1 not_found = 2 others = 3.
READ_TEXT call function 'READ_TEXT' exporting id = g_stxh-tdid language = g_stxh-tdspras name = g_stxh-tdname object = g_stxh-tdobject importing header = l_header tables lines = l_lines exceptions not_found = 1 others = 2.
SAPSCRIPT_CALC_BITMAP_SIZE call function 'SAPSCRIPT_CALC_BITMAP_SIZE' exporting header = l_header importing width_twip = l_width height_twip = l_height dots_per_inch = l_dpi tables lines = l_lines exceptions no_bitmap_file = 1 bad_bitmap_type = 1 others = 3.
SAPSCRIPT_CHANGE_BITMAP_ATT call function 'SAPSCRIPT_CHANGE_BITMAP_ATT' exporting dots_per_inch = g_techinfo-resolution auto_height = g_techinfo-autoheight resident = g_techinfo-resident read_only = true header = l_header importing cur_dots_per_inch = g_techinfo-resolution cur_auto_height = g_techinfo-autoheight cur_resident = g_techinfo-resident tables lines = l_lines exceptions no_bitmap_file = 1 bad_bitmap_type = 1 others = 3.
READ_TEXT call function 'READ_TEXT' exporting id = g_stxh-tdid language = g_stxh-tdspras name = g_stxh-tdname object = g_stxh-tdobject importing header = l_header tables lines = l_lines exceptions not_found = 1 others = 2.
SAPSCRIPT_CHANGE_BITMAP_ATT call function 'SAPSCRIPT_CHANGE_BITMAP_ATT' exporting dots_per_inch = g_techinfo-resolution auto_height = g_techinfo-autoheight resident = g_techinfo-resident read_only = false header = l_header tables lines = l_lines exceptions no_bitmap_file = 1 bad_bitmap_type = 1 others = 3.
SAPSCRIPT_CALC_BITMAP_SIZE call function 'SAPSCRIPT_CALC_BITMAP_SIZE' exporting header = l_header importing width_twip = l_width height_twip = l_height dots_per_inch = l_dpi tables lines = l_lines exceptions no_bitmap_file = 1 bad_bitmap_type = 1 others = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.