IDOC_TAB_GENERATE_HTML is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name IDOC_TAB_GENERATE_HTML into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
EDID
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'IDOC_TAB_GENERATE_HTML' "
EXPORTING
idoc_type = " ledid_idoc_type IDoc Type
* release = SY-SAPRL " sy-saprl SAP Release
* version = '3' " edi_verrec-version
* docu_settings = " edi_usr
TABLES
idoc_struct = " ledid_t_idoc_struct
segments = " ledid_t_segment Segments
segment_structure = " ledid_t_segment_struct Segment structures
text_frameset = " line
text_index = " line
text_docu = " line
* CHANGING
* file = " char70
EXCEPTIONS
INTERNAL_ERROR = 1 " Internal Error
ILLEGAL_STRUCT_TYPE = 2 "
. " IDOC_TAB_GENERATE_HTML
The ABAP code below is a full code listing to execute function module IDOC_TAB_GENERATE_HTML including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| it_idoc_struct | TYPE STANDARD TABLE OF LEDID_T_IDOC_STRUCT,"TABLES PARAM |
| wa_idoc_struct | LIKE LINE OF it_idoc_struct , |
| it_segments | TYPE STANDARD TABLE OF LEDID_T_SEGMENT,"TABLES PARAM |
| wa_segments | LIKE LINE OF it_segments , |
| it_segment_structure | TYPE STANDARD TABLE OF LEDID_T_SEGMENT_STRUCT,"TABLES PARAM |
| wa_segment_structure | LIKE LINE OF it_segment_structure , |
| it_text_frameset | TYPE STANDARD TABLE OF LINE,"TABLES PARAM |
| wa_text_frameset | LIKE LINE OF it_text_frameset , |
| it_text_index | TYPE STANDARD TABLE OF LINE,"TABLES PARAM |
| wa_text_index | LIKE LINE OF it_text_index , |
| it_text_docu | TYPE STANDARD TABLE OF LINE,"TABLES PARAM |
| wa_text_docu | LIKE LINE OF it_text_docu . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_file | TYPE CHAR70 , |
| ld_idoc_type | TYPE LEDID_IDOC_TYPE , |
| it_idoc_struct | TYPE STANDARD TABLE OF LEDID_T_IDOC_STRUCT , |
| wa_idoc_struct | LIKE LINE OF it_idoc_struct, |
| ld_release | TYPE SY-SAPRL , |
| it_segments | TYPE STANDARD TABLE OF LEDID_T_SEGMENT , |
| wa_segments | LIKE LINE OF it_segments, |
| ld_version | TYPE EDI_VERREC-VERSION , |
| it_segment_structure | TYPE STANDARD TABLE OF LEDID_T_SEGMENT_STRUCT , |
| wa_segment_structure | LIKE LINE OF it_segment_structure, |
| ld_docu_settings | TYPE EDI_USR , |
| it_text_frameset | TYPE STANDARD TABLE OF LINE , |
| wa_text_frameset | LIKE LINE OF it_text_frameset, |
| it_text_index | TYPE STANDARD TABLE OF LINE , |
| wa_text_index | LIKE LINE OF it_text_index, |
| it_text_docu | TYPE STANDARD TABLE OF LINE , |
| wa_text_docu | LIKE LINE OF it_text_docu. |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name IDOC_TAB_GENERATE_HTML or its description.