Skip to Content
0
Former Member
Sep 26, 2012 at 06:57 AM

SE24 show generated coding

1083 Views

Hi everybody,

I have a class on a SAP-System and I want to copy&paste it to a different SAP-System.

I have the entire coding copied from the source system. Looks like:

class ZE4U_IDOC_DATA definition

public

create public .

public section.

methods GET_SEGMENT

importing

...

returning

value(RTT_SEGMENT) type EDIDD_TT .

methods CONSTRUCTOR

importing

!X_IDOC_DATA type EDEX_IDOCDATA

!X_IDOCTYPE type EDI_ROUTID optional

!X_MESCODE type IDENTIFIER .

methods GET_UNH

importing

value(X_SEGMENT) type EDIDD

returning

value(Y_UNH) type /ISIDEX/E1VDEWUNH_1

exceptions

FORMAL_ERROR .

...

protected section.

types:

BEGIN OF sorted_idoc,

segnam TYPE edilsegtyp,

psgnum TYPE edi_psgnum,

tabix TYPE sytabix,

END OF sorted_idoc .

types:

reduced_idoc_table TYPE STANDARD TABLE OF sorted_idoc .

types:

sorted_idoc_table TYPE SORTED TABLE OF sorted_idoc

WITH UNIQUE KEY table_line .

...

private section.

methods ADD_STATUS_FORMAL

importing

!IM_MSGTY type SYMSGTY default 'E'

!IM_MSGNO type SYMSGNO optional

!IM_MSGID type SYMSGID optional

!IM_MSGV1 type ANY optional

!IM_MSGV2 type ANY optional

!IM_MSGV3 type ANY optional

!IM_MSGV4 type ANY optional

!IM_SEGMENT type EDIDD optional

!IM_SEGFLD type EDI_SEGFLD optional .

  1. ENDCLASS.

CLASS ZE4U_IDOC_DATA IMPLEMENTATION.

  1. endmethod.

Unfortunatelly I can't find the buttons/how to navigate to the screen, where to see THIS generated coding.

Can anybody help me, how to navigate in SE24 or SE80 to see the generated coding?

Thanks a lot

Regards

Mario