Closed GoogleCodeExporter closed 9 years ago
Can you please describe your problem in detail? A ST22 dump report could be
helpful.
Original comment by gregor.w...@gmail.com
on 26 May 2010 at 11:09
Working on a new release for FUGR plug-in to be released along with the 1.0.5
core
release.
Original comment by rich.hei...@gmail.com
on 26 May 2010 at 3:54
Original comment by rich.hei...@gmail.com
on 26 May 2010 at 7:05
Upon uploading a nugget which contains a FUGR, I get the follwoing dump:
Runtime Errors OBJECTS_OBJREF_NOT_ASSIGNED_NO
Exception CX_SY_REF_IS_INITIAL
Access via 'NULL' object reference not possible.
The current ABAP program "ZSAPLINK======================CP" had to be
terminated because it has
come across a statement that unfortunately cannot be executed.
The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
caught in
procedure "GETOBJECTINFOFROMIXMLDOC" "(METHOD)", nor was it propagated by a
RAISING clause.
21 data rootNode type ref to IF_IXML_NODE.
22 data rootAttr type ref to IF_IXML_NAMED_NODE_MAP.
23 data AttrNode type ref to IF_IXML_NODE.
24 data nodeName type string.
25
26 rootNode ?= ixmlDocument->GET_ROOT_ELEMENT( ).
27
28 * get object type
29 objTypeName = rootNode->GET_NAME( ).
30 translate objTypeName to upper case.
31
32 * get object name
33 rootAttr = rootNode->GET_ATTRIBUTES( ).
34 AttrNode = rootAttr->GET_ITEM( 0 ).
>>> objName = AttrNode->GET_VALUE( ).
36 endmethod.
Active Calls/Events
No. Ty. Program
Name
3 METHOD ZSAPLINK======================CP
ZSAPLINK=>GETOBJECTINFOFROMIXMLDOC
2 FORM ZSAPLINK
CHECKOBJECT
1 EVENT ZSAPLINK
START-OF-SELECTION
Original comment by chrba...@gmail.com
on 27 May 2010 at 6:14
There is an issue with the current version of this plug-in where the FUGR node
is
not built correctly. A short term fix may be for you to change the XML file,
in the
FUGR node, switch the positions of the AREA attribute and the SPRAS attribute.
For example, if it looks like this
<FUGR SPRAS="E" AREA="ZRICHTEST_FG" AREAT="Rich's Test Function Group">
change it to this
<FUGR AREA="ZRICHTEST_FG" SPRAS="E" AREAT="Rich's Test Function Group">
In the 0.1.5 relesase of the plug-in, this issue is resolved. When available,
please download and install,
Original comment by rich.hei...@gmail.com
on 27 May 2010 at 2:28
Original comment by rich.hei...@gmail.com
on 27 May 2010 at 5:18
Original issue reported on code.google.com by
chrba...@gmail.com
on 26 May 2010 at 9:00