Offline Approvals via Lotus Notes

We are currently implementing SRM 7.0.
We have configured off line approvals and the email content is sent correctly to Lotus Notes.
When the user clicks "Approve" in Lotus Notes, the approval email is not automatically sent to SRM.  The user is presented with a second screen that requires them to press the "Send" button in Lotus Notes.
We have a few questions:
Is this the standard function? If yes, can this behavior be changed? 
If this behaior cannot be changed, can we edit/add text to the blank Lotus Notes email?
Thanks!

Hi,
It depends on how email client handles the mailto action in HTML form.
Outlook shows dialog box. I think this is related with some security setting in email client side.
This is received HTML email.
<FORM name=post_decision accept-charset=UTF-16
action=mailto:WF-Batch#EBP_GEN_REPLY# method=post encType=text/plain>
<TABLE>
  <TBODY>
  <TR>
    <TD>
      <!#EBP_GEN_MAILTO_BEGIN#>
      To approve or reject directly from this
      e-mail, click on one of the following buttons (allow program to send e-mail in background):
      <INPUT type=hidden value=00F3D1395134D34D34D3BE3BE38E01512DB5DB5FBE name=TECH_INFO_A>
      <INPUT  type=submit value="Approve by e-mail" name=submit>  
      <INPUT  type=submit value="Reject by e-mail" name=submit>
      <INPUT type=hidden value=444244093D34D34D34EF8EF8E380544B6D76D7 name=TECH_INFO_R>
      <!#EBP_GEN_MAILTO_END#>
    </TD>
  </TR>
  </TBODY>
</TABLE>
</FORM>
Regards,
Masa

