Taryck / zaplink

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

Change dected in Class ZAPLINK_CX but no change are made #105

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Use transaction ZL_REL on the framework and check object consistency
2. You'll always find that ZAPLINK_CX has been adjusted

What is the expected output?
No change needed for ZAPLINK_CX

What do you see instead?
ZAPLINK_CX always need to be adjusted

Original issue reported on code.google.com by taryck%b...@gtempaccount.com on 28 Sep 2010 at 8:17

GoogleCodeExporter commented 9 years ago
After analyse, the problem comes from the SAP MF 'SEO_CLASS_GENERATE_SECTIONS' 
that generate public section with differences between the first call and the 
others.
This append in MF ' SEO_CLASS_TYPEINFO_BY_VIS' where method's order differs 
from the first call :
- CONSTRUCTOR
- CLASS_CONSTRUCTOR
And the others :
- CLASS_CONSTRUCTOR
- CONSTRUCTOR
So the generated section is for the first call :
  methods CONSTRUCTOR
    importing
      !TEXTID like TEXTID optional
      !PREVIOUS like PREVIOUS optional
      !MESSAGES type O_MSG_COLL optional
      !OBJECT type BALOBJ_D optional
      !SUBOBJECT type BALSUBOBJ optional
      !EXT_ID type BALNREXT optional
      !CX_NAME type STRING optional
      !_CX_LIST type TT_CX_LIST optional
      !SYSTEMSTACK type ABAP_CALLSTACK optional .
  class-methods CLASS_CONSTRUCTOR .
  methods UPDATE .
And for the others :
  class-methods CLASS_CONSTRUCTOR .
  methods CONSTRUCTOR
    importing
      !TEXTID like TEXTID optional
      !PREVIOUS like PREVIOUS optional
      !MESSAGES type O_MSG_COLL optional
      !OBJECT type BALOBJ_D optional
      !SUBOBJECT type BALSUBOBJ optional
      !EXT_ID type BALNREXT optional
      !CX_NAME type STRING optional
      !_CX_LIST type TT_CX_LIST optional
      !SYSTEMSTACK type ABAP_CALLSTACK optional .
  methods UPDATE .

Original comment by taryck%b...@gtempaccount.com on 28 Sep 2010 at 8:21

GoogleCodeExporter commented 9 years ago
Fixed with changeset : 
https://code.google.com/p/zaplink/source/detail?r=1586e3242756408e6725118d77e59f
fec9eb9f6e

Original comment by taryck%b...@gtempaccount.com on 28 Sep 2010 at 8:36