google-code-export / saplink

Automatically exported from code.google.com/p/saplink
1 stars 2 forks source link

Dump occurs when creating a class #61

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

1. Try to install the attached slinkee. It will generate a shortdump

What is the expected output? What do you see instead?

The class should get installed but instead a shortdump gets generated

What version of SAP are you using?
SAP_ABA Release / Level: 700
SAP_BASIS Release / Level: 700

What version of SAPlink are you using:
0.1.3

Please provide any additional information below.

The shortdump always occur when the developer puts a comment above the
method definition in the class editor which is shorter than 6 characters.
Example:

*
method.
endmethod.

The shortdump occurs in the method CREATEOBJECTFROMIXMLDOC of the class
zsaplink_class at line 434. I fixed the problem by adding another if clause:

if strlen( source ) gt 5.
   if source+0(6) = 'METHOD'.
      delete sourceTable index sy-tabix.
      EXIT.
   endif.
endif.

Original issue reported on code.google.com by tomasc...@googlemail.com on 14 Mar 2007 at 4:25

Attachments:

GoogleCodeExporter commented 9 years ago
Sorry, forgot to fill out the one-line summary (why is it pre-filled anyway?). 
Please
change it to:

Dump occurs when creating a class

Original comment by tomasc...@googlemail.com on 14 Mar 2007 at 4:28

GoogleCodeExporter commented 9 years ago

Original comment by ewherrm...@gmail.com on 16 Mar 2007 at 1:02

GoogleCodeExporter commented 9 years ago

Original comment by ewherrm...@gmail.com on 17 Apr 2007 at 6:29

GoogleCodeExporter commented 9 years ago
Issue Fixed !

Original comment by mepmarc...@gmail.com on 18 Aug 2008 at 10:34

GoogleCodeExporter commented 9 years ago
Fixed (Release0.1.4)

Original comment by mepmarc...@gmail.com on 27 Oct 2008 at 2:43