SAP Function Modules

IDOC_TAB_GENERATE_HTML SAP Function module







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
Normal function module settings


Pattern for FM IDOC_TAB_GENERATE_HTML - IDOC TAB GENERATE HTML





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

ABAP code example for Function Module 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).

DATA:
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 .

DATA(ld_file) = 'Check type of data required'.
DATA(ld_idoc_type) = 'Check type of data required'.
DATA(ld_release) = 'Check type of data required'.

DATA(ld_version) = some text here
DATA(ld_docu_settings) = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_idoc_struct to it_idoc_struct.

"populate fields of struture and append to itab
append wa_segments to it_segments.

"populate fields of struture and append to itab
append wa_segment_structure to it_segment_structure.

"populate fields of struture and append to itab
append wa_text_frameset to it_text_frameset.

"populate fields of struture and append to itab
append wa_text_index to it_text_index.

"populate fields of struture and append to itab
append wa_text_docu to it_text_docu. . CALL FUNCTION 'IDOC_TAB_GENERATE_HTML' EXPORTING idoc_type = ld_idoc_type * release = ld_release * version = ld_version * docu_settings = ld_docu_settings TABLES idoc_struct = it_idoc_struct segments = it_segments segment_structure = it_segment_structure text_frameset = it_text_frameset text_index = it_text_index text_docu = it_text_docu * CHANGING * file = ld_file EXCEPTIONS INTERNAL_ERROR = 1 ILLEGAL_STRUCT_TYPE = 2 . " IDOC_TAB_GENERATE_HTML
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 2. "Exception "Add code for exception here ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

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.

ld_file = 'Check type of data required'.
ld_idoc_type = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_idoc_struct to it_idoc_struct.
ld_release = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_segments to it_segments.

ld_version = some text here

"populate fields of struture and append to itab
append wa_segment_structure to it_segment_structure.
ld_docu_settings = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_text_frameset to it_text_frameset.

"populate fields of struture and append to itab
append wa_text_index to it_text_index.

"populate fields of struture and append to itab
append wa_text_docu to it_text_docu.

Contribute (Add Comments)

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.