<?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>Question Re: Converting a SSN to Include Dashes in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/converting-a-ssn-to-include-dashes/qaa-p/685892#M183095</link>
    <description>&lt;P&gt;Thanks, yes, using Web Intelligence. SAP BusinessObjects BI Platform 4.2 Support Pack 3&lt;/P&gt;</description>
    <pubDate>Thu, 18 Oct 2018 17:34:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2018-10-18T17:34:43Z</dc:date>
    <item>
      <title>Converting a SSN to Include Dashes</title>
      <link>https://community.sap.com/t5/technology-q-a/converting-a-ssn-to-include-dashes/qaq-p/685890</link>
      <description>&lt;P&gt;Version: 14.2.3.2132 of Business Objects&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;When I pull a SSN into a report, it comes through in a straight number 123456789&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;I need to convert this to somehow include dashes: 123-45-6789&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;While there is a left =Left([Borrower 1 SSN];3) +"-" &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;and right =Right([Borrower 1 SSN];4)&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;function I can use for the first three with a dash and last four, there is no "mid" function to extract the two middle numbers, so they can be separated out and a dash added. Any ideas in how I can do this?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Oct 2018 17:15:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/converting-a-ssn-to-include-dashes/qaq-p/685890</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-10-18T17:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: Converting a SSN to Include Dashes</title>
      <link>https://community.sap.com/t5/technology-q-a/converting-a-ssn-to-include-dashes/qaa-p/685891#M183094</link>
      <description>&lt;P&gt;Hi - I went ahead and published your question but please share which tool you are using.  Is it Web Intelligence?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Oct 2018 17:15:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/converting-a-ssn-to-include-dashes/qaa-p/685891#M183094</guid>
      <dc:creator>TammyPowlas</dc:creator>
      <dc:date>2018-10-18T17:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: Converting a SSN to Include Dashes</title>
      <link>https://community.sap.com/t5/technology-q-a/converting-a-ssn-to-include-dashes/qaa-p/685892#M183095</link>
      <description>&lt;P&gt;Thanks, yes, using Web Intelligence. SAP BusinessObjects BI Platform 4.2 Support Pack 3&lt;/P&gt;</description>
      <pubDate>Thu, 18 Oct 2018 17:34:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/converting-a-ssn-to-include-dashes/qaa-p/685892#M183095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-10-18T17:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: Converting a SSN to Include Dashes</title>
      <link>https://community.sap.com/t5/technology-q-a/converting-a-ssn-to-include-dashes/qaa-p/685893#M183096</link>
      <description>&lt;P&gt;use Substr&lt;/P&gt;&lt;P&gt;Variable:   =Left([SSN];3) + "-" + Substr([SSN];4;2)+ "-" + Right([SSN];4)&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/236603-ssn.jpg" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Oct 2018 17:36:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/converting-a-ssn-to-include-dashes/qaa-p/685893#M183096</guid>
      <dc:creator>ayman_salem</dc:creator>
      <dc:date>2018-10-18T17:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: Converting a SSN to Include Dashes</title>
      <link>https://community.sap.com/t5/technology-q-a/converting-a-ssn-to-include-dashes/qaa-p/685894#M183097</link>
      <description>&lt;P&gt;Thanks Ayman, that did it!&lt;/P&gt;</description>
      <pubDate>Thu, 18 Oct 2018 18:19:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/converting-a-ssn-to-include-dashes/qaa-p/685894#M183097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-10-18T18:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Converting a SSN to Include Dashes</title>
      <link>https://community.sap.com/t5/technology-q-a/converting-a-ssn-to-include-dashes/qaa-p/685895#M183098</link>
      <description>&lt;P&gt;One more method I ended up finding that works:&lt;/P&gt;&lt;P&gt;=Substr([Borrower 1 SSN];1;3)+"-"+Substr([Borrower 1 SSN];4;2)+"-"+Substr([Borrower 1 SSN];6;4)&lt;/P&gt;</description>
      <pubDate>Fri, 19 Oct 2018 17:47:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/converting-a-ssn-to-include-dashes/qaa-p/685895#M183098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-10-19T17:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: Converting a SSN to Include Dashes</title>
      <link>https://community.sap.com/t5/technology-q-a/converting-a-ssn-to-include-dashes/qaa-p/685896#M183099</link>
      <description>&lt;P&gt;I have fixed your primary tag, please select more careful next time.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Oct 2018 11:46:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/converting-a-ssn-to-include-dashes/qaa-p/685896#M183099</guid>
      <dc:creator>denis_konovalov</dc:creator>
      <dc:date>2018-10-22T11:46:08Z</dc:date>
    </item>
  </channel>
</rss>

