<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Recreate ST22 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480480#M2001764</link>
    <description>&lt;P&gt;I need to create a Z report to show the dumps list and dump details like t-code ST22. Does anyone know a function or program that I could use? &lt;/P&gt;
  &lt;P&gt;Here is the code that I have already done, but the details are not in a 'beautiful' way. &lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Report  ZZSHOWDUMP
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*

REPORT  zzshowdump.

TYPE-POOLS: slis.

DATA: it_layout TYPE slis_layout_alv.

DATA: it_events TYPE slis_t_event,
      wa_events LIKE LINE OF it_events.

DATA: lt_rsdumptab TYPE rsdumptab,
      ls_rsdumpinfo TYPE rsdumpinfo,
      ls_snap TYPE snap,
      ft TYPE rsdump_ft OCCURS 1000 WITH HEADER LINE,
lt_fieldcat    TYPE slis_t_fieldcat_alv,
 lt_fieldcat2   TYPE slis_t_fieldcat_alv.

PARAMETERS: p_data TYPE d.

it_layout-zebra = 'X'.
it_layout-colwidth_optimize = 'X'.

CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
  IMPORTING
    et_events = it_events.


READ TABLE it_events INTO wa_events WITH KEY = 'USER_COMMAND'.
wa_events-form = 'FORM_USER_COMMAND'.
MODIFY it_events FROM wa_events INDEX sy-tabix.

IF p_data IS INITIAL.
  p_data = sy-datum.
ENDIF.

BREAK-POINT.



CALL FUNCTION 'RS_ST22_GET_DUMPS'
  EXPORTING
    p_day     = p_data
  IMPORTING
    p_infotab = lt_rsdumptab.

START-OF-SELECTION.

  IF lt_rsdumptab IS NOT INITIAL.

    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
      EXPORTING
        i_program_name   = sy-cprog
        i_structure_name = 'RSDUMPINFO'
      CHANGING
        ct_fieldcat      = lt_fieldcat[].


    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program = sy-repid
        it_fieldcat        = lt_fieldcat
        it_events          = it_events
        i_structure_name   = 'RSDUMPINFO'
        is_layout          = it_layout
      TABLES
        t_outtab           = lt_rsdumptab.



    IF sy-subrc IS INITIAL.

    ENDIF.

  ENDIF.

AT LINE-SELECTION.


*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  form_user_command
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      --&amp;gt;UCOMM      text
*      --&amp;gt;SELFIELD   text
*----------------------------------------------------------------------*
FORM form_user_command USING ucomm TYPE sy-ucomm
                           selfield TYPE slis_selfield.

  CONSTANTS:
         l_c_ic1           TYPE char4 VALUE '&amp;amp;IC1',
         l_c_vl            TYPE char2 VALUE 'VL',
         l_c_vl03n         TYPE char5 VALUE 'VL03N'.

  CASE ucomm.
    WHEN l_c_ic1.

      IF selfield-tabindex NE space.

        READ TABLE lt_rsdumptab INTO ls_rsdumpinfo INDEX selfield-tabindex.


        SELECT *
           FROM snap
        INTO ls_snap
                 WHERE datum = ls_rsdumpinfo-sydate
                 AND   uzeit = ls_rsdumpinfo-sytime
                 AND   uname = ls_rsdumpinfo-syuser
                 AND   ahost = ls_rsdumpinfo-syhost
                 AND   mandt = sy-mandt.

          PERFORM extract_strings_from_snap.
        ENDSELECT.

        IF ft IS NOT  INITIAL.

          CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
            EXPORTING
              i_structure_name = 'RSDUMP_FT'
            CHANGING
              ct_fieldcat      = lt_fieldcat2[].


          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_program = sy-repid
              it_fieldcat        = lt_fieldcat2
              it_events          = it_events
              i_structure_name   = 'RSDUMP_FT'
              is_layout          = it_layout
            TABLES
              t_outtab           = ft[].

        ENDIF.

      ENDIF.

  ENDCASE.

