/
TccSAP.Functions

TccSAP.Functions

Parameter

TccSapFunction

Beschreibung

Über die nur lesen Eigenschaft Functions kann auf das TccSapFunction Objekt zugegriffen werden.

Beispiel

SAP      := TccSap.Create(Client, ApplicationServer, User, Password, SystemNumber, Language);
Request  := TccSapFunctionData.Create;
Response := TccSapFunctionData.Create;
SapTable := TccSapTable.Create;
try
  if SAP.Connection.Test then
  begin
    Request.Parameters.Items['NAME'] := 'Test';
    Request.Parameters.Items['ROWS'] := 100;

    Sap.Functions.Execute('/CLARC/EXAMPLEFUBA',Request,Response);    
    TableData := Response.Tables['EXAMPLETABLE'];
  end;
finally
  Request.Free;
  Response.Free;
  SapTable.Free;
  SAP.Free;
end;

Related content

TccSAPReadTable.Query
TccSAPReadTable.Query
More like this
TccSAP.CreateExt
TccSAP.CreateExt
More like this
TccSapFunction.Execute
TccSapFunction.Execute
More like this
TccSAP Klasse
More like this
TccSAP Klasse
More like this
TccSAP Klasse
More like this