Test Page: Difference between revisions

From BI Wiki
(Created page with "Test page containing uses of all extensions and skin quirks. To be checked upon upgrade.")
 
No edit summary
 
Line 1: Line 1:
Test page containing uses of all extensions and skin quirks. To be checked upon upgrade.
Test page containing uses of all extensions and skin quirks. To be checked upon upgrade.
<syntaxhighlight lang="ABAP">
method download.
  cl_wd_runtime_services=>attach_file_to_response(
    i_filename = is_filename
    i_content = ix_content
    i_mime_type = 'application/xml'
    i_in_new_window = abap_false
  ).
endmethod.
data: l_s_select type srsc_s_select,
      lt_data    type ref to data.
‎</syntaxhighlight>

Latest revision as of 21:19, 13 December 2022

Test page containing uses of all extensions and skin quirks. To be checked upon upgrade.

method download.
  cl_wd_runtime_services=>attach_file_to_response(
    i_filename = is_filename
    i_content = ix_content
    i_mime_type = 'application/xml'
    i_in_new_window = abap_false
  ).
endmethod.
data: l_s_select type srsc_s_select,
      lt_data    type ref to data.