google-code-export / saplink

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

Type-groups not included in class ZSAPLINK_CLASS #59

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
The class plug-in for SAPlink (object ZSAPLINK_CLASS) uses data types from 
a standard SAP type-group. However, these type-groups are not explicitly 
included in the code. This can give a syntax error.

This applies to SAPlink 0.1.3 version and the issues is described in:
http://groups.google.com/group/saplink/browse_thread/thread/9d63a74b1b6dea7
9

The following adjustmenst are needed:
- In the CHECKEXISTS method of object ZSAPLINK_CLASS, enter the follow 
code:
TYPE-POOLS: SEOX.
- In the CREATEIXMLDOCFROMOBJECT method of object ZSAPLINK_CLASS, enter 
the follow code: 
TYPE-POOLS: SEOS, SEOR, SEOT.

Best regards,

Arjen

Original issue reported on code.google.com by agideo...@gmail.com on 5 Mar 2007 at 8:18

GoogleCodeExporter commented 9 years ago
Shouldn't this have been fixed with moving the plugin to use the FM call on 
create?

Original comment by daniel.m...@gmail.com on 7 Mar 2007 at 12:33

GoogleCodeExporter commented 9 years ago
* I had the same problem, just downloaded the tool today. New version 0.1.3
* I added the follow line to the local types include of class ZSAPLINK_CLASS
* and then all compiled OK.

TYPE-POOLS : seox,
             seos,
             seor,
             seot.

Original comment by phil.so...@sap.com on 8 Mar 2007 at 12:26

GoogleCodeExporter commented 9 years ago
Did you guys do a fresh install using the new installer or did you use an older
version of SAPlink to upgrade to 0.1.3?  We include all of these type-pools in 
the
forward declarations section of the class (from the properties tab), and they 
should
not have to be redeclared in the methods.  We did change the way the type 
usages were
being exported, but we tried to make it upgradeable from older versions.  Any
additional info would be appreciated.

-ewH

Original comment by ewherrm...@gmail.com on 8 Mar 2007 at 7:19

GoogleCodeExporter commented 9 years ago

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

GoogleCodeExporter commented 9 years ago
The class looks active but somehow the type group declarations are factually 
not 
active.This gives a syntax error that SEOX_BOOLEAN is not found.
I added a period to the  description of the class ZSAPLINK_CLASS, saved it so 
that 
the type group declarations are saved. 
Reactivated the class alongwith the method CHECKEXITS.
No syntax errors after this. 

Original comment by iyersub...@gmail.com on 17 Mar 2009 at 2:22