FlowFact - Entwicklungstools v19.881 FLOWFACT 2017 R2 - Function - FF_ParseAndFill

Detaildaten verarbeiten

Diese Funktion zerteilt den Eingabe-Wert des aktuellen Datensatzes in OBJDET (DETAILSDET,..) in die Von und Bis Werte Übergabewerte : Recordset, Typ der Feldart des aktuellen DS, Boolscher Wert ob die Meldung angezeigt werden soll.
Function FF_ParseAndFill(ByVal rsDets As ADODB.Recordset, ByVal typ As Integer, Optional bMsg As Boolean = False) As String
Public Function FF_ParseAndFill(ByVal rsDets As ADODB.Recordset, ByVal typ As Integer, Optional bMsg As Boolean = False) As String
    Select Case m_oApplication.FlowFact_InitType
        Case INITTYPE_APPLICATION
            FF_ParseAndFill = m_oApplication.FlowFact_Application.ParseAndFill(rsDets, typ, bMsg)
        Case INITTYPE_CONNECTOR
            FF_ParseAndFill = m_oApplication.FlowFact_Connector.ParseAndFill(rsDets, typ, bMsg)
        Case Else
            RaiseError_NotInit
    End Select
End Function