Table of Contents

Search

  1. Preface
  2. Working with Transformations
  3. Aggregator Transformation
  4. Custom Transformation
  5. Custom Transformation Functions
  6. Data Masking Transformation
  7. Data Masking Examples
  8. Expression Transformation
  9. External Procedure Transformation
  10. Filter Transformation
  11. HTTP Transformation
  12. Identity Resolution Transformation
  13. Java Transformation
  14. Java Transformation API Reference
  15. Java Expressions
  16. Java Transformation Example
  17. Joiner Transformation
  18. Lookup Transformation
  19. Lookup Caches
  20. Dynamic Lookup Cache
  21. Normalizer Transformation
  22. Rank Transformation
  23. Router Transformation
  24. Sequence Generator Transformation
  25. Sorter Transformation
  26. Source Qualifier Transformation
  27. SQL Transformation
  28. Using the SQL Transformation in a Mapping
  29. Stored Procedure Transformation
  30. Transaction Control Transformation
  31. Union Transformation
  32. Unstructured Data Transformation
  33. Update Strategy Transformation
  34. XML Transformations

Transformation Guide

Transformation Guide

Step 3. Add the Required Methods to the Class

Step 3. Add the Required Methods to the Class

  1. Return to the Classes View tab of the Workspace Window.
  2. Expand the tree view.
    For the BankSoft example, you expand
    COM_VC_BankSoft
    .
  3. Right-click the newly-added class.
    In the BankSoft example, you right-click the
    IBSoftFin
    tree item.
  4. Click the Add Method menu item and enter the name of the method.
    In the BankSoft example, you enter
    FV
    .
  5. In the Parameters field, enter the signature of the method.
    For FV, enter the following:
    [in] double Rate, [in] long nPeriods, [in] double Payment, [in] double PresentValue, [in] long PaymentType, [out, retval] double* FV
    This signature is expressed in terms of the Microsoft Interface Description Language (MIDL). For a complete description of MIDL, see the MIDL language reference. Note that:
    • [in]
      indicates that the parameter is an input parameter.
    • [out]
      indicates that the parameter is an output parameter.
    • [out, retval]
      indicates that the parameter is the return value of the method.
    Also, all [out] parameters are passed by reference. In the BankSoft example, the parameter FV is a double.
  6. Click OK.
    The Developer Studio adds to the project a stub for the method you added.

0 COMMENTS

We’d like to hear from you!