Sending real-time values to the Section Report.

Question:

How can I copy values from a Display to the Section Report in Elipse E3?

Solution:

To do so, access the Section Report and create a Datafield and a script that, via GetScreenValue method, passes the values from the Display to the Datafield.

Example:

In this example, “Text1” is the name of the Display object on screen. “Label1” is the name of the Datafield created in the Section Report.

Sub ActiveReport_ReportStart
dim Application = Activator.CreateInstance(Type.GetTypeFromProgID("Reports.E3ApplicationLink"))
Application.LinkWithApplication(rpt)
Me.Label1.Text = Application.GetScreenValue("Text1")
End Sub
Print Friendly, PDF & Email

Este artigo foi útil? Was this helpful?

Classificação média - Average rating 0 / 5. Count: 0

Leave a Reply

Your email address will not be published.Required fields are marked *