URL link in send e-mail pl/sql procedure

I have a send e-mail procedure. I am trying to enclose in the body of the message a URL link with parameters from a form, but it is only taking part of it.
for example http://my.link&pid='||pid||'&uid'||uid
it only takes http://my.link
What is the way to do it successfuly?
Thanks,

Thanks for your replies. I still did not get it to work. For example if I stick to your solution with :
urlname := 'my.link?pid='||pid||'&uid='||uid;
where should I stick the try this?
I am using a variable called message.
'message: ' 'click on the following link' ||CRLF || urlname
This is is not working. Any clues? Thanks a lot. Jeanne

Similar Messages

  • Sending message from PL/SQL procedure to form

    Hello Friends,
    How can I send messages from PL/SQL procedure to Form ?
    Ultimate target is catching progress of PL/SQL procedure from
    form. I heard about DBMS_PIPe but not sure,.
    Adi

    Hello,
    Yeah , I got the solution using DBMS_PIPE function,I
    followed following steps.
    1. Pipe is created. see below procedure.
    create or replace procedure proc_testpipe as
         v_pipe_integer          integer;
         v_pipe_message          integer;
    begin
         v_pipe_integer := DBMS_PIPE.Create_Pipe('adipipe');
         dbms_pipe.pack_message('Hello Adinath Kamode,Message
         from Pipe');
         v_pipe_message := dbms_Pipe.Send_message('adipipe');
         end;
    end;
    2. then I created one Function which will obtain message from
    Pipe and
    will return value to form.
    create or replace function proc_callpipe return varchar2 as
    v_msg          integer;
    v_rem          integer;
    v_message          varchar2(500);
    begin
    v_msg:=dbms_pipe.receive_message('adipipe');
    dbms_pipe.unpack_message(v_message);
    dbms_pipe.purge('adipipe');
    v_rem := dbms_pipe.remove_pipe('adipipe');
    return(v_message);
    end;
    3. Last I called this function from form.
    Cheers .. !
    Adi

  • Mail - url link color changes in mail signature

    Hello all,
    I've just tested a new signature, created in mail.  In it, I use a couple of custom colors to match our company colors.  Looks great.  
    However, when I send it out to myself to test, my email info in the signature [email protected] and our webiste url www.ddddddd.com change to the standard blue URL link color upon receipt.
    I'd like folks to see them in the company colors and not as that ugly blue.
    How can I accomplish this?
    Thanks!
    Stuart

    Hi,
    Directly you can use Http://www.sap.com in the email body, then it will come as link in the Body of the email
    Regards
    Sudheer

  • 2012 RemoteApp: file associations Emal links and Send to Mail Recipient.

    Hello
    Is it possible to get Outlook 2013 Remote app to open when you use "send to Mail Recipient"and click email to links?
    /Andreas
    /Andreas

    Hi,
    Thank you for posting in Windows Server Forum.
    As per my research, the way you are trying to open Outlook 2013 RemoteApp is not possible. 
    Thanks for your understanding and support!
    Regards.
    Dharmesh Solanki
    TechNet Community Support

  • Sql Express Edition R2 can we send alert mail

    Hi There,
    We are using SQL 2008 Express edition R2. Can we send alert mail using sql services in SQL 2008 Express edition R2

    Hello,
    Database Mail is not supported in the Express Edition; see
    Features Supported by the Editions of SQL Server 2012
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Send E-mail from Oracle (9.2.0.1) : SMTP transient error: 421 Service not a

    I have used Oracle 9i server (9.2.0.1 version) on Windows XP machine(with SP2).I want to send Email from PL/SQL procedure.
    My Question is what sort of configuration needed to perform this activity?
    I have installed IIS (Internet Information Service)
    in my machine, then configure my SMTP mail server
    with a valid email id and password given TCP port 465.
    Later I came to know that to send Email from PL/SQL I have to install Oracle JServer Code. Follow three steps. the steps are
    1. Execute the script as sys "$ORACLE_HOME\javavm\install\initjvm.sql"
    2. Execute the loadjava classfile as
    $ORACLE_HOME\plsql\jlib>loadjava -f -v -r -u sys/**** plsql.jar
    3. Execute the script as sys "$ORACLE_HOME\rdbms\admin\initplsj.sql"
    I sucessfully executed the first step, but for the second step iam not able to locate the plsql.jar file in the specified path.
    So Please tell me if there is any other method to perform this task
    My code is as follows.
    CREATE OR REPLACE PROCEDURE SEND_MAIL (
                                  msg_to varchar2,
                                  msg_subject varchar2,
                                  msg_text varchar2
                                  IS
                                  c utl_smtp.connection;
                                  rc integer;
                                  msg_from varchar2(50) := '[email protected]';
                                  mailhost VARCHAR2(30) := 'mail.google.com';
                             BEGIN
                                  c := utl_smtp.open_connection(mailhost, 465);
                                  utl_smtp.helo(c, mailhost);
                                  utl_smtp.mail(c, msg_from);
                                  utl_smtp.rcpt(c, msg_to);
                                  dbms_output.put_line(' Start Sending data');
                                  utl_smtp.data(c,'From: Oracle Database' || utl_tcp.crlf ||
                                  'To: ' || msg_to || utl_tcp.crlf ||
                                  'Subject: ' || msg_subject ||
                                  utl_tcp.crlf || msg_text);
                                  dbms_output.put_line(' Finish Sending data');
                                  utl_smtp.quit(c);
              EXCEPTION
                   WHEN UTL_SMTP.INVALID_OPERATION THEN
    dbms_output.put_line(' Invalid Operation in Mail attempt using UTL_SMTP.');
                   WHEN UTL_SMTP.TRANSIENT_ERROR THEN
    dbms_output.put_line(' Temporary e-mail issue - try again');
    WHEN UTL_SMTP.PERMANENT_ERROR THEN
    dbms_output.put_line(' Permanent Error Encountered.');
    END;
    Procedure Created.
    SQL> execute prc_send_mail('[email protected]','[email protected]','Good Morning.');
    BEGIN prc_send_mail('[email protected]','[email protected]','Good Morning.'); END;
    ERROR at line 1:
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at "SYS.UTL_SMTP", line 17
    ORA-06512: at "SYS.UTL_SMTP", line 96
    ORA-06512: at "SYS.UTL_SMTP", line 374
    ORA-06512: at "SCOTT.PRC_SEND_MAIL", line 19
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at line 1.
    Please tell me how to solve this problem.
    Thank You.

    1) Why did you install an SMTP server locally and then tell your code to try to use the server mail.google.com?
    2) The error you're getting is from mail.google.com indicating that Google isn't running an open SMTP server there. I would be very surprised if Google were running a publicly available SMTP server anywhere since that would be an invitation for spammers.
    Justin

  • Steps involved to send a mail in abap.

    hi experts,
                can anyone help me with the process involved in  sending a mail to a specific email id obtained form database.
    it will be helpful if u can provide me with the material or the code.
    thanks in advance,
    abhilash.

    Hi,
    Please visit the links for sending a mail in ABAP:
    1. http://www.sap-img.com/fu016.htm
    2. http://www.sap-basis-abap.com/abap011.htm
    May this helps you.
    Regards.
    Deepak Sharma.

  • How to Send E-mail With Attachments

    <Sorry, if this is in the wrong forum>
    I want to be able to send e-mails from a procedure having attached a file which is retrieved from a BLOB.
    I found Note:120994.1 on Metalink. This note describes how to do this with Sun's JavaMail and a Java Stored Procedures. Unfortunately, it takes the attachment from the file system of the OS, not from a BLOB.
    Has anyone adapted this JSP to retrieve attachment from a BLOB? Is it possible? Maybe it is easy, but unfortunately I don't have experience with Java.
    Or has anyone another approach for this task?

    You can create a link that sends an email message (mailto:)
    http://developer.apple.com/library/ios/#featuredarticles/iPhoneURLScheme_Reference/Article s/MailLinks.html#//apple_ref/doc/uid/TP40007892-SW1

  • I want to turn my video on my Mac into a URL link to share via email

    Just trying to share one of my videos via email.  Would like to turn it into a URL link and send it,

    Hi, there are several things needed before that would work, your outside IP & maybe Port Forwarding if more than on computer is on your Modem.
    You can find your outside IP here... what's my ip...
    http://www.whatsmyip.org/
    Then you'd need to setup file sharing & likely want the video in your Shared folder.
    Putting it on YouTube or some other video sharing site may be easier.

  • Can Mail send interactive PDF attachments with URL links?

    I have tried without success to send a PDF that has URL links embedded (made in InDesign CS3). When this mail arrives the links are stripped out from the attached PDF. I do not want to send html mail for this purpose.
    Anyone have any answers? Thanks.

    Jon,
    The strong probability is that a SPAM filter in the path to the recipient has stripped them out -- Mail would not cause this. Have you tried opening the PDF with Acrobat Pro, doing a Save As, and then attaching that version to see if the same behavior continues.
    Ernie

  • Send Mail with Long URL - Link getting split w/CR/LF in Email

    I am using a send mail step and including a long URL so that the user can
    access an Iview directly from the URL Link.  The URL which is about 250 characters long is getting split across multiple lines in the MS Outlook Email therby losing the link (only the first line underlined). I am loading the container element contianing the link from a standard text and appending the necessary IView parmater to the end. I tried enclosing my URL within an href but that did not work wither.  My current workaround is to code my own method
    which sends the email but would rather using the standard Send Mail Step.
    Any ideas will be greatly appreciated.

    Hi Bob
    There are some limitations  -  you could note 363986
    Regards
    Morten Nielsen

  • How to send URL link along with text in an email using FM.

    Hi Experts,
    I am sending an e-mail for status notifications.
    In the mail, the user will clik on the URL to do actions through the link.
    Ex:
    Dear,
    Please go through the link htttp://appear.upload/records/update.
    When user clicks on htttp.... url it should open the portal.
    I am sending text mails but unable to open the site url action .
    Regards,
    prasad

    Hi ,
    Pls check below link.
    http://wiki.sdn.sap.com/wiki/display/ABAP/SendingMails-HomePage

  • How can I include a url (or Link) in my e-mail

    In previous versions of thunderbird I could just go to "include" and then "Link" and in the drop down box just paste in the url I wanted to include into the field link address.
    If I try doing that now I am told something about there being "no know anchor .... "
    Now I have to type in the url again. Using the paste button does not work! WHY?
    As a work around i just paste the url as text into the mail but then it does not show up as a link (underlined in blue), so that the receiver of the mail now has to copy and paste my link instead of just being able to click on it.

    ''Hormazdyar-Kutar [[#question-1040695|said]]''
    <blockquote>
    In previous versions of thunderbird I could just go to "include" and then "Link" and in the drop down box just paste in the url I wanted to include into the field link address.
    If I try doing that now I am told something about there being "no know anchor .... "
    Now I have to type in the url again. Using the paste button does not work! WHY?
    As a work around i just paste the url as text into the mail but then it does not show up as a link (underlined in blue), so that the receiver of the mail now has to copy and paste my link instead of just being able to click on it.
    </blockquote>
    Yes it does, the conversion is part of the send process. if you look in your sent mail they will be links.

  • Accessing URL of links in HTML e-mail message via Services

    I'm trying to write a simple service (in Automator) so that when I right-click on a URL, I can send that URL directly to my Instapaper account (rather than opening the link in a browser, and then clicking my bookmarklet to save to Instapaper.)  I have it working for bare URLs included in the text, but I'd like to also be able to do it for hyperlinks in HTML-formatted Mail messages.  Is there a way in Automator to access the underlying URL for a link, rather than the displayed link text?  Clearly some of the built-in items in Mail's context menu (e.g. Open Link, Copy Link) do that, but I can't see how to get access to the URL in Automator.
    Thanks in advance for your help with this,
    Eric

    Hi Scott,
    "Unapealing" it is, but that doesn't get it very high on the long requirements list.
    To make it more appealing to reward points is higher up there and I think everyone would love to see that.
    Nevertheless I added it to the list.
    Best, Mark.
    P.S. On one hand I don't care about points, on the other I get teased in the office when I am not in the top ten, although with all this great contributions from you guys and girls, I am letting go of that goal. So don't bother.
    Message was edited by: Mark Finnern

  • Sql server agent alert is not sending a mail

    1. sql server agent alert is not sending a mail .I have configure it for sql server event alert and error number 14151 and in "Raise alert when messaging contains" check box I have set: Replication Distribution Subsystem: agent
    2. Sql server agent is restarted also.All database mail and other settings are Ok.
    Still I m not getting mail
    Thanks

    Hi Ajay,
    You can test the connectivity with any server who has smtp access and execute osql to send email to required people.
    Below command can be put into bat file and named as DB_MirrorAlert.bat
    osql -U XXXX -P XXXXX -S Test123 -h-1 -s "|" -w 50 -n -i E:\DBscript_Santosh\DB_MirrorAlert.sql > E:\DBscript_Santosh\DB_MirrorAlert.csv
    OR
    osql -E -S Test123 -h-1 -s "|" -w 50 -n -i E:\DBscript_Santosh\DB_MirrorAlert.sql > E:\DBscript_Santosh\DB_MirrorAlert.csv
    In above command, you are connecting to a server where db email works fine for you and then you are executing a script wherein you can put alert for success or failure like below:
    Success Alert:
    Create a success alert file named as DB_MirrorAlert.sql as you are calling above in bat file and put all scripts in one folder.
    use master
    Go
    EXEC msdb.dbo.sp_send_dbmail
        @profile_name='Profile One',
    @recipients =
    XXX,
    @subject  = 'DB Mirror Server Failed over',
    @body = '
    'DB Mirror Server Failed over to Server B'
    Now you can do this after checking that any one of the server is  not responding or by checking system store procedures too. Good link about monitoring is mentioned below:
    http://msdn.microsoft.com/en-IN/library/ms190030.aspx
    Let me know if you need any more assistance at my end.
    Santosh Singh

Maybe you are looking for

  • Adobe Download Assistant not working after bluescreen

    I like to get the trial for Photoshop Elements 10 but the ADA is broken: Under Windows 7 I already used the ADA to download and install Adobe Premiere 10 successfully a week ago. Then I tried to get Adobe Photoshop Elements 10 but my system crashed w

  • Problem with attaching file to Sales Order

    Hello, In my company we have the possibility to attach files to sales orders, e.g. pdf files with the printing details. These files are added by the GUI user, this works fine. Now we have an extra order creation stream in which a pdf file has to be a

  • Exit or badi for me21n- for adding new field in delivery tab(Item level)

    HI, My Requirement is to add the New Field(Inspection Lot) in delivery tab in item level of me21n . I want to know this can be done by any Exit or Badi or modifying the standard sap is the only way to do this...  Kindly help me to solve the issue..it

  • Problem LDAP list count

    Hi to All, We have configured LDAP to IDM 6.0 and able to assign user and reconcile resource. The status of the Reconciliation is also successful. The accounts are getting loaded into IDM from resource and also able to assign LDAP resource to a user.

  • Business Process Monitering

    Hi,           My company has decided to implement BPM (Business Process Monitering). Can we implement BPM for the Template Project.            What is the difference between "Solution" and "Template project"? Please provide me helpful answers. Thanks