ENDFORM.                    "form_user_command
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  EXTRACT_STRINGS_FROM_SNAP
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*  --&amp;gt;  p1        text
*  &amp;lt;--  p2        text
*----------------------------------------------------------------------*
FORM extract_strings_from_snap .

  DATA: snap_error(60).                                     "#EC NEEDED
  FIELD-SYMBOLS: &amp;lt;id&amp;gt; TYPE c, &amp;lt;len&amp;gt; TYPE c, &amp;lt;value&amp;gt; TYPE c.

* Process field list
  DO.
    IF sy-index = 1.
      ASSIGN ls_snap-flist TO &amp;lt;id&amp;gt; RANGE ls_snap. "First string
    ELSE.
      ASSIGN &amp;lt;value&amp;gt;+&amp;lt;len&amp;gt;(2)  TO &amp;lt;id&amp;gt;."Next string
    ENDIF.

* Check field id
    IF &amp;lt;id&amp;gt; LE space.
      snap_error = text-nco.           " Short Dump not consistent
      EXIT.
    ENDIF.

* Short dump not complete ?
    IF &amp;lt;id&amp;gt; = '%A'.
      snap_error = text-ncm.           "Short Dump not complete
      EXIT.
    ENDIF.

* End of this SNAP record ?
    IF &amp;lt;id&amp;gt; = '%E' OR &amp;lt;id&amp;gt; = '%M'.
      EXIT.
    ENDIF.

* Check format of length field
    ASSIGN &amp;lt;id&amp;gt;+2(3)        TO &amp;lt;len&amp;gt;     TYPE 'C'.
    IF &amp;lt;len&amp;gt; CN '0123456789' OR &amp;lt;len&amp;gt; = '000'.
      snap_error = text-nco.           "Short Dump not consistent
      EXIT.
    ENDIF.
    ASSIGN &amp;lt;id&amp;gt;+5(&amp;lt;len&amp;gt;)    TO &amp;lt;value&amp;gt;   TYPE 'C'.

* Append field
    ft-id     =   &amp;lt;id&amp;gt;.
    ft-len    =   &amp;lt;len&amp;gt;.
    ft-value  =   &amp;lt;value&amp;gt;.

    APPEND ft.

  ENDDO.

ENDFORM.                    " EXTRACT_STRINGS_FROM_SNAP&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 08 Oct 2021 20:26:51 GMT</pubDate>
    <dc:creator>alisonv</dc:creator>
    <dc:date>2021-10-08T20:26:51Z</dc:date>
    <item>
      <title>Recreate ST22</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480480#M2001764</link>
      <description>&lt;P&gt;I need to create a Z report to show the dumps list and dump details like t-code ST22. Does anyone know a function or program that I could use? &lt;/P&gt;
  &lt;P&gt;Here is the code that I have already done, but the details are not in a 'beautiful' way. &lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Report  ZZSHOWDUMP
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*

REPORT  zzshowdump.

TYPE-POOLS: slis.

DATA: it_layout TYPE slis_layout_alv.

DATA: it_events TYPE slis_t_event,
      wa_events LIKE LINE OF it_events.

DATA: lt_rsdumptab TYPE rsdumptab,
      ls_rsdumpinfo TYPE rsdumpinfo,
      ls_snap TYPE snap,
      ft TYPE rsdump_ft OCCURS 1000 WITH HEADER LINE,
lt_fieldcat    TYPE slis_t_fieldcat_alv,
 lt_fieldcat2   TYPE slis_t_fieldcat_alv.

PARAMETERS: p_data TYPE d.

it_layout-zebra = 'X'.
it_layout-colwidth_optimize = 'X'.

CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
  IMPORTING
    et_events = it_events.


READ TABLE it_events INTO wa_events WITH KEY = 'USER_COMMAND'.
wa_events-form = 'FORM_USER_COMMAND'.
MODIFY it_events FROM wa_events INDEX sy-tabix.

IF p_data IS INITIAL.
  p_data = sy-datum.
