Lotus notes integration for receiving workitems

Hi All,
       i am getting some problem during getting the workitems in Lotus notes....
what all should i need to check whether configuration side is ok.....
and since which version of SAP is eligible to integration with lotus notes and outlook...?
<removed by moderator - please refer to the [Rules of Engagement|https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement] regarding asking/offering points>
Best Regards
Dev
Edited by: Mike Pokraka on Jul 17, 2008 1:13 PM

yes they exist..........
i have some doubts ........on this
when ever i try to do auto forwording setting ..............
its giving warning      "The forwarder and the recipient are identical"   and making internet address to  external address....
and the variants are like in RSWUWFML2
Job suffix              =        1            " What the siginficant for 2 ? 
Tasks (blank = all)        =     TS00008267  "task number for decision step
New Work items Only   X
one msg per work item  X
Workitem display          X
Workitem execution      X
Message Class for Subject       SWU_NOTIF
Message Number for Subject        2
Before Work Item Description    SWU_NOTIF_PROLOG1
After Work Item Description     SWU_NOTIF_EPILOG2
SAPLOGON_ID   =   SPACE
Regards Dev

Similar Messages

  • C4C & Lotus Notes integration for service users

    Hi,
    I tried to find information about C4C and Lotus Notes integration for service users without success. User manual says on Sales both Outlook and Notes, but in Service only Outlook. Does Lotus Notes add-in work for service users similar than sales users? Is there anywhere demo video for that? I can only found demo video for sales (SAP Sales OnDemand Outlook Integration Demo (new) - YouTube).
    -Aatos

    Hi Aatos,
    The Lotus notes integration currently supports the "Field Service" role in Cloud for Service where you are primarily servicing customers in the the field and have direct email communications with your customers. In this use-case, similar to "Field Sales" (AKA SFA Users) in Cloud for Sales, you can receive an email from a customer, get information about that customer from Cloud for Customer via the Lotus Integration, and be able to upload that email into Cloud for Customer as an email activity to track the email correspondence between the user and the customer.
    However, the Lotus notes integration does not support the "Call Center" role in Cloud for Service where you are a contact center agent in a centralized service center processing emails that are routed into a common inbox and all correspondence is sent out in behalf of a central inbox such as [email protected] In this usecase all emails automatically create tickets and all emails both inbound and outbound are automatically recorded as email activities without customer or user intervention. The email client for this usecase is either a C4C email client or Windows Outlook Client as you found in the documentation.
    Thanks,
    Rei

  • IBM Lotus Notes access for SAP solutions

    Hi SDN friends,
    Can somebody through some light on IBM Lotus Notes access for SAP solutions.
    How this works technically?

    Hi vinay
    u cn refer to these links.u cn get some idea abt IBM Lotus Notes
    IBM Lotus Notes integration with SAP CRM
    Integrating lotus notes with R\3
    ESS to IBM Lotus Notes...
    Regards
    Bhargava
    sorry for replying late,i havent seen this question.......
    pls assign points if the links are useful by clicking on the radio buttons to the left of my post

  • Company for Lotus Notes Integration

    Hello,
    I'm searching for solutions to integrate Lotus Notes into Enterprise Portal.
    I found much information about the You@Web Repository Manager for Lotus Notes, supplied by Conet.
    This is the only company, I found.
    Does anyone know another company with a solution for Notes integration, so that i can compare them?
    Or is Conet the only one supplier?
    Thanks in advance!
    Best regards,
    Sven

    Hello Sven,
    as far as I know and based on the SAP certification records CONET is the only company delivering a KM repository manager for Lotus Notes/Domino databases.
    Despite the fact that the "old" SAP KM repman for Domino is technically limited to R5, the CONET repman also comes with more features and richer functionality (e.g. you can configur your distributed Lotus landscape / replication architecture for the Conet repman and other features).
    Simply visit SAP TechED 2006 Session UPE106 and learn more on Lotus integration with SAP KMC.
    Regards
    Michael

  • Workflow - Lotus Notes Integration

    Hi All,
    I am working on 4.6 C. My requirenment is to send the workitems to lotus notes, from where he can click and executes the workitem.
    I checked the tcode SWNCONFIG in 4.6 C ,but this tcode is not there.
    Please advise me on the possibility of this integration...
    Thanaks in advance
    regards
    Vijay.

    Talk to your BASIS to configure SCOT settings.
    You need to schedule a report RSWUWFML2 in background which sends the workitem to Outlook.
    Also look at below useful links:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/7e05ec90-0201-0010-81b5-bda2a0705821
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6757ceef-0201-0010-3996-a777463727de
    http://help.sap.com/erp2005_ehp_02/helpdata/EN/d5/581ee8d56f1247bf34cfcd66d16d81/content.htm
    <i>*Reward each useful answer</i>
    Raja T

  • Adobe/MS Access/Lotus Notes Integration

    Not sure if I'm in the right place, please feel free to let me know if not.  Have searched in Access and Lotus Notes forums but no answers yet. I am using MS Access to automatically send email from Lotus Notes and attach a PDF file that is located on the server.  Next step is I would like to be able to create a PDF portfolio out of that sent email and save/name it according to key data in the record.  Am also using batch file to create the network folder but am hoping to be able to merge all these processes into one so that when the email is sent, the folder will be created and the PDF portfolio created from the sent email.  So far, have not been able to find any answers, am hoping at a minimum someone might be able to point me in the right direction.
    Am using this method to batch create folders based on new records in the Access database:
    http://www.0092ff.com/tips-tricks/create-folders-from-an-excel-sheet
    Here is the code I'm using to create the email - anyone know of any way to take that email that just got sent in Lotus Notes and create a PDF Binder/Portfolio?  Thank you so much!
    Private Sub cmdSendEmail_Click()
    SendPrequal
    MsgBox "Prequal Request Complete!"
    Me.Requery
    End Sub
    Sub SendPrequal()
    Dim oEmail As clsEmailMessage
    Dim strSubject As String, strAttach As String, strAttachIns As String, strBody As String, strSave As String, strMsg As String, Saveit As Boolean
    Dim rtItem As Object
    Dim rtStyle As Object
    Dim sFormattedText As String
    If Me.MsgFreeFlow.Value = "" Then
    Else
    strFF = Me.MsgFreeFlow.Value & vbCrLf & vbCrLf
    End If
    sFormattedText = strFF
    strSubject = "Information Request for " & StripString([RQContractor])
    strAttach = "d:\MyDocs\Forms\pdf\FormName.pdf"
    strMsg = "Message Here" & vbNullString & vbCrLf & vbCrLf
    strBody = strMsg
    If Me.PF.Value = 0 Then
    strAttachIns = "d:\MyDocs\MyAttach_a.pdf"
    Else
    strAttachIns = ":\MyDocs\MyAttach_b.pdf"
    End If
    Set oEmail = New clsEmailMessage
    oEmail.AddRecipient Me.ContractorEmail, recipTo
    oEmail.AddAttachment strAttach
    Select Case Me.frmINS
    Case -1
    oEmail.AddAttachment strAttachIns
    Case 0
    End Select
    oEmail.SendEmail strSubject, strMsg, False
    'doc.ReturnReceipt = "1"
    'save draft
    'Saveit = True
    Set oEmail = Nothing
    End Sub
    clsEmailMessage Module:
    '**************************CLASS CODE **************
    Option Compare Database
    Option Explicit
    'creates and sends email using lotus notes.
    'does not require notes to be running (it will start a session if needed).
    'does not require references in the project
    'uses OLE not com, so objects are declared as simple objects
    'the declares below are for using COM, but this may require some
    'additional configuration to work.
    'Dim mobjNotesDB As NotesDatabase
    'Dim mobjNotesMessage As NotesDocument
    'Dim mobjNotesRTItem As NotesRichTextItem
    'Dim mobjNotesSession As notessession
    Dim mobjNotesSession As Object 'lotus notes session
    Dim mobjNotesMessage As Object 'a notesdocument object (the email message)
    Dim mobjNotesDB As Object 'a notes db object
    Dim mobjNotesRTItem As Object 'a notes tich text object
    'notes constant for attaching file
    Const EMBED_ATTACHMENT = 1454
    Public Enum RecipTypes
    recipTo = 1
    recipCc = 2
    End Enum
    Private Sub Class_Initialize()
    Set mobjNotesSession = CreateObject("Notes.Notessession")
    Set mobjNotesDB = mobjNotesSession.GetDatabase("", "")
    Call mobjNotesDB.OPENMAIL
    ' make new mail message
    Set mobjNotesMessage = mobjNotesDB.CreateDocument
    'create the body
    Set mobjNotesRTItem = mobjNotesMessage.CreateRichTextItem("Body")
    End Sub
    Private Sub Class_Terminate()
    Set mobjNotesSession = Nothing
    Set mobjNotesMessage = Nothing
    Set mobjNotesDB = Nothing
    Set mobjNotesRTItem = Nothing
    End Sub
    Public Sub AddRecipient(strName As String, intType As RecipTypes)
    Dim intNextSemiColon As Integer
    Dim intLastSemiColon As Integer
    Dim strOneAddress As String
    Dim j As Integer
    Dim blnLastAddress As Boolean
    'If the passed contact has a semi-colon, split into multipe contacts
    If InStr(1, strName, ";") > 0 Then
    intLastSemiColon = 1
    intNextSemiColon = 0
    blnLastAddress = False
    For j = 1 To Len(strName)
    intNextSemiColon = InStr(intLastSemiColon, strName, ";")
    If intNextSemiColon = 0 Then
    blnLastAddress = True
    strOneAddress = Mid(strName, intLastSemiColon, Len(strName))
    Else
    strOneAddress = Mid(strName, intLastSemiColon, intNextSemiColon - 1)
    intLastSemiColon = intNextSemiColon + 1
    End If
    If intType = recipTo Then
    If mobjNotesMessage.HasItem("SendTo") Then
    Call mobjNotesMessage.AppendItemValue("Sendto", strOneAddress)
    Else
    Call mobjNotesMessage.ReplaceItemValue("Sendto", strOneAddress)
    End If
    ElseIf intType = recipCc Then
    If mobjNotesMessage.HasItem("Copyto") Then
    Call mobjNotesMessage.AppendItemValue("Copyto", strOneAddress)
    Else
    Call mobjNotesMessage.ReplaceItemValue("Copyto", strOneAddress)
    End If
    End If
    If blnLastAddress = True Then Exit For
    Next j
    'Otherwise, just add one name
    Else
    If intType = recipTo Then
    If mobjNotesMessage.HasItem("SendTo") Then
    Call mobjNotesMessage.AppendItemValue("Sendto", strName)
    Else
    Call mobjNotesMessage.ReplaceItemValue("Sendto", strName)
    End If
    ElseIf intType = recipCc Then
    If mobjNotesMessage.HasItem("Copyto") Then
    Call mobjNotesMessage.AppendItemValue("Copyto", strName)
    Else
    Call mobjNotesMessage.ReplaceItemValue("Copyto", strName)
    End If
    End If
    End If
    End Sub
    Public Sub AddAttachment(strFilePath As String, Optional vName As Variant)
    Dim strName As String
    If IsNull(vName) Or IsMissing(vName) Then
    strName = strFilePath
    Else
    strName = vName & ""
    End If
    mobjNotesRTItem.EMBEDOBJECT EMBED_ATTACHMENT, "", strFilePath, strName
    End Sub
    Public Sub SendEmail(strSubject As String, strText As String, blnPreview As Boolean)
    Call mobjNotesMessage.ReplaceItemValue("Subject", strSubject)
    Call mobjNotesRTItem.AddNewLine(2)
    Call mobjNotesRTItem.AppendText(strText)
    mobjNotesMessage.SAVEMESSAGEONSEND = True
    If blnPreview = False Then
    Call mobjNotesMessage.Send(False)
    Else
    Call mobjNotesMessage.Save(True, False)
    End If
    End Sub
    '***************END CLASS CODE ***************************

    Found this link, http://forums.adobe.com/thread/797809?tstart=-1, that states:
    Acrobat 9 and later supports creation of a PDF Portfolio (the newer form of packages) via JavaScript, which can be called from VBA using the JSObject bridge.
    Have been looking along those lines, but not sure what I'm looking for, if there is a way to create the PDF portfolio using code, I would greatly appreciate any information, thank you.

  • Lotus notes integration

    Hi all,
    I want to integrate Lotus notes mail to my portal page.
    Please send me the step by step configuration to proceed on.
    Yours help will be more appreciated.
    Thnz for the help in advance.
    Cheers
    Faheem

    Hi,
    Check this documentation
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/ibm/An%20Overview%20of%20IBM%20Lotus%20Integration%20with%20SAP%20Enterprise%20Portal.pdf
    Regards,
    Ganesh N

  • The Mq Adapter Is Not Working For Receiving Messages

    Hi,
    I have a problem making a receiving messages from the MQ Series, I configured MQ adapters for receiving message from a IBM MQ in a bpel flow, there's messages on the queue but the bpel is not getting any message. We use the same sample on the oracle page
    http://download.oracle.com/docs/cd/B31017_01/integrate.1013/b28994/adptr_mq.htm#BGEJGCBB
    This is the opmn log for more details,
    <2008-06-03 16:58:29,580> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Staring Poller
    <2008-06-03 16:58:29,580> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Getting CCIConnection.
    <2008-06-03 16:58:29,580> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [ConnectionFactoryImpl] Creating Connection.
    <2008-06-03 16:58:29,581> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [ManagedConnectionFactoryImpl] Matching ManagedConnection...
    <2008-06-03 16:58:29,581> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [ManagedConnectionFactoryImpl] Found ManagedConnectionFactory instance.
    <2008-06-03 16:58:29,581> <INFO> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [ManagedConnectionFactoryImpl] Found MatchedConnection.
    <2008-06-03 16:58:29,581> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [ManagedConnectionImpl] Creating Connection.
    <2008-06-03 16:58:29,582> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> Constructor.
    <2008-06-03 16:58:29,582> <INFO> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [ManagedConnectionImpl] Created Connection.
    <2008-06-03 16:58:29,582> <INFO> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [ConnectionFactoryImpl] Created Connection.
    <2008-06-03 16:58:29,582> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Got CCIConnection.
    <2008-06-03 16:58:29,582> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Getting Connection to Queue :PRUEBA1
    <2008-06-03 16:58:29,583> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] using alive queue:PRUEBA1
    <2008-06-03 16:58:29,583> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Got Connection to Queue :PRUEBA1
    <2008-06-03 16:58:29,584> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] using alive queue:PRUEBA1
    <2008-06-03 16:58:29,585> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] using alive queue:PRUEBA1
    <2008-06-03 16:58:29,586> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Queue depth=1
    <2008-06-03 16:58:29,587> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] using alive queue:PRUEBA1
    <2008-06-03 16:58:29,588> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] using alive queue:PRUEBA1
    <2008-06-03 16:58:29,589> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Creating shell MQMessage.
    <2008-06-03 16:58:29,589> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Returning shell MQMessage.
    <2008-06-03 16:58:29,589> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Getting message
    <2008-06-03 16:58:29,590> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] using alive queue:PRUEBA1
    <2008-06-03 16:58:29,592> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Got message
    <2008-06-03 16:58:29,592> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Got the message.
    <2008-06-03 16:58:29,592> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] MessageId :414D51204449474930362E542E514D2015584448201B6802
    <2008-06-03 16:58:29,593> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] CorrelationId :414D51204449474930362E542E514D2015584448201B6803
    <2008-06-03 16:58:29,593> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] GroupId :000000000000000000000000000000000000000000000000
    <2008-06-03 16:58:29,593> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Creating new MQMessageInfo.
    <2008-06-03 16:58:29,593> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Created new MQMessageInfo.
    <2008-06-03 16:58:29,593> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Enqueing MQMessageInfo for processing.
    <2008-06-03 16:58:29,594> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQMessageToProcess] Ignoring MQMessage(mid) : 414D51204449474930362E542E514D2015584448201B6802 gid :000000000000000000000000000000000000000000000000 as this MessageId is already enqued for processing.
    <2008-06-03 16:58:29,594> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Enqueued MQMessageInfo successfully.
    <2008-06-03 16:58:29,594> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Staring Poller
    <2008-06-03 16:58:29,595> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Getting Connection to Queue :PRUEBA1
    <2008-06-03 16:58:29,595> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] using alive queue:PRUEBA1
    <2008-06-03 16:58:29,595> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Got Connection to Queue :PRUEBA1
    <2008-06-03 16:58:29,596> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] using alive queue:PRUEBA1
    <2008-06-03 16:58:29,597> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] using alive queue:PRUEBA1
    <2008-06-03 16:58:29,598> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Queue depth=1
    <2008-06-03 16:58:29,599> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] using alive queue:PRUEBA1
    <2008-06-03 16:58:29,600> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] using alive queue:PRUEBA1
    <2008-06-03 16:58:29,601> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Creating shell MQMessage.
    <2008-06-03 16:58:29,601> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Returning shell MQMessage.
    <2008-06-03 16:58:29,601> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Getting message
    <2008-06-03 16:58:29,602> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] using alive queue:PRUEBA1
    MQJE001: Completion Code 2, Reason 2033
    <2008-06-03 16:58:29,604> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] setting queue pointer to start...
    <2008-06-03 16:58:29,604> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Closing CCIConnection.
    <2008-06-03 16:58:29,605> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [ManagedConnectionImpl] Cleaning ManagedConnection.
    <2008-06-03 16:58:29,605> <INFO> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [ManagedConnectionImpl] Cleanedup ManagedConnection.
    <2008-06-03 16:58:29,605> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Closed CCIConnection.
    <2008-06-03 16:58:29,605> <DEBUG> <default.collaxa.cube.activation> <MQSeries Adapter::Inbound> [MQPollerThread] Sleeping Poller for 3000 msec.
    Regards,
    Ivan Loaiza.

    Hi James,
    The message id and the correlation id are diferent in this case. This is not the problem. You can see tha last number is diferent
    MessageId :414D51204449474930362E542E514D2015584448201B6802
    CorrelationId :414D51204449474930362E542E514D2015584448201B6803
    Regards,
    Ivan Loaiza

  • Lotus Notes integration with WebCenter?

    I need to integrate Lotus Notes in WebCenter without using Adapters .can anyone help me out??
    Thxs in Advance
    praveena

    hi praveena,
    you should be able to use the lotus notes portlet that is provided as part of the OracleAS Provider for Lotus Notes.
    http://www.oracle.com/technology/products/ias/portal/point_downloads.html#lotus
    the portlet was originally designed for oracle portal but you should be able to register it in WebCenter as well.
    regards,
    christian

  • How can I Purchase Lotus Notes (IBM) for MacBook Air?

    Dear Friends,
    Can you help me,
    Please guide me to Purchase Lotus Notes Software (IBM) for my MBA.
    Thx
    Dodijp

    http://www-01.ibm.com/support/docview.wss?uid=swg21599884
    Hope this helps.

  • XML Format not poper For receiver File Adapter

    I am using XML File to xML File scenario. My receiver is SAP R/3 system. When I send file from another system, It is properly seen in payload but the file is not properly recived on SAP R/3. The XML File appears on single line and when seen on SAP side side the fileis cut after some length. Any help is appreciated.

    hi,
    >>>The XML File appears on single line and when seen on SAP side side the fileis cut after some length. Any help is appreciated.
    it's probably not the XML file file that is corrupter but the way you view the file
    do you open it from AL11? if so it does not show the whole file
    PI/XI does not cut XML files for sure
    Regards,
    Michal Krawczyk

  • Workflow integration with IBM lotus notes

    Hi
    Can anyone tell me how does SAP workflow builder interact with IBM Lotus notes? For e.g., say a workflow has been initiated by a user and it has been assigned to his manager. Then in this case, the manager should be intimated by an email about the start of the workflow. How to configure the email ids to continue with the workflow. Can you please tell me the exact procedure of carrying out this workflow starting from the beginning till end?

    Hello,
    You can set up Extended Notifications outside of workflow to send emails (which can end up in Lotus Notes) telling users that they have workitems in their inbox.
    If you just want to tell someone a workflow has started, then you can use a SendMail step within the workflow.
    For more information, search the forum.
    If you run into any problems, feel free to ask.
    regards
    Rick Bakker
    Hanabi Technology

  • JCA adapter for lotus notes

    Hi,
    I am working for the integration of Lotus notes (R5) with weblogic server 7.0 using JCA.Can anyone please help me to know about the JCA Resource adapters that are available for Lotus Notes integration with Weblogic 7.0.
    with regards,
    Vinod

    Vinod,
    Have you got anything on this already? Please share.

  • SAP CRM Integration with lotus notes & blackberry (Mobile application) ?

    Dear Experts,
    Can any one pls explain me rough step in SAP CRM Integration with lotus notes & blackberry (Mobile application) ! I dont want detailed steps but pls explain me some important steps for this integration. Also pls tell me which standard SAP document i hve to refer for it !
    As i am totally new to such integraion. pls help me out of this !!!! Helpful answer will be rewarded with full points.
    Regards,
    Amol Tambe.

    Hi Amol Tambe,
    Please refer the following SDN threads to find more information about SAP CRM and Lotus notes integration:
    Re: Integration of SAP CRM 7.0 with Lotus
    Re: Need the connectivity between CRM and Lotus Notes.
    However, the above discussion is for CRM online and Lotus notes integration.
    Hope this helps!
    Regards,
    Chethan
    Edited by: Chethan Kumar C M on Sep 27, 2009 9:41 AM

  • Integration with Lotus Notes 8.5 - Room Reservation System to Add Approval Steps

    I have implemented several LiveCycle Forms with Some Workflow all
    based on XML and .NET. All working fine.
    Now, I have a new project (yet to be approved) which is to add
    Workflow and Approval Steps for Lotus Notes Room Reservation System.
    The current system on Lotus Notes, is out-of-the-box from Lotus, and
    it is working very well, and it has great repeat option to setup the
    required schedule to make the needed room reservation system.
    The user now requested to add some new features like add 2 more
    approval steps, and some new fields.
    I can modify the application in Lotus Notes, but this will creat a new
    problem. If there is new version coming for this system from Lotus
    Notes, then I will have to sync the modifications I did, and it will
    be a problem.
    I have put some screen shots to help understand what we are talking
    about:
    https://docs.google.com/leaf?id=0B97clwYte2SHYmUyZTRiZDEtZWRjZS00YmQ3LTg1MDUtM2MxNmYyYTIzM 2Ix&hl=en
    I have developed several programs in the past, I was able to connect
    to Lotus Notes Database from .NET.
    My plan is to develop the new Form in Adobe LC Desinger, with all the
    new required features, and connect to what ever existing functions/
    data to Lotus Notes (in both directions).
    The only thing I need help for is how to capture the Repeating
    Calendar Entry. I think this will take some effort. Becuase, once I
    capture all input parameters, I have to call a Web Service (in .NET)
    to get a list of Free Rooms to choose from.
    Here are my questions:
    1. Do you have any feedback on the above ?
    2. Any one has done any work to capture a repeating calendar entry in
    a PDF Form ?

    Hi Anil
    For Lotus notes integration with SAP solutions, pl check the following links:
    http://www.redbooks.ibm.com/redpieces/pdfs/redp4215.pdf
    http://www-306.ibm.com/software/info/ecatalog/en_US/products/Z262246B25186K14.html
    Best regards
    Ramki

Maybe you are looking for

  • Where to find the information to setup the J2EE server to run optimal CPS

    Hello, I am looking for the information, how the J2EE server should be setup, to run optimal CPS. In the installation guide I am not finding it, our I am not looking on the right pages. We are using CPS for 4 dev. systems, 1 q und 5 prod. systems. On

  • SAP installation in windows vista

    Hi All, For latest windows vista operating system shall SAP installation will support? Thanks. Regards, Srinivasa Anil Kumar

  • Coldfusion ignoring NTFS permissions

    I have seen a few older posts that have presented this same issue, but there was no resolution in the thread.  I have posted on those threads asking if they found a solution, however thought I would present the issue myself and hopefully someone has

  • Implementing TRIE using linked lists

    Node InsertNode(string name, Node root) int index = 1; string key; Node currentNode = root; while (index <= name.Length) key = name[index - 1].ToString(); Node resultNode = currentNode.Children.GetNodeByKey(key); if (resultNode == null) Node newNode

  • How do we update the script from Adobe Indesign CS2 to CS3?

    hi, What is the main difference between the adobe indsign cs2 and indesign cs3? How do we update the script acccording to the version? Regards, Subha