Start of Content Area

Object documentation RfcTID Class Locate the document in its SAP Library structure

The RfcTID class is used with QRFC and TRFC processing. A transaction ID (TID) is a 24 character long unique identifier used in the SAP system. It can be mapped back and forth to a system GUID using the functions described below.

 

[C#]

public class RfcTID : System.Object

 

Public Constructors

public static SAP.Connector.RfcTID NewTID ( )

Create a new TID from the SAP .Connector static NewTID method

public RfcTID (System.Guid guid)

Create a new TID from an existing System.Guid

 

Public Methods

public System.Guid ToGuid ( )

Convert from a TID to a GUID

public virtual System.String ToString ( )

Convert the TID to a string

 

End of Content Area