Similar Messages

  • Open Siebel Offline Access via PDA (not blackberry)

    Hi expert,
    we are trying to access Siebel ondemand offline (the macro-enabled excel file) access via PDA phone (not blackberry).
    However, there is a password embedded in the excel file that makes it impossible to open the file via PDA. Is there any way we can get the password? Or other ways to use Offline Access via PDA?
    Thanks.
    Sabrina

    Hi Bob,
    sorry to bother you again. We have been contacting Antenna but they do not have presence in Asia. We found another vendor in India, but they were not very responsive.
    We need to use the PDA solution in greater China area, including Taiwan, China and Hong Kong. Do you know other vendor who may be interested?
    Thank you very much. Sab

  • Sending email via Lotus Notes

    Does anyone have any examples of sending e-mail through Lotus Notes via forms 6i? I have searched the forum and there seems to be very few items on Lotus Notes.
    Thanks in advance.
    Jeff

    A simple way is the host-command.
    The command-string is "start mailto:address?body='Text'&subject='Text"
    The length of host-string is limited.
    Text_io can help: Create the cmd-file and then start it thru the host-command.
    Also simple: Create a html-file x.html and start this via host(Start x.html')
    I am interested und this topic, too, because I can't attach files with this simple methods.
    Wolfram

  • Send mail via Lotus Notes R5

    Does anyone have any examples of sending e-mail through Lotus Notes via forms 6i?
    I have searched the forum and there seems to be very few items on Lotus Notes.
    Thanks in advance.
    Lakmal

    Fainaly I found the way.. here is the coding
    PROCEDURE send_email(p_recipient_in IN VARCHAR2,
    p_copy_to_in IN VARCHAR2,
    p_blind_copy_to_in IN VARCHAR2,
    p_subject_in IN VARCHAR2,
    p_text_in IN VARCHAR2,
    p_return_receipt_in IN VARCHAR2,
    p_no_of_attachments IN NUMBER DEFAULT 0,
    p_mood_stamp_in IN VARCHAR2,
    p_view_icon_in IN NUMBER) IS
    -- Local Variable Declaration
    lv_args ole2.list_type;
    lv_db ole2.obj_type;
    lv_doc ole2.obj_type;
    lv_return_receipt VARCHAR2(1);
    lv_session ole2.obj_type;
    lv_attach1 ole2.obj_type;
    lv_attach2 ole2.obj_type;
    lv_mailserver VARCHAR2(200) := 'ew-cmb';
    lv_sqlerrm VARCHAR2(255);
    BEGIN
         lv_session := ole2.Create_Obj('Notes.NotesSession');
         lv_args := ole2.Create_Arglist;
         ole2.Add_Arg(lv_args, lv_mailserver); -- Mail Server
         ole2.Add_Arg(lv_args, 'names.nsf'); -- Mail File
         ole2.Add_Arg(lv_args, 'mail\Lakmal_M.nsf'); Mail File
         lv_db := ole2.Invoke_Obj(lv_session, 'GetDatabase', lv_args);
         ole2.Destroy_Arglist(lv_args);
         lv_doc := ole2.Invoke_Obj(lv_db, 'CreateDocument',lv_args);
         ole2.Set_Property(lv_doc, 'SendTo', p_recipient_in);
    If (p_copy_to_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'CopyTo', p_copy_to_in);
    End If;
    If (p_blind_copy_to_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'BlindCopyTo', p_blind_copy_to_in);
    End If;
    -- Guidelines for mood stamp as to what argument values should be passed
    -- ''- Normal
    -- P - Personal
    -- C - Confidential
    -- R - Private
    -- F - Flame
    -- Q - Question
    -- G - Good Job!
    -- M - Reminder
    -- J - Joke
    -- T - Thank You!
    If (p_mood_stamp_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'SenderTag', p_mood_stamp_in);
    End If;
    If (p_subject_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'Subject', p_subject_in);
    End If;
    If (p_text_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'Body', p_text_in);
    End IF;
    --To embed attachments add the following lines to code immediately after
    -- setting the 'Body' property :
    If (nvl(p_no_of_attachments,0) = 0) then -- No attachments
         null;
    Else
         lv_args := ole2.Create_Arglist;
         ole2.Add_Arg(lv_args, 'Attachments');
         lv_attach1 := ole2.Invoke_Obj(lv_doc, 'CreateRichTextItem', lv_args);
         ole2.Destroy_Arglist(lv_args);
         lv_args := ole2.Create_Arglist;
         ole2.Add_Arg(lv_args, 1454);
         ole2.Add_Arg(lv_args, '');
         Ole2.Add_Arg(lv_args, 'C:\Install.log');
         lv_attach2 := ole2.Invoke_Obj(lv_attach1,'EMBEDOBJECT', lv_args);
    End If;
    -- 1-Return Receipt
    -- 0-No Return Receipt
    lv_return_receipt := TRANSLATE(NVL(UPPER(p_return_receipt_in), 'N'), ' NY', '001');
    ole2.Set_Property(lv_doc, 'ReturnReceipt', lv_return_receipt);
    If (lv_return_receipt = '1') then
         ole2.Set_Property(lv_doc, 'DeliveryReport', 'B');
    End If;
    -- The following values can be used to set the icon that appears to the left
    -- of the senders name.
    -- 0 - none
    -- 10 - finger with ribbon
    -- 23 - newspaper
    -- 74 - flame
    -- 83 - thumbs up
    -- 85 - happy face
    -- 133 - envelope
    -- 159 - star
    -- 162 - question mark
    -- 163 - investigator
    -- 166 - glasses
    -- 169 - red circle
    -- 170 - gold circle
    If (p_view_icon_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, '_ViewIcon', p_view_icon_in);
    End If;
    ole2.Destroy_Arglist(lv_args);
    lv_args := ole2.Create_Arglist;
    ole2.Add_Arg(lv_args, 0);
    ole2.Invoke(lv_doc, 'Send', lv_args);
    ole2.Destroy_Arglist(lv_args);
    ole2.Release_Obj(lv_session);
    ole2.Release_Obj(lv_db);
    ole2.Release_Obj(lv_doc);
    EXCEPTION
         WHEN OTHERS THEN
         lv_sqlerrm := substr(sqlerrm,1,255);
         Message('Unable to send mail to ' || p_recipient_in);
         Message('Unable to send mail to ' || p_recipient_in);
         Message('Error is : '||lv_sqlerrm);
         Message('Error is : '||lv_sqlerrm);
         Set_Application_Property(CURSOR_STYLE, 'DEFAULT');
         RAISE;
    END;

  • Send mails via Lotus Notes using VFP

    Hi all,
    I have an VFP application which is allowing send emails from Lotus Notes. Currently it sends mails from the default account in Lotus notes. But now there is a requirement as follows.
    An email address can be defined from our application. Say
    [email protected] Lotus notes has been configured with two mail accounts such as
    [email protected] and [email protected] and the default email is
    [email protected] Now we have to send emails from our application with
    [email protected] email address. Not the default email address.
    To do this we have to read all email accounts configured in Lotus Notes using VFP. And look for the email address
    [email protected] and mail should be sent with that account. Can anybody guide me how to do this using VFP? Thanks.
    Best Regards,

    This is actually a Notes question. You need to find out whether the Notes automation server provides what you need and how to do it.
    Tamar

  • Cannot send outgoing mail via Lotus Notes

    Just installed Lotus Notes 6.5 on my PC (Win XP Pro SP3).  Have no problems receiving email ... just cannot send.  I keep getting same error msg:
    "SMTP Protocol returned a permanent error.  Failed with outgoing.verizon.net"
    Does anyone have a solution?
    Solved!
    Go to Solution.

    Make sure that you have the outgoing server, outgoing.verizon.net as an authenticated server.  You will need your Verizon Online username and password.  The Verizon Online username/password is set up differently than FiOS - I didn't get one of these accounts until I called and requested one.
    http://www22.verizon.com/ResidentialHelp/FiOSInternet/Email/Troubleshooting/QuestionsOne/85681.htm

  • Acrobat via Lotus Notes

    My account has changed all users to use "local replicates"
    for email retrival (Lotus Notes) instead of direct from server.
    Problem is that when in Acrobat (version 7) if I select email it
    produces an error message saying it can't find the files (ex
    mail\joeblow.nsf) This only occurs in "local replicate" mode, not
    in "server: mode. Any ideas or has anyone else experianced
    this

    Could you provide more detail? What part is Authorware
    playing in this
    process?
    "rjmorris" <[email protected]> wrote in
    message
    news:eaqgo6$9k9$[email protected]..
    > My account has changed all users to use "local
    replicates" for email
    > retrival
    > (Lotus Notes) instead of direct from server. Problem is
    that when in
    > Acrobat
    > (version 7) if I select email it produces an error
    message saying it can't
    > find
    > the files (ex mail\joeblow.nsf) This only occurs in
    "local replicate"
    > mode, not
    > in "server: mode. Any ideas or has anyone else
    experianced this
    >

  • Offline Help via F1 not working despite valid settings

    I recently installed CS6 Design & Web Premium on a Windows 8 system, after which all updates were installed.
    I opened Adobe Help Manager and changed "Display Local Help content only" to "Yes" in the General Settings. Over night the local content section downloaded all the PDFs so now when I'm in Help Manager I can open any PDF listed as "Current" in the "Status" column.  Acrobat X Pro is the default PDF viewer so PDFs open in it.
    But when I press the F1 key in Photoshop, Illustrator, etc., I get an error message: "Online Help could not be displayed because you are not connected to the Internet."
    I am connected to the Internet. Moreover, if I change "Display Local Help content only" to "No", F1 will open the usual online help in the browser. But I don't want that; I want F1 to open the appropriate PDF, which ostensibly is what Adobe Help Manager is supposed to make happen.
    Adobe chat and phone support were clueless about this issue. Phone support tried to maintain this is happening because my PC is connected to a LAN and "we do not support network issues"..., and chat finally said to call the 800 support number after several attempts to get the tech to understand the above problem description.
    If F1 opens web-based help when pressed while "Display Local Help content only" is set to "No", then F1 should open the appropriate Help PDF when pressed while "Display Local Help content only" is set to "Yes", right?!
    Lastly, please note that I had this same problem in my previous installation under Windows 7 but I just put up with using online help. This time I'd like it to work properly.

    A couple of extra tests:
    In File > Song Settings > Metronome, check "Click while playing" to see if it makes any difference. Also, check "Metronome plays through built-in speakers".
    If no go, reset them.
    You do need to have a MIDI Click object in the environment. Open up Windows > Environment and look on the Clicks an Ports layer (to get there, click hold on the button just below the tool bar in the Environment window).
    If you can't see a MIDI Click object, it's gone walkabout for some reason.
    Create a new one using New > MIDI Metronome Click. You shouldn't need to change any of the settings. In fact, you could always delete the old one and create a new one - you can't do any damage deleting the old one so have a go.
    Let us know how you get on.
    Pete

  • When trying to send mail via Lotus Notes webmail, mail does not get send

    Firefox 4.01, XUL-manager installed.
    Logged in to corporate webmail, can see mails etc. I can create a mail (new, reply, etc.) but when I hit the send button, I get a popup asking if a copy needs to be archived. no matter if I say yes or no, the mail does not get send. Also saving as draft does not work.

    Hi,
    yes smtp is a standard and I think you could use this with almost every smtp server.
    If your smtp server doesn't require authentication you can access it without an authenticator
    I think...
    Best regards,
    Jens

  • Unable to retreive data from Lotus Notes Database

    Hi there,
    I have problems to connect to a view in Lotus notes via Lotus Notes SQL Driver.  The following message appear when trying to retreive data via WebI
    Database error: [Microsoft][ODBC Driver Manager] Driver's SQLAllocHandle on SQL_HANDLE_DBC failed. Contact your Business Objects administrator or database supplier for more information. (Error: WIS 10901)
    I also tried via Desktop Intelligence and I got this error:
    Exception: DBD, [Lotus][ODBC Lotus Notes]Column not found - ActualApproverState: S0022
    Environment:
    - Lotus Notes Client 8.5
    - Lotus Notes SQL Driver 8.50.2009.317
    - BOE Professional XI R2 SP2
    I test connection in the Universe and it's working fine.
    thanks,
    Ricardo

    Hi,
    If you are trying to access the tables from a different user other than the user who created the table, then you have to enable the "Require fully qualified table names " check box. This check box will be available when you right click the "Datasource name".
    Here is an example:
    Lets assume Table1 is created by user1. If u try to access the Table1 using user2, you cannot access directly. Instead you need to access like "user1.table1".
    Hope this resolves ur issue.
    Regards,
    Arul

  • Error during data transfer from Lotus Notes to SAP via JCO - Urgent Help Required

    Dear SAP Expert:
    I need your help! Recently getting error during data transfer to SAP. I need your suggestion!
    I am transferring Lotus Notes data to SAP via JCO, recently getting the below error msg, could you pls tell me what could be the reason?
    Please suggest me how to fix that kind of issue.
    "com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: Error in ABAP/4 statement when processing an internal table. table.
    at com.sap.mw.jco.rfc.MiddlewareRFC$Client.nativeExecute(Native Method)
    at com.sap.mw.jco.rfc.MiddlewareRFC$Client.execute(MiddlewareRFC.java:1244)
    at com.sap.mw.jco.JCO$Client.execute(JCO.java:3842)
    at com.sap.mw.jco.JCO$Client.execute(JCO.java:3287)
    at SAPAdapter.execute(Unknown Source)
    at JavaAgent.fillBapiAndWriteBackToNotes(Unknown Source)
    at JavaAgent.NotesMain(Unknown Source)
    at lotus.domino.AgentBase.runNotes(Unknown Source)
    at lotus.domino.NotesThread.run(NotesThread.java:249)
    Thanks in advance! Your help would be highly appreciated! Thanks again!

    error is clear, check your abap code.

  • Trouble accessing Lotus Notes DB Via ODBC NotesSQL 8 driver.

    Hello,
    I am using Crystal Reports version XI and am trying to access lotus notes database via an ODBC connection. My reports have been running sucessfully but we recently upgraded to Lotus Notes 8.  I was receiving error messages stating that the ODBC driver was not compatible so I upgraded to Lotus Notes 8 SQL driver.  Now I am receiving the following errors.
    Crystal Reports
    Database Connector Error: 'IM005:[Microsoft][ODBC Driver Manager] Driver's SQLAllocHandle on SQL_HANDLE_DBC failed'
    Crystal Reports
    Logon failed.
    Details: 01000:[Microsoft][ODBC Driver Manager] The driver doesn't support the version of ODBC behavior that the application requested (see SQLSetEnvAttr).
    I am now using NotesSQL 8 and Lotus Notes 8, is there something that I need for crystal to recognize them.
    Any help would be appreciated.
    Thanks, Stacy

    Hi Stacy,
    I would appear Lotus changed the way their ODBC driver works from version 6. According to our [platforms |https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e09198a1-911e-2b10-179f-ce8eed51aed0] for CR XI we only support Lotus Notes 6.
    We can't fix this now but you may want to ask Lotus if they know of any work arounds or updates to make it backward compatable.
    You may want to try donwloading CR XI R2 SP4 and use your XI keycode to see if that works.
    Thank you
    Don

  • Offline Approval Problem-format of email in lotus notes is not poplulationg

    Hi Gurus,
      I am working on a support project now i have a problem in Offline approval .
    the email in the approver  inbox is not populating the correct values and i checked in the workflow side
    in SWI1 it is populating correct values but in the lotus notes the email  format is not good .it some filed s are filled with zeros.and i don't know how to get the link from SAP to lotus notes .
    what are the transaction i can check?
    and i also checked is  they are using badi BBP_OFFLINE_APP_BADI but they are not using this badi and no implementation for this badi.can any one suggest me how to go foreword.
    thanks
    Channu Sajjan

    Hi,
    Use this Report
    RBBP_NOTIFICATION_OFFAPP.
    Regards,
    Sachin

  • Synch Gmail Contacts via and Lotus Notes Contacts on BES

    I currently use Wireless Synch to synchronize my Lotus Notes Contacts to my Blackberry Bold 9900 via a BES.
    In addition to the LN account, I also have a Gmail account active on my Blackberry; however, the Contact Synch and the Calendar Synch features are both turned off (for the Gmail account) at present.
    I would like to synch the Gmail Contacts and Calendar to my BB, but I am unsure whether this would impact my Lotus notes Contacts Address Book or my Lotus Notes Calendar. I have already had one incident where my Gmail contacts were intermingled with my Lotus Notes contacts and I want to keep them separate.
    Can someone please explain what behaviour I should expect if I enable synch for the Gmail Contacts and Address book? Will this create separate, new address book and calendar (i.e. separate from the Desktop ones used with Lotus Notes) or will it merge the Gmail contacts and calendar with Lotus Notes contacts and calendar?
    Also, please explain the differences between the Contacts synch and Calendar synch in the built in BB Gmail application and Google Synch App. Why would one use the later?
    Note: In case this is relevant - I also have a Playbook with O/S 2.0 that is configured to access the Gmail account in fully synchronized mode. At present, the LN account is only accessed via BB Bridge on the Playbook.
    Thanks!

    The exact error message on the mobile, after sync, is:
    "Data transfer not possible. Check data connection"

  • How do I remove Lotus Notes PDFMaker plugin via command line?

    How do I remove the lotus notes PDFMaker plugin via command line?  I originally deployed Adobe Acrobat 10 as a complete install to many computers.  I see how to remove this specific feature through the GUI in Windows 7 by going to control panel / programs and features / Adobe Acrobat X / change / modify / create adobe PDF / acrobat PDFMaker / Lotus Notes, but this would be a tedious task to do manually at each computer.  I've experimented with a few msiexec commands after removing Acrobat such as:
    msiexec /i "\\path to msi" remove=pdfmakerforlotusnotes
    msiexec /i "\\path to msi" disable_pdfmaker=yes
    Both still install acrobat as a complete install.  Any help and suggestions would be appreciated.  Thank you!

    Thank you Sabian, that did the trick.  Here is the command line I used for anyone else having a similar issue:
    msiexec /i "\\path to msi" REMOVE=PDFMakerForLotusNotes /qn
    I did this on a test machine with a complete Acrobat installed.  I ran the above command and it removed the Lotus Notes PDFMaker plugin.  I should also note that it didn't downgrade my version of Acrobat and all of my custom settings within the application are still there.

Maybe you are looking for

  • How to count number of related radibuttons in the doccument?

    The field "radiobutton" can have several related radiobuttons. How to count quantity of radibuttons with the same name in the doccument?

  • ChaRM and CTS+ for EP 7.0 in SolMan

    Hi, I've been trying to get CHaRM working for EP 7.0 in our SolMan systems for a while, but have not been able to get it working. I've read through and followed all the documentation on the resources page here, the Solution Manager documentation on h

  • StartDrag constrain to Rectangle

    hi there please can somoe help with this little problem, I have a demo file that I am trying to created a constraint to a rectangle. I have the startDrag working and I am trying to constrain a square to the movie size of 600x400. I have been searchin

  • While migrating from access to oracle ??

    While loading data from SQL Loader, DATE is taken as dd-mmm-yy (eg: 18-MAR-02) even after specified in "mm/dd/yyyy HH24:mi:ss" in controlfile. How to resolve this problem ??? rgds, manish

  • Deleting obsolete logging tables in SLT system

    Hi Experts, Need help to sort out below issue, There are many obsolete logging tables in SLT system ,might have been left out after dropping SLT schemas, previous replications. These logging tables exist in ABAP dictionary but not in database. Due to