<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Simple Transformation - Hyperlink in Excel - Syntax in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896656#M1480720</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the information and reference link.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used your example and got a little closer...   Now, the email address is in the cell, hyperlinked and when clicked it will open a new email message.  However, the to: field is blank, so the email address variable is not being used correctly.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my revised logic:  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            &amp;lt;Cell&amp;gt;&lt;/P&gt;&lt;P&gt;              &amp;lt;tt:attribute name="ss:HRef='mailto:'" value-ref="EMAIL"/&amp;gt;&lt;/P&gt;&lt;P&gt;              &amp;lt;tt:attribute name="ss:StyleID"&amp;gt;s75&amp;lt;/tt:attribute&amp;gt;                   &lt;/P&gt;&lt;P&gt;              &amp;lt;Data ss:Type="String"&amp;gt;&lt;/P&gt;&lt;P&gt;                &amp;lt;tt:value ref="EMAIL"/&amp;gt;&lt;/P&gt;&lt;P&gt;              &amp;lt;/Data&amp;gt;&lt;/P&gt;&lt;P&gt;            &amp;lt;/Cell&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The EMAIL variable is populating the cell correctly,so it does have values; however, when used with the HRef='mailto:' attribute it does not produce the email in the "To:" field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 24 Apr 2010 22:35:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-04-24T22:35:56Z</dc:date>
    <item>
      <title>Simple Transformation - Hyperlink in Excel - Syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896654#M1480718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I created an Excel Workbook with multiple worksheets and within each worksheet is a column of email addresses.  I am trying to create a hyperlink to this email address but am running into trouble with its syntax.  a static value works; however, I cannot write this statement using variables.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            &amp;lt;Cell ss:HRef="mailto:Wwwwwwww@xxxxxx" ss:StyleID="s75"&amp;gt;&lt;/P&gt;&lt;P&gt;              &amp;lt;Data ss:Type="String"&amp;gt;&lt;/P&gt;&lt;P&gt;                &amp;lt;tt:value ref="EMAIL"/&amp;gt;&lt;/P&gt;&lt;P&gt;              &amp;lt;/Data&amp;gt;&lt;/P&gt;&lt;P&gt;            &amp;lt;/Cell&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above will display the correct email address within the cell; however, upon double-clicking the cell, I get an email document pointing to the mailto: reference.  The above is within a table loop to generate the worksheet.  I would like to have the mailto HRef value to contain the same value as the EMAIL variable. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What would the syntax be for the HRef="mailto:... ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Apr 2010 19:25:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896654#M1480718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-24T19:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Transformation - Hyperlink in Excel - Syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896655#M1480719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe something like that:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&amp;lt;Cell&amp;gt;
  &amp;lt;tt:attribute name="ss:HRef" value-ref="EMAIL"/&amp;gt;
  &amp;lt;tt:attribute name="ss:StyleID"&amp;gt;s75&amp;lt;/tt:attribute&amp;gt;
&amp;lt;/Cell&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;[sap library - simple transformation - tt:attribute|http://help.sap.com/saphelp_nw04s/helpdata/EN/18/d16240e85cef6fe10000000a1550b0/frameset.htm]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Apr 2010 21:13:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896655#M1480719</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2010-04-24T21:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Transformation - Hyperlink in Excel - Syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896656#M1480720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the information and reference link.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used your example and got a little closer...   Now, the email address is in the cell, hyperlinked and when clicked it will open a new email message.  However, the to: field is blank, so the email address variable is not being used correctly.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my revised logic:  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            &amp;lt;Cell&amp;gt;&lt;/P&gt;&lt;P&gt;              &amp;lt;tt:attribute name="ss:HRef='mailto:'" value-ref="EMAIL"/&amp;gt;&lt;/P&gt;&lt;P&gt;              &amp;lt;tt:attribute name="ss:StyleID"&amp;gt;s75&amp;lt;/tt:attribute&amp;gt;                   &lt;/P&gt;&lt;P&gt;              &amp;lt;Data ss:Type="String"&amp;gt;&lt;/P&gt;&lt;P&gt;                &amp;lt;tt:value ref="EMAIL"/&amp;gt;&lt;/P&gt;&lt;P&gt;              &amp;lt;/Data&amp;gt;&lt;/P&gt;&lt;P&gt;            &amp;lt;/Cell&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The EMAIL variable is populating the cell correctly,so it does have values; however, when used with the HRef='mailto:' attribute it does not produce the email in the "To:" field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Apr 2010 22:35:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896656#M1480720</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-24T22:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Transformation - Hyperlink in Excel - Syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896657#M1480721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
&amp;lt;tt:attribute name="ss:HRef"&amp;gt;mailto:&amp;lt;tt:value ref="EMAIL"/&amp;gt;&amp;lt;/tt:attribute&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Apr 2010 13:22:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896657#M1480721</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2010-04-25T13:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Transformation - Hyperlink in Excel - Syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896658#M1480722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for helping me with this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I am new to using simple transformations and had this one last issue on an ABAP report I was creating, so I appreciate you help in solving this.  I will use the link you provided and other materials I gathered and get myself up to speed.   Developing an Excel spreadsheet using simple transformations has been fun and an improvement for me over using other methods SAP has provided.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Apr 2010 13:51:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896658#M1480722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-25T13:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Transformation - Hyperlink in Excel - Syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896659#M1480723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I hope you'll become experienced soon and answer ST questions in that forum, it misses experienced people to help others &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Apr 2010 13:59:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896659#M1480723</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2010-04-25T13:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Transformation - Hyperlink in Excel - Syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896660#M1480724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which forum would that be?   When I created the original message, I did not notice a forum that related to ST and upon searching topics, I found most transformation questions were being answered in the ABAP General forum. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Apr 2010 14:08:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896660#M1480724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-25T14:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Transformation - Hyperlink in Excel - Syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896661#M1480725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I mean, in &lt;STRONG&gt;this&lt;/STRONG&gt; forum&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Apr 2010 15:33:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896661#M1480725</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2010-04-25T15:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Transformation - Hyperlink in Excel - Syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896662#M1480726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, just wanted to make sure I was posting to the correct place.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Apr 2010 15:35:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896662#M1480726</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-25T15:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Transformation - Hyperlink in Excel - Syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896663#M1480727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you saving your excel as an xml spread sheet ? or just ordinary xls?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you also please enlighten about some guides to write the simple transformation?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Mithun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Jan 2011 11:51:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-transformation-hyperlink-in-excel-syntax/m-p/6896663#M1480727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-04T11:51:06Z</dc:date>
    </item>
  </channel>
</rss>

