How to include link with parameter in marketing emails?

Hi, my client wants to send out personalized marketing emails to customers with a link back to the BC site that have a parameter on the end that passes the customer's email address the message was sent to. Then the landing page can parse that email off the end of the URL and insert it into the web form on the page where the customer can update his info, insuring he is using the same email that BC sent the message to rather than supplying a different one.
If you insert a BC tag like {tag_recipientemail} into the body of the message it will replace that tag with the customer's email, but it doesn't work to use that BC tag within the HTML link in the email like this:
<a href="https://mysite.worldsecuresystems.com/birthday?{tag_recipientemail}" > Click Here </a>
That renders the TAG code {tag_recipientemail}on the end of the URL, not the email address.
Anyone found a work around?
If this was a web page I could use javascript to fix this, but of course email clients receiving messages don't allow javascript to run inside them, so this has to be fixed server side by BC.

I suspect the same. That should work in the real campaign. I believe that it doesn't work in the e-mail me functionality because the user you are logged in is not connected to the CRM table, which is where that tag is pulling the info from.
Cheers,
-mario

Similar Messages

  • Condition Type MVK0 & MVK1 and How it is linked with SD pricing ?

    Hi Experts,
    In my purchase order, line item for an article (material) there is a condition type MVK0 (Sales Price inc. Tax) and MVK1 ( Sales price excl tax) which appears in Red in IS-Retail server.
    The pricing analysis says that the condition has been found without the condition record.
    The details for condition type MVK1 is
    Condition class:- Prices (B), Calc type:- C (QTY),
    Condition category J ( Customer Expected price)
    There is no access sequence for this condition type.
    Manual entries      D Not possible to process manually
    The details for condition type MVK1 is
    Cond. class   B Prices
    Calculat.type C Quantity
    Cond.category W Expected sales price (including tax)
    Access Sequence:  Not maintained
    Manual entries      D Not possible to process manually
    I wish to know how to populate values for these condition type.
    Also could someone throw light on the condition category Wand J.
    what is the importance of MVK0 & MVK1 condition types and How it is linked with SD pricing?
    if we want this condition types values in PO what settings needs to be done?
    Any Input is highly appreciated.
    Regards,
    Selvakumar. M

    CLOSED

  • Hi my name Abukar I had an old apple ID and I had problem with signing it so I decided to make a new apple ID with a new email address, so how can I link with two apple IDs and how can I get back all my previous apps that I purchased before, I cloud stuff

    Hi my name Abukar I had an old apple ID and I had problem with signing it so I decided to make a new apple ID with a new email address, so how can I link with two apple IDs and how can I get back all my previous apps that I purchased before, I cloud stuff

    It is not possible to do that.
    Allan

  • How to include input user parameter values in XML report output?

    How can i include input user parameter values in XML report output. I a have a report which can be run by providing start date and end date. I would like to include value of these parameters in XML output to enable me to figure out dates for report, just by looking at XML output.
    Rgds,
    manish

    I think all the XML attributes can contain lexicals. If you bring up the property palette against the report object you can just set the following:
    XML Tag Attributes: myParameter="&<P_1>"
    where P_1 is your user parameter.

  • LinkToAction how to use it with parameter?

    Hello,
    searching for tutorials about the use of the LinkToAction I have seen that here is a possiblity in WD4J to use a context-node.
    How can you pass a parameter in WD4A? (I am using a rowrepeater for a list of books and would like to pass the bookID to the event)
    How can I do this?
    Thanks a lot,
      Vanessa

    Thanks for your answer Lekha,
    unfortunaltely I don't get the point.
    >
    Lekha wrote:
    > From this action if you want to export the bookid then it should be a exporting parameter..
    >
    > you can specify this way...
    Somehow I don't get the point. How can I pass the bookid to the method?
    I have a rowrepeater. One of the elements is the link to the action. I will add the bookid as parameter. That is clear.
    My problem is how to connect the bookid of the row that is displayed to the method? Is it just because of the name? I don't see any context I can associate?
    Could you please go a little bit more in detail,
      Vanessa

  • How to include columns with a space in name in clientcontext load method in JSOM

    Hi Gurus,
    I have a situation where I need to read a list that has a column 'Repositary Name'.
    While I am reading the list in my JSOM I need to load this column in the clientcontext.load method.
    My code likes this below.
    this.collListItem = list.getItems(camlQuery);
        ctx.load(collListItem, 'Include(Title, 'Repositary Name')')
    The Issue is I can not load this 'Repositary Name' column. I tried with its internal name, removing the space, putting the name in single quote but nothing works.
    Please advice how to include a column in clientcontext.load method that has a space in its name .
    Changing the column is not a option and I have to have call it before I use it my Async Methods.

    Hi,
    If I am getting your issue correctly, I think you should put _x0020_ in place of space in your column name. In your case try Repositary_x0020_Name.
    ***If my post is answer for your query please mark as answer***
    ***If my answer is helpful please vote***

  • How to do submit with parameter?

    Hi,
    I would like to pass some data from Program A to Program B.
    How do i do a submit statement with parameter from Program A to pass data to Program B.
    How do i grab the data from Program B that was pass by Program A?
    Regards,
    Rayden

    HEllo,
    DO like this.
      SUBMIT  B WITH SO_PROJ IN SO_PROJ
                                 WITH SO_PSP IN SO_PSP
                                 WITH SO_WWSTO IN SO_WWSTO
                                 WITH SO_WWGFG IN SO_WWGFG
                                 WITH SO_ISTAT IN SO_ISTAT
                                 WITH SO_ESTAT IN SO_ESTAT
                                 EXPORTING LIST TO MEMORY
                                 AND RETURN.
    " Ouptut from Report B.
    Import the list from memory and store it in table listobject
      CALL FUNCTION 'LIST_FROM_MEMORY'
           TABLES
                LISTOBJECT = LISTOBJECT
           EXCEPTIONS
                NOT_FOUND  = 1
                OTHERS     = 2.
      IF SY-SUBRC <> 0.
    *    WRITE  'Error in list_from_memory.'.
      ENDIF.
      CALL FUNCTION 'LIST_TO_ASCI'
           TABLES
                LISTASCI           = LT_TXT
                LISTOBJECT         = LISTOBJECT
           EXCEPTIONS
                EMPTY_LIST         = 1
                LIST_INDEX_INVALID = 2
                OTHERS             = 3.
      CHECK SY-SUBRC = 0.
      DATA: LV_LINES LIKE SY-TABIX.
      DESCRIBE TABLE LT_TXT LINES LV_LINES.
      LOOP AT LT_TXT INTO W_TEXTLINE.
        CHECK SY-TABIX > 3.
        CHECK W_TEXTLINE(5) <> 'Keine'.
        CHECK W_TEXTLINE(5) <> '-----'.
        DO 120 TIMES. REPLACE ' |' WITH '|' INTO W_TEXTLINE.  ENDDO.
        "WRITE / w_textline(255).
        PERFORM HANDLE_LINE_ZSTATUS USING W_TEXTLINE.
      ENDLOOP.
    * Free memory
      CALL FUNCTION 'LIST_FREE_MEMORY'.
    Cheers,
    Vasanth

  • How different fields linked with Application Utilities Lookups

    Hi,
    I need to know how different fields at different forms are linked with utilities lookups and pick the values(meaning)?
    For example #1;
    at Organization form, Type of organization is must to define, value of Type comes from Utilities lookups. Type field name is ORGANIZATION_TYPE (Help ---Diagonestics --- Examine), if we try to search the ORGANIZATION_TYPE in utilities lookups we will not find it, we will find if we enter in front of type ORG_TYPE and search then system displays all the codes and meanings defined in the system.
    #2;
    at People -- Additional Information form, Nationality is defined which is picked up from utilities lookups. Nationality field name is LOC_ITEM08 (Help ---Diagonestics --- Examine), if we try to search the LOC_ITEM08 in utilities lookups we will not find it, we will find if we enter in front of type NATIONALITY and search then system displays all the codes and meanings defined in the system for different nationalities.
    my question, what's the relationship b/w
    ORGANIZATION_TYPE to ORG_TYPE
    LOC_ITEM08 to NATIONALITY
    I hope that my question is simple and you guys understand it. Please reply soon.
    Regards,

    Hi
    There is no link between the block/field name you see in help->examine and the application utilities lookup type. I'm afraid this is just something you have to learn as you go!
    Regards
    Tim

  • How to Include JRE with our Setup Package

    please help me,
    i have created one swing application.i successfully created setup.exe using installsheild 11.It is working in my machine.when i run this in another machine .it is not working.iam using some external jar also in the appln.i put that jars into the jre/lib/ext in destination machine's directory then it works.
    i want to include JRE with my setup package(first the setup should find whether the jre is installed or not ,if not it must insall JRE and put my external jar files into jre/lib/ext directory in destination machine then only my appln should insall).please give me a solution for this

    What?!! It isn't considered legal to access a
    root-level class from a higher level package?Well it's not now because your code won't compile, but
    prior to 1.4 you could. I think the JLS has been
    updated to say you can't import from the unnamed
    namespace.Hmm! I must have missed that bit (not that I read it in any great detail, anyway!). I suppose it forces you to use packages, which is a good thing, IMHO.
    What I was wondering about was, is the directory structure of classes strictly necessary, given that a class contains information on its package anyway? I know some IDEs don't require the source files to be in the right directory - they will check on the package statement, and locate the class file accordingly - but is it absolutely necessary for class files to be located according to their directory structure? I know the JLS says they have to be, but could the JLS be relaxed on this point, without breaking anything?
    RObin

  • How to fire event with parameter?

    Hi folks,
    does anyone know how to use the event parameter functionality?
    My idea is to fire an event within the richisland and pass a parameter value. As I recognized the function
    var myParameter:Number = new Number();
    FlashIsland.fireEvent(this,"myEvent",myParameter);
    On WD side in ROOTUIELEMENTCONTAINER I created a child element of type GACEvent, named myEvent. This event has a GACEventParameter named myParameter.
    But running the app I am getting a dump:
    WebDynpro Exception: ERROR: GAC_EVENT_PARAMETER 'myParameter' missing (GAC_EVENT='myEvent')
    Any idea of how to fix this?

    Hi,
    I solved it now. The correct syntax is:
    FlashIsland.fireEvent(this, 'myEvent', {myParameter:myValue});
    Hope it helps you too.
    Greets

  • How to include additional information in the notification emails

    Hi!
    As we know when Portal Admin creates a user,and if configured to send email, an email is sent to the new user informing about their username and password.
    Now my question is there any way possible to include additional message in those notificatin emails. If yea ,how?
    thanks for your help
    Regards
    Suresh

    Hi Suresh,
    I hopt this <a href="http://help.sap.com/saphelp_nw04/helpdata/en/33/d494c86203ea40b7b44ddd471baab1/frameset.htm">link</a>will solve your problem. Dont forget to reward points.
    Thanks Mitts

  • How to include assets with Flash Builder?

    with the flash IDE i can add additional assets in the iPhone OS Settings under "Included File"
    how do I do the same with the Flash Builder?

    Ah - stupid me. It's so simple - just give the filenames of all the files to be included as additional parameters to the adt tool

  • How is PS Linked with MM

    Dear All,
    Kindly anybody can explain about this scenario.
    Here the output of the organization is sending man power and material to client to do some work. After completion of work they are raising bill to client.
    Now in Project System(PS) module they define every work as project. According to that project requirement materials will procure.
    As a MM consultant how could i proceed.If material requirement is automatically generate from PS or otherwise i have to create PR according to project requirement?
    If i create PR for particular project means how could i refer in PR (me51n) screen this material is for this project? Any field is available to enter Project related reference number or anything else.
    Shobana.

    Hi Shobana
    You can do both.
    Check with your PS consultant how customer want the process to be.Then PS consultant can facilitate creation of PR from PS itself.
    If you need to create PR directly from MM, then you can use account assignment P or Q to link to project. If you want stock, then read about project stock (check with PS/CO consultants also). If you want normal stock, then you cannot use account assignment and hence cannot link to project (you may use tracking no field then).
    http://help.sap.com/saphelp_erp2004/helpdata/en/4c/227b7346e611d189470000e829fbbd/frameset.htm
    Best regards
    Ramki

  • Using Tabs passing a link with parameter

    Is possible to use Tabs with parameters? I created a tab and need to pass a parameter when going to the tab link.

    No I haven't set one up anywhere , even then since everything happens internally , there is no way to know what really is happening underneath.
    Here's the approach.
    Say you have to set two page items P100_ITEM and P100_ITEM2 with the values 'A' and 'B' when a tab is clicked.
    <li>What you do is , create a blank page say 110, and let the tab redirect to page 110.
    <li>Now that we have reached 100, next task is to redirect to the required page 100 from 110, without really loading 110.
    For that, create a branch in Page 110 with a Branch point of "*On Load: Before Header*" , Page is 100
    for the "Set these items"
    P100_ITEM,P100_ITEM2
    With these values
    A,BThe branch is just like any you create to set page item except that it runs onload before header.
    Now if you try to load page 100, it redirects to page 100. SO when the tab redirects to 110, the branch in 110 takes it to page 100.
    Have I made it clear now ?

  • How to add link with mp3 to iTunes library?

    I purchased a song which is actually a link ending in mp3. I want to save it to my itunes library, but when I highlight and right-click on it, it only gives me the option to "save as itunes spoken word." Also how do I make itunes as my default audio player instead of Quicktime?
    I am using Mac OS 10.7.4 and itunes 10.6.3.

    Jim,
    I appreciate your quick response. I'm not able to do what you suggest. The only way to "select" it, since it is a URL ending in mp3, is to highlight it in Quicktime, which is the program that opens when I click on the URL from the website I downloaded the audio file from. From there I can't figure out how to paste it/get it over to itunes by importing it or selecting from another file, and I cannot figure out how to make itunes the default audio program to open all audio files from the internet.
    Lori

Maybe you are looking for

  • In need of a link to the online  iPod Updater 2005-11-17 1.0

    I have done google searches and all of the results point me to 1.1. Does anyone have a valid link for iPod Updater 2005-11-17 for Windows? Thanks

  • Importing from adobe starter album 3.2

    help needed to know how to import photos from adobe starter album 3.2  - locked - have tried to start a elements 11 trial and it shows photo #'s but lots of blank flower photos any ideas please.

  • Safari quit and screen went black

    Was browsing the internet, then Safari quit,then screen went black and system froze.managed to start up again, by unplugging power, but my question is why that should happen ?. Any help?

  • Screensaver does not clear properly after sleep mode

    henever I start my iMac up from sleep mode the screensaver doesn't clear so that I can enter my password. Instead, wherever my mouse is hovering the screensaver is erased in a sort of block by block mode? Then when I hit enter after typing in my pass

  • Can't create mailboxes after E52 firmware update t...

    Hi everybody After updating firmware of my E52 to version 083.001 I was unable to recreate any kind of mailbox using the wizard provided by nokia email This is what I done: backup of my contacts and messages with new Nokia Suite (v. 3.2.98) deep rese