ENDIF.

BREAK-POINT.



CALL FUNCTION 'RS_ST22_GET_DUMPS'
  EXPORTING
    p_day     = p_data
  IMPORTING
    p_infotab = lt_rsdumptab.

START-OF-SELECTION.

  IF lt_rsdumptab IS NOT INITIAL.

    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
      EXPORTING
        i_program_name   = sy-cprog
        i_structure_name = 'RSDUMPINFO'
      CHANGING
        ct_fieldcat      = lt_fieldcat[].


    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program = sy-repid
        it_fieldcat        = lt_fieldcat
        it_events          = it_events
        i_structure_name   = 'RSDUMPINFO'
        is_layout          = it_layout
      TABLES
        t_outtab           = lt_rsdumptab.



    IF sy-subrc IS INITIAL.

    ENDIF.

  ENDIF.

AT LINE-SELECTION.


*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  form_user_command
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      --&amp;gt;UCOMM      text
*      --&amp;gt;SELFIELD   text
*----------------------------------------------------------------------*
FORM form_user_command USING ucomm TYPE sy-ucomm
                           selfield TYPE slis_selfield.

  CONSTANTS:
         l_c_ic1           TYPE char4 VALUE '&amp;amp;IC1',
         l_c_vl            TYPE char2 VALUE 'VL',
         l_c_vl03n         TYPE char5 VALUE 'VL03N'.

  CASE ucomm.
    WHEN l_c_ic1.

      IF selfield-tabindex NE space.

        READ TABLE lt_rsdumptab INTO ls_rsdumpinfo INDEX selfield-tabindex.


        SELECT *
           FROM snap
        INTO ls_snap
                 WHERE datum = ls_rsdumpinfo-sydate
                 AND   uzeit = ls_rsdumpinfo-sytime
                 AND   uname = ls_rsdumpinfo-syuser
                 AND   ahost = ls_rsdumpinfo-syhost
                 AND   mandt = sy-mandt.

          PERFORM extract_strings_from_snap.
        ENDSELECT.

        IF ft IS NOT  INITIAL.

          CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
            EXPORTING
              i_structure_name = 'RSDUMP_FT'
            CHANGING
              ct_fieldcat      = lt_fieldcat2[].


          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_program = sy-repid
              it_fieldcat        = lt_fieldcat2
              it_events          = it_events
              i_structure_name   = 'RSDUMP_FT'
              is_layout          = it_layout
            TABLES
              t_outtab           = ft[].

        ENDIF.

      ENDIF.

  ENDCASE.

ENDFORM.                    "form_user_command
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  EXTRACT_STRINGS_FROM_SNAP
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*  --&amp;gt;  p1        text
*  &amp;lt;--  p2        text
*----------------------------------------------------------------------*
FORM extract_strings_from_snap .

  DATA: snap_error(60).                                     "#EC NEEDED
  FIELD-SYMBOLS: &amp;lt;id&amp;gt; TYPE c, &amp;lt;len&amp;gt; TYPE c, &amp;lt;value&amp;gt; TYPE c.

* Process field list
  DO.
    IF sy-index = 1.
      ASSIGN ls_snap-flist TO &amp;lt;id&amp;gt; RANGE ls_snap. "First string
    ELSE.
      ASSIGN &amp;lt;value&amp;gt;+&amp;lt;len&amp;gt;(2)  TO &amp;lt;id&amp;gt;."Next string
    ENDIF.

* Check field id
    IF &amp;lt;id&amp;gt; LE space.
      snap_error = text-nco.           " Short Dump not consistent
      EXIT.
    ENDIF.

* Short dump not complete ?
    IF &amp;lt;id&amp;gt; = '%A'.
      snap_error = text-ncm.           "Short Dump not complete
      EXIT.
    ENDIF.

* End of this SNAP record ?
    IF &amp;lt;id&amp;gt; = '%E' OR &amp;lt;id&amp;gt; = '%M'.
      EXIT.
    ENDIF.

