Closed GoogleCodeExporter closed 9 years ago
After analyse this warning message come from the following code :
* Patch SAP do not create type alias.
DATA intkey TYPE seoclskey.
DATA type TYPE vseotype.
FIELD-SYMBOLS <alias> LIKE LINE OF _d-aliases.
LOOP AT _d-aliases ASSIGNING <alias>
WHERE cmptype = seoo_cmptype_type.
MOVE-CORRESPONDING <alias> TO type.
type-alias = seox_true.
type-state = seoc_state_implemented.
CALL FUNCTION 'SEO_TYPE_CREATE_F_DATA'
EXPORTING
save = seox_false
CHANGING
type = type
EXCEPTIONS
OTHERS = 1.
IF sy-subrc <> 0.
CALL METHOD application_log->add_symsg
EXPORTING
id_msgty = 'W'.
ENDIF.
ENDLOOP.
This patch has been added because on some SAP system alias for type are lost.
Action : Correct this patch.
Original comment by taryck%b...@gtempaccount.com
on 24 Dec 2010 at 10:17
The message returned is 002(OO).
Original comment by taryck%b...@gtempaccount.com
on 24 Dec 2010 at 10:18
Issue fdixed with changeset :
http://code.google.com/p/zaplink/source/detail?r=203c26d36cb92433c25b15d5bd396f3
8166b4165
Original comment by taryck%b...@gtempaccount.com
on 27 Dec 2010 at 6:24
Original issue reported on code.google.com by
taryck%b...@gtempaccount.com
on 24 Dec 2010 at 10:16