Using the Connector Wizard
Procedure
Start the SAP NetWeaver Developer Studio or Eclipse. The connector wizard is started with the following steps:
-
From the IDE file command menu choose . The new project wizard dialog window is displayed.
-
Select SAP Connector Framework Wizard from the left pane of the new project wizard dialog window.
-
Select Connector Wizard from the right pane and choose Next .
The following dialog window is displayed:
The connector wizard expects the following user input before it can create the project:
Field Name
Description
Connector Name
Name of the connector/project. This name also serves as the base for the names of some of the classes created for the project so the name must be in accordance with the Java class naming conventions.
Connector Package
Base name for the connector packages. See the list of packages created by the connector wizard. The specified name must be in accordance with the Java package naming conventions.
Connector Root Folder
Root folder in which the project is stored.
-
Select the appropriate checkboxes according to the capabilities of the target EIS.
Option
Description
Created Packages
(see also list of packages )
Function Metadata Retrieval
The connector will retrieve metadata functions from the target application,
metadata.functions
metadata.primitives
metadata.structures
The class
< c_name > InteractionSpecProperty
in package execution.functions will be generated also if the function execution checkbox is not selected.
Function Execution
The connector will execute functions of the target application
execution.functions
execution.structures
Native Query Launching
The connector will implement the execution of native queries in the target application.
< connector_name > NativeQuery in package execution.objects is created.
API Querying and Object Model Metadata Retrieval
The connector will retrieve the object model of the target application and implement the execution of queries.
< connector_name >Execution in package execution.objects is created.
Packages created:
metadata.objects
execution.structures
metadata.primitives
metadata.structures
Object Model Relations
The connector will implement the resolution of relationships of target application objects.
metadata.relations
Native Interface to Target Applications
The connector will retrieve a native handle to the target application API.
< connector_name >Query in the package execution.objects and function newQuery() is created in class < connector_name >Connection.
-
Choose Finish to confirm the input and to start the project generation.
A new project with the specified name and packages is created on the workbench of the IDE. The project is ready for use and can be adjusted or extended.