* Check format of length field
    ASSIGN &amp;lt;id&amp;gt;+2(3)        TO &amp;lt;len&amp;gt;     TYPE 'C'.
    IF &amp;lt;len&amp;gt; CN '0123456789' OR &amp;lt;len&amp;gt; = '000'.
      snap_error = text-nco.           "Short Dump not consistent
      EXIT.
    ENDIF.
    ASSIGN &amp;lt;id&amp;gt;+5(&amp;lt;len&amp;gt;)    TO &amp;lt;value&amp;gt;   TYPE 'C'.

* Append field
    ft-id     =   &amp;lt;id&amp;gt;.
    ft-len    =   &amp;lt;len&amp;gt;.
    ft-value  =   &amp;lt;value&amp;gt;.

    APPEND ft.

  ENDDO.

ENDFORM.                    " EXTRACT_STRINGS_FROM_SNAP&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 08 Oct 2021 20:26:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480480#M2001764</guid>
      <dc:creator>alisonv</dc:creator>
      <dc:date>2021-10-08T20:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate ST22</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480481#M2001765</link>
      <description>&lt;P&gt;Do you mean you want to display a short dump exactly the way ST22 displays it?&lt;/P&gt;</description>
      <pubDate>Fri, 08 Oct 2021 21:03:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480481#M2001765</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-10-08T21:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate ST22</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480482#M2001766</link>
      <description>&lt;P&gt;Why not use ST22.&lt;/P&gt;</description>
      <pubDate>Sun, 10 Oct 2021 11:34:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480482#M2001766</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2021-10-10T11:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate ST22</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480483#M2001767</link>
      <description>&lt;P&gt;Check &lt;A href="https://blogs.sap.com/2015/01/08/abap-dump-texts-quick-and-dirty/"&gt;ABAP Dump Texts – Quick and Dirty | SAP Blogs&lt;/A&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT yy_dump_texts.
*---------------------------------------------------------------------*
*by Horst Keller, &lt;A href="http://scn.sap.com/community/abap/blog/2015/01/08/" target="test_blank"&gt;http://scn.sap.com/community/abap/blog/2015/01/08/&lt;/A&gt;
*abap-dump-texts--quick-and-dirty
* Edited by Jacques Nomssi Nzali - tested on Netweaver 6.20
*---------------------------------------------------------------------*
PARAMETERS: errid TYPE snapt-errid,
            langu TYPE sylangu DEFAULT sy-langu.
*----------------------------------------------------------------------*
*       CLASS section DEFINITION
*----------------------------------------------------------------------*
CLASS dump_section DEFINITION.
  PUBLIC SECTION.
    METHODS constructor
      IMPORTING langu TYPE sylangu DEFAULT sy-langu
                section TYPE snapt-ttype
                key TYPE clike.
    METHODS write_lines IMPORTING errid TYPE snapt-errid.
  PRIVATE SECTION.
    CONSTANTS c_prog TYPE sycprog VALUE 'SAPMS380'.
    CONSTANTS c_include TYPE char08 VALUE '&amp;amp;INCLUDE'.
    DATA language TYPE sylangu.
    DATA ttype TYPE snapt-ttype.
    CLASS-DATA pool TYPE table_of_textpool.
    METHODS title IMPORTING text_key TYPE clike.
