IBM Sterling Transformation Extender

Sterling Transformation Extender

Come for answers, stay for best practices. All we're missing is you.


#Sterling
#Supplychain
 View Only
  • 1.  using the Notes Email adapter as a source.

    Posted 05/28/04 08:44 AM

    Originally posted by: SystemAdmin


    I have been unable to properly configure the Email adapter to use the Notes protocal as a source object. The trace file doesn't appear to provide many answers.

    Mercator e-mail Adapter, Version 6.7(306)
    Copyright © 1997-2000, TSI International Software, DBA Mercator Software
    Built for WIN32 - INTEL on Jun 25 2003 at 20:38:50 by bocabuild.
    Microsoft (R) C Runtime Library is
    Copyright (C) Microsoft Corp. 1981-1998.
    Using C:\WINNT\system32\MSVCRT.dll (Version 6.00.8797.0) for Visual C++ runtime.
    Using C:\Mercator6.7\MapEdit.exe for VIM services.
    Retry Count is 0. Retry Interval is 0. OnFailure is Rollback.
    Fetch Unit is 0. Card Mode is Integral.
    Run Started at 10:08:00.390 on 05/28/04.
    Options used: trace,verbose,name,pass,attach,IAE1,proto
    Using VIM protocol (Lotus Notes specific).
    Mercator e-mail Adapter, Version 6.7(306)
    Copyright © 1997-2000, TSI International Software, DBA Mercator Software
    Built for WIN32 - INTEL on Jun 25 2003 at 20:38:50 by bocabuild.
    Microsoft (R) C Runtime Library is
    Copyright (C) Microsoft Corp. 1981-1998.
    Using C:\WINNT\system32\MSVCRT.dll (Version 6.00.8797.0) for Visual C++ runtime.
    Retry Count is 0. Retry Interval is 0. OnFailure is Rollback.
    Fetch Unit is 0. Card Mode is Integral.
    Run Started at 10:08:00.390 on 05/28/04.
    GetMailCoreInfo: Successful.
    #IBMSterlingTransformationExtender
    #DataExchange
    #IBM-Websphere-Transformation-Extender


  • 2.  Re: using the Notes Email adapter as a source.

    Posted 05/28/04 10:03 AM

    Originally posted by: SystemAdmin


    It may be useful if you provide your adapter commands & settings. Have you looked at Chapter 5 Troubleshooting on Notes in the E-mail Adapter Reference Guide?
    #DataExchange
    #IBMSterlingTransformationExtender
    #IBM-Websphere-Transformation-Extender


  • 3.  Re: using the Notes Email adapter as a source.

    Posted 05/28/04 10:37 AM

    Originally posted by: SystemAdmin


    one of the adapter commands that is executed is -IAE1 in the adapter command list that you are sending to the email adapter.

    Options used: trace,verbose,name,pass,attach,IAE1,proto

    I think what you need to do is surround your adapter string with single ticks, example:
    RUN("map",ECHOIN(1,PACKAGE(Outputcard1))+" -oaemail1 '-proto notes -tv...')

    The only odd thing that you need to be made aware of is the subject line, it has to be surrounded by double quotes, in this example:

    RUN("map",ECHOIN(1,PACKAGE(Outputcard1))+" -oaemail1 '-proto notes -tv -sub "SYMBOL(34)"Here is the subject line"SYMBOL(34)" ...')

    It seems that in notes there is a certain way that the machine that is running Notes needs to be set up, and support would be able to assist, (or if you want, you can read the pdf help).

    Here is the list of adapter commands for Notes:
    The following is the syntax of the Notes e-mail adapter commands used for data sources:

    -PROTO NOTES
    -PASS password
    -ATTACH filename
    -TEXT string
    -PRIORITY level
    -HDR
    -LSN seconds
    [-TRACE[+]V full_path]
    [-AUDIT[+][S] full_path]

    The following is the syntax of the Notes e-mail adapter commands used for data targets:

    -PROTO NOTES
    -PASS password
    -SUBJECT subject
    -TO recipient
    -CC recipient
    -BCC recipient
    -PRIORITY level
    -RECEIPT
    -ATTACH filename
    -TEXT string
    [-TRACE[+]V full_path]
    [-AUDIT[+][S] full_path]
    #IBMSterlingTransformationExtender
    #IBM-Websphere-Transformation-Extender
    #DataExchange