RGSGRAPH is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program enables you to display or print the graphics for the set...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RGSGRAPH 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: TT_LEVEL = ?...(TT_LEVEL)
Selection Text: SHOW_SUF = ?...(SHOW_SUF)
Selection Text: NO_VAL_F = Do not display values
Selection Text: GL_TABLE = Table
Selection Text: GL_SETNR = Set
Selection Text: CALL_STT = ?...(CALL_STT)
Title: Set Graphics
Text Symbol: 030 = *** All values ***
Text Symbol: 022 = Line text....
Text Symbol: 021 = Symbolic line name...
Text Symbol: 020 = Print class "Dru"...........
Text Symbol: 019 = Field text.
Text Symbol: 018 = Value entry
Text Symbol: 017 = "C" checking assignment....
Text Symbol: 016 = "P" print class............
Text Symbol: 015 = "B" +/- sign selection.....
Text Symbol: 014 = "S" output suppression.....
Text Symbol: 013 = Line number..
Text Symbol: 012 = Text.........
Text Symbol: 011 = Indicator :
Text Symbol: 010 = Display Value
Text Symbol: 009 = Symbolic set ID.....
Text Symbol: 008 = Display Set
Text Symbol: 007 = Disp. set entries...
Text Symbol: 006 = Disp. value entries.
Text Symbol: 005 = Unique desired.........
Text Symbol: 004 = "S" output suppression.....
Text Symbol: 003 = Field name...
Text Symbol: 002 = Table......
Text Symbol: 001 = Set........
INCLUDE MGSBMD80.
No SAP DATABASE tables are accessed within this REPORT code!
G_SET_OR_GROUP_AUTHORITY CALL FUNCTION 'G_SET_OR_GROUP_AUTHORITY' EXPORTING i_setid = u_setnr i_actvt = '03'.
G_SET_DECRYPT_SETID CALL FUNCTION 'G_SET_DECRYPT_SETID' EXPORTING setid = set_name IMPORTING shortname = loc_shortname EXCEPTIONS OTHERS = 0.
G_SET_GET_NEXT_NEIGHBOR CALL FUNCTION 'G_SET_GET_NEXT_NEIGHBOR' EXPORTING index = c-tmsb-seqnr EXCEPTIONS end_of_neighbors = 1 invalid_increment = 2 invalid_index = 3 OTHERS = 4.
G_CONVERT_OUTPUT CALL FUNCTION 'G_CONVERT_OUTPUT' EXPORTING convexit = dfies-convexit datatype = dfies-datatype length_to_convert = 24 output_length = dfies-outputlen value_to_convert = c-tval-from IMPORTING output_value = c-tval-from EXCEPTIONS OTHERS = 0.
G_CONVERT_OUTPUT CALL FUNCTION 'G_CONVERT_OUTPUT' EXPORTING convexit = dfies-convexit datatype = dfies-datatype length_to_convert = 24 output_length = dfies-outputlen value_to_convert = c-tval-to IMPORTING output_value = c-tval-to EXCEPTIONS OTHERS = 0.
G_FIELD_READ CALL FUNCTION 'G_FIELD_READ' EXPORTING table = table fieldname = field add_flag = 'X' text_flag = 'X' IMPORTING field_attr = dfies.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.