Git Product home page Git Product logo

node-sapnwrfc's Introduction

SAP Netweaver RFC SDK Bindings for Node.js

Description

This module provides bindings to the SAP Netweaver RFC SDK. With it, you will be able to call remote enabled function modules of a SAP system. Opening the connection and function invocations are fully/partially asynchronous operations, which will call a callback function upon completion.

Preparation

Note: In order to use this module you will have to obtain the SAP NW RFC SDK via http://service.sap.com. For further instructions see OSS note 1025361.

Linux

  • Extract the SDK archive with SAPCAR
  • Copy the files from the lib and include folders to the corresponding system directories (/usr/local/Lib /usr/local/include)
./SAPCAR_3-20002089.EXE -xf NWRFC_8-20004549.SAR
cd nwrfcsdk
cp ./lib/* /usr/lib
cp ./include/* /usr/inlude

Windows

  • Extract the SDK archive with SAPCAR
  • Copy the files from the lib folder to C:\Windows\system32
  • Warning: If you are working with NodeJS 32-bit on a Windows 64-bit OS, you should copy the files to C:\Windows\SysWOW64 instead.

OS X

OS X is not supported due to the fact that there is no suitable SAP RFC NW SDK available. The module will compile but fail when trying to lazy-load its dependencies.

Installation (both Linux and Windows)

  • You may now download the addon from the npm registry and install it by using the npm command.
npm install sapnwrfc

Usage

As with all other Node.js modules, you need to require it:

var sapnwrfc = require('sapnwrfc');

Connection parameters

Connection parameters have to be specified using a JavaScript object. For a complete list of possible parameters, refer to the SAP NetWeaver RFC SDK Guide which is available via SAP Connectors.

Example:

var conParams = {
  ashost: '192.168.0.10',
  sysid: 'NPL',
  sysnr: '42',
  user: 'DEVELOPER',
  passwd: 'password',
  client: '001',
  lang: 'E'
};

Opening the connection

Before you can invoke a remote function, you will have to open a connection to the SAP system.

Connection.Open( connectionParameters, callback( errorObject ) )
  • connectionParameters: JavaScript object containing the parameters used for connecting to a SAP system (see above)
  • callback: A function to be executed after the connection has been attempted. In case of an error, an errorObject will be passed as an argument.
versionInfo = Connection.GetVersion( )
  • versionInfo: An Array containing major number, minor number and patch level of the NW RFC SDK

Example:

var con = new sapnwrfc.Connection;

con.Open(conParams, function(err) {
  if (err) {
    console.log(err);
    return;
  }
  console.log('sapnwrfc: ' + con.GetVersion());
});

Calling a remote function module

This is a two step process:

  • You will first have to lookup the function module's definition, getting a Function object in return
  • After a successful lookup, you may invoke the function and pass arguments to it

However, you can use the Function object subsequently multiple times for invocations, without having to do another lookup upfront.

functionObject = Connection.Lookup( functionModuleName )
  • functionModuleName: A string containing the name of the remote function module to be called
  • functionObject: A JavaScript object (class name: Function) which represents an interface to invoke the function
Function.Invoke( functionParameters, callback( errorObject, result ) )
  • functionParameters: JavaScript object containing the parameters used for connecting to a SAP system (see above)
  • callback: A function to be executed after the connection has been attempted. In case of an error, an errorObject will be passed as an argument. The result will be returned as a JavaScriptObject (see below for details)

For the sake of simplicity, the following example will neither pass arguments to the remote function nor receive a result:

var func = con.Lookup('RFC_PING');
func.Invoke({ }, function(err, result) {
  console.log('Got pong!');
});

Passing and receiving arguments

Remote function arguments are being passed by using a plain JavaScript object. For each parameter to pass in, you'll have to define a member property named according to the remote function's interface. There is no need to distinguish between importing, exporting or table parameters.

Primitives

Assigning primitive types (non-structures, non-tables) is straightforward. You will, however, have to take care that the argument matches the parameter's data type. E.g. if the parameter type is an integer, you may not assign a string value to it.

Example:

var params = {
  QUESTION: 'How are you'
}

var func = con.Lookup('STFC_STRING');
func.Invoke(params, function(err, result) {
  if (err) {
    console.log(err);
    return;
  }
  
  console.log(result);
});

Structures

Structures are represented by JavaScriptObjects, where each field corresponds to a member property.

Example:

var params = {
  IMPORTSTRUCT: { RFCFLOAT: 3.14159, RFCINT1: 123, RFCTIME: '094500', RFCCHAR4: 'NODE' }
}

var func = con.Lookup('STFC_STRUCTURE');
func.Invoke(params, function(err, result) {
  if (err) {
    console.log(err);
    return;
  }

  console.log(result);
});

Tables

A table is nothing else than an array of structures. This means, in terms of JavaScript, that you need to put JavaScript objects into an array.

Example:

var table = [
  { I: 1, C: 'A', STR: 'String1' },
  { I: 2, C: 'B', STR: 'String2' },
  { I: 3, C: 'C', STR: 'String3' }
];

var params = {
  IMPORT_TAB: table
}

var func = con.Lookup('STFC_DEEP_TABLE');
func.Invoke(params, function(err, result) {
  if (err) {
    console.log(err);
    return;
  }

  for (var i = 0; i < result.EXPORT_TAB.length; i++) {
    console.log('Row ' + (i + 1) + ':');
    console.log(result.EXPORT_TAB[i]);
  }
  console.log(result.RESPTEXT);
});

Changelog

0.1.5 (2013-05-25)

  • Support for Node.js 0.10
  • Fix library path issue (Windows)
  • Add parameter msvs_nwrfcsdk_path for node-gyp

0.1.4 (2013-02-09)

  • Fix compilation on Linux (issue #2)

0.1.3 (2012-08-16)

  • Support for Node.js >= 0.7.9
  • Change global invocation lock to a connection based lock

TODO

  • Unit tests
  • Missing but probably useful functions:
    • RfcIsConnectionHandleValid (aka Connection::IsOpen())
    • RfcRemoveFunctionDesc (invalidate cache)
    • RfcGetPartnerSSOTicket
  • Use of buffers for xstring/byte
  • Event emission on disconnect

License

(The MIT License)

Copyright (c) 2011-2012 Joachim Dorner

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node-sapnwrfc's People

Contributors

agebert avatar frankseeger avatar hyp avatar jdorner avatar leandrodg avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.