ENDCLASS.                    "dump_section DEFINITION
*----------------------------------------------------------------------*
*       CLASS dump_section IMPLEMENTATION
*----------------------------------------------------------------------*
CLASS dump_section IMPLEMENTATION.
  METHOD constructor.
    IF language NE langu.        " refresh buffer?
      language = langu.
      READ TEXTPOOL c_prog INTO pool LANGUAGE langu.
    ENDIF.
    ttype = section.
    title( key ).
  ENDMETHOD.                    "constructor
  METHOD title.
    DATA pool_entry LIKE LINE OF pool.
    DATA header_text TYPE char72.
    READ TABLE pool INTO pool_entry
      WITH KEY key = text_key
               id = 'I'. " ID of a text symbol
    IF sy-subrc EQ 0.
      header_text = pool_entry-entry.
    ELSE.
      header_text = text_key.                   " Type conversion
    ENDIF.
    WRITE / header_text COLOR COL_HEADING.      " Title
  ENDMETHOD.                    "read_text
  METHOD write_lines.
    DATA tline TYPE snapt-tline.
    DATA id TYPE snapt-errid.
    DATA seqno TYPE snapt-seqno.  " needed for ORDER BY
    SELECT tline seqno
           FROM snapt INTO (tline, seqno)
           WHERE langu = language AND
                 errid = errid AND
                 ttype = ttype
                 ORDER BY seqno.
      IF STRLEN( tline ) &amp;gt;= 8 AND tline(8) = c_include AND ttype NE 'K'.
        REPLACE c_include IN tline WITH ``.
        CONDENSE tline.
        id = tline.        " type conversion
        write_lines( id ). " max. incl. depth = max.no. of open cursors
      ELSE.
        WRITE / tline COLOR COL_NORMAL INTENSIFIED.  " Output line
      ENDIF.
    ENDSELECT.
  ENDMETHOD.
ENDCLASS.                    "dump_section IMPLEMENTATION
DEFINE print_section.
  create object section
    exporting langu   = langu
              section = &amp;amp;1
              key     = &amp;amp;2.
  section-&amp;gt;write_lines( errid ).
  SKIP.
END-OF-DEFINITION.
START-OF-SELECTION.
  DATA section TYPE REF TO dump_section.
  print_section: 'K' errid,   " Run time error short text
                 'W' '201',   " What happened?
                 'T' '202',   " What can I do?
                 'U' '203',   " Error analysis
                 'H' '204',   " Hints for Error handling
                 'I' '232'.   " Internal notes&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 10 Oct 2021 18:20:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480483#M2001767</guid>
      <dc:creator>nomssi</dc:creator>
      <dc:date>2021-10-10T18:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate ST22</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480484#M2001768</link>
      <description>&lt;P&gt;Macros are discouraged. Don't use them - you don't need to with methods anyway.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;new section( langu = langu section = 'K' key = errid )-&amp;gt;write_lines( errid ).
new section( langu = langu section = 'W' key = 201 )-&amp;gt;write_lines( errid ).
...&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Although fair enough, it does say dirty. Very dirty indeed!&lt;/P&gt;</description>
      <pubDate>Sun, 10 Oct 2021 19:23:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480484#M2001768</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2021-10-10T19:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate ST22</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480485#M2001769</link>
      <description>&lt;P&gt;Yeah, the same as shown on ST22 and I can't use ST22 because I don't have authorization. &lt;/P&gt;</description>
      <pubDate>Sun, 10 Oct 2021 21:20:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480485#M2001769</guid>
      <dc:creator>alisonv</dc:creator>
      <dc:date>2021-10-10T21:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate ST22</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480486#M2001770</link>
      <description>&lt;P&gt;If you run this program, do you still have problem with authorization ?&lt;/P&gt;</description>
      <pubDate>Mon, 11 Oct 2021 05:22:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480486#M2001770</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2021-10-11T05:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate ST22</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480487#M2001771</link>
      <description>&lt;P&gt;Of course, the right way is to ask for authorizations, I can't imagine an organization not giving developers access to short dumps ! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Oct 2021 06:56:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480487#M2001771</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-10-11T06:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate ST22</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480488#M2001772</link>
      <description>&lt;P&gt;Time taken to ask for authorisations - 15 minutes.&lt;/P&gt;&lt;P&gt;Time taken to copy the ST22 program or reverse engineer it - 5 days.&lt;/P&gt;&lt;P&gt;I know which I'd prefer to pay for if I were your employer.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Oct 2021 07:13:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/recreate-st22/m-p/12480488#M2001772</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2021-10-11T07:13:50Z</dc:date>
    </item>
  </channel>
</rss>

