Click here to Skip to main content
15,895,142 members
Articles / Programming Languages / C#

Read Tables from SAP R/3 using SAP.NET Connector

Rate me:
Please Sign up or sign in to vote.
4.70/5 (22 votes)
19 Feb 2004LGPL32 min read 734.2K   13.7K   82  
Reading SAP R/3 made easy.
//------------------------------------------------------------------------------
// 
//     This code was generated by a SAP. NET Connector Proxy Generator Version 1.0
//     Created at 06.10.2003
//     Created from Windows 2000
//
//     Changes to this file may cause incorrect behavior and will be lost if 
//     the code is regenerated.
// 
//------------------------------------------------------------------------------
using System;
using System.Text;
using System.Collections;
using System.Runtime.InteropServices;
using System.Xml.Serialization;
using System.Web.Services;
using System.Web.Services.Description;
using System.Web.Services.Protocols;
using SAP.Connector;

namespace SAPReader.SAPKernel
{

  [RfcStructure(AbapName ="RFC_DB_OPT" , Length = 72)]
  public class RFC_DB_OPT : SAPStructure
  {
    
    [RfcField(AbapName = "TEXT", RfcType = RFCTYPE.RFCTYPE_CHAR, Length = 72, Offset = 0)]
    [XmlElement("TEXT")]
    public string Text
    { 
       get
       {
          return _Text;
       }
       set
       {
          _Text = value;
       }
    }
    private string _Text;

  }

}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions