sweetstuff4u / zaplink

Automatically exported from code.google.com/p/zaplink
0 stars 0 forks source link

Sub-Package are no longer created #50

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Export Package with sub-package
2. delete both on SAP
3. Import them

What is the expected output?
Package and sub-package are created

What do you see instead?
Package is created.
Sub-package is not created because XML parsing failure due to raw data
object is not bound.

Original issue reported on code.google.com by taryck%b...@gtempaccount.com on 18 Mar 2010 at 4:58

GoogleCodeExporter commented 8 years ago
Hot Fix : in ZAPLINK_DEVC_RAW
METHOD constructor.
  DATA o_raw TYPE REF TO zaplink_devc_data.
  CALL METHOD super->constructor
    EXPORTING
      o_comp = o_comp.
  CREATE OBJECT o_raw.
  raw ?= o_raw. " Issue 50
ENDMETHOD.

Original comment by taryck%b...@gtempaccount.com on 18 Mar 2010 at 5:02