Anfang des Inhaltsbereichs

Vorgehensweisen Destination Class Dokument im Navigationsbaum lokalisieren

This is the base SAP Destination component that can be used to set connection and authentication properties. This class does not contain any logic to retrieve the login properties but other classes that derive from it do (for example SAPLogonDestination).

 

[C#]

public class Destination : System.ComponentModel.Component

 

Public Properties

AbapDebug

Set to true to use integrated ABAP debugging

AppServerHost

The name of the SAP application server

Client

The number of the SAP client you are connecting to

ConnectionString

Read only property containing the connection string data used to connect to the SAP system

ExtIdentificationData

Used with external authentication scenarios (for example,  Microsoft Passport)

ExtIdentificationType

Used with external authentication scenarios (for example, Microsoft Passport)

Language

Optional

LogonGroup

If LogonGroups are used enter it here

MsgServerHost

If a message server is required to connect to the SAP system enter it here

MySAP_SSO

The older style SAP single sign-on cookie used by the Internet Transaction Server.

MySAP_SSO2

The newer SAP Logon ticket used by the Enterprise Portal

Password

If not using SSO enter the password here

SAPSystemName

Read only property showing the three digit system SID

SNCLib

If using Kerberos or other SNC library enter the path here or alternatively use an environment variable as described in the SNC User Guide on the SAP Service Marketplace

SNCMode

If set to true SNC is used

SNCMyName

Not required

SNCPartnerName

The SNC name of the application server service user (for example,  p:SAPServiceCS2@nt5.sap-ag.de)

SNCQoP

Optional. See SNC User Guide for more information about QOP with SNC

SystemNumber

The SAP system number (for example 00)

Trace

If true, detailed trace files are written to the application directory

Type

A string showing the data type of the destination object

UserName

The SAP user name

X509Certificate

The base64 encoded contents of the x509 certificate

 

Remarks

The destination object is used within the SAP Login Form for forms-based authentication.

 

Ende des Inhaltsbereichs