<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">

<channel>

  <atom:link href="https://community.pyramidanalytics.com/rss/category/general" rel="self" type="application/rss+xml"/>
  <title>Pyramid Analytics User Community&#32;General</title>
  <link>https://community.pyramidanalytics.com/category/general/</link>
  <description></description>
  <language>en-us</language>
<ttl>240</ttl>
  <item>
          <title>🌍 Dynamic, Localized Chart Titles</title>
          <link>https://community.pyramidanalytics.com/t/x2yp366/dynamic-localized-chart-titles</link>
          <description><![CDATA[<p>We always want to deliver insights in the <strong>user’s language</strong>. It makes analytics feel personal, clear, and way more useful.</p>
<p>In <strong>Pyramid Analytics</strong>, we can translate almost everything - formula names, attribute names, metadata, even auto generated insights can be matched to the user's default language.&nbsp;</p>
<p>But chart titles work a little differently. They stay set to the original saved name we gave to the chart. That means, even when your dashboard language changes, your chart title might not. Unless, you handle it dynamically.</p>
<h3>✅ Switch from Static Titles → Dynamic Text</h3>
<p>Here’s a clean way to make chart titles automatically match the selected application language:</p>
<ol>
 <li><p><strong>Turn OFF the default chart title field in the presentation layer</strong>&nbsp;</p></li>
 <li><p><strong>Insert a Text Box instead</strong>, positioned where the title would normally go</p> <p style="text-align:left"><img alt="" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/f451a4aa-8438-4073-9d04-e2067cf62784/h/547.png" style="" width="804"></p></li>
 <li><p><strong>With the Text Box Selected</strong></p>
  <ol>
   <li><p>Click on the <strong>Text Ribbon</strong> on the top left</p></li>
   <li><p>Click on <strong>Dynamic Text</strong></p></li>
  </ol></li>
 <li><p>In the panel that will show up</p>
  <ol>
   <li><p>Select a <strong>grid</strong> - ideally something simple and is used by the dashboard. Your dynamic text won't work without making a selection here.</p></li>
   <li><p>Enter your <strong>logic </strong>using a case statement to match the application language to what the title should be</p></li>
  </ol> <p style="text-align:left"><img alt="" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/c3f447a6-5c2a-432b-b042-54c03a466d33/h/547.png" style="" width="809"></p></li>
 <li>Repeat as needed for all your titles</li>
</ol>
<h3>💡Taking it further</h3>
<p>You can further simplify this by uploading a <strong>data table that contains all the names of charts </strong>in all the languages you need. That way, you can create a grid and use that to <strong>match the application language to the corresponding title</strong> in the table instead of manually typing in the formula box.</p>
<h3>✨ A pretty simple tip but I hope its useful. Happy building!</h3>]]></description>
          <pubDate>Tue, 02 Dec 2025 11:50:33 +0000</pubDate>
          <guid>https://community.pyramidanalytics.com/t/x2yp366/dynamic-localized-chart-titles</guid>
          <dc:creator>Kelly Lu Murray</dc:creator>
        </item>

      <item>
          <title>The Pyramid Services In Linux</title>
          <link>https://community.pyramidanalytics.com/t/y4ykha8/the-pyramid-services-in-linux</link>
          <description><![CDATA[<p>To restart the services from the terminal, you can run these commands one by one:</p>
<pre class="language-none"><code class="language-none">sudo&nbsp;systemctl&nbsp;restart&nbsp;pyramidAgent
sudo&nbsp;systemctl&nbsp;restart&nbsp;pyramidRTE
sudo&nbsp;systemctl&nbsp;restart&nbsp;pyramidRTR
sudo&nbsp;systemctl&nbsp;restart&nbsp;pyramidWeb
sudo&nbsp;systemctl&nbsp;restart&nbsp;pyramidTE
sudo&nbsp;systemctl&nbsp;restart&nbsp;pyramidIMDB
sudo&nbsp;systemctl&nbsp;restart&nbsp;pyramidNLP
sudo&nbsp;systemctl&nbsp;restart&nbsp;pyramidSOLVE
sudo&nbsp;systemctl&nbsp;restart&nbsp;pyramidFs
sudo&nbsp;systemctl&nbsp;restart&nbsp;pyramidAI
sudo&nbsp;systemctl&nbsp;restart&nbsp;pyramidPG&nbsp;(only&nbsp;if&nbsp;you&nbsp;are&nbsp;using&nbsp;the&nbsp;Pyramid&nbsp;Postgres&nbsp;as&nbsp;a&nbsp;repository)</code></pre>
<p>You can also use one command to restart all of the Pyramid services:</p>
<pre class="language-none"><code class="language-none">sudo&nbsp;systemctl&nbsp;restart&nbsp;pyramid*</code></pre>
<p>To stop the services, use these commands:</p>
<pre class="language-none"><code class="language-none">sudo&nbsp;systemctl&nbsp;stop&nbsp;pyramidAgent
sudo&nbsp;systemctl&nbsp;stop&nbsp;pyramidRTE
sudo&nbsp;systemctl&nbsp;stop&nbsp;pyramidRTR
sudo&nbsp;systemctl&nbsp;stop&nbsp;pyramidWeb
sudo&nbsp;systemctl&nbsp;stop&nbsp;pyramidTE
sudo&nbsp;systemctl&nbsp;stop&nbsp;pyramidIMDB
sudo&nbsp;systemctl&nbsp;stop&nbsp;pyramidNLP
sudo&nbsp;systemctl&nbsp;stop&nbsp;pyramidSOLVE
sudo&nbsp;systemctl&nbsp;stop&nbsp;pyramidFs
sudo&nbsp;systemctl&nbsp;stop&nbsp;pyramidAI
sudo&nbsp;systemctl&nbsp;stop&nbsp;pyramidPG&nbsp;(only&nbsp;if&nbsp;you&nbsp;are&nbsp;using&nbsp;the&nbsp;Pyramid&nbsp;Postgres&nbsp;as&nbsp;a&nbsp;repository)
sudo&nbsp;systemctl&nbsp;stop&nbsp;pyramid*</code></pre>
<p>To start the services, use these commands:</p>
<pre class="language-none"><code class="language-none">sudo&nbsp;systemctl&nbsp;start&nbsp;pyramidAgent
sudo&nbsp;systemctl&nbsp;start&nbsp;pyramidRTE
sudo&nbsp;systemctl&nbsp;start&nbsp;pyramidRTR
sudo&nbsp;systemctl&nbsp;start&nbsp;pyramidWeb
sudo&nbsp;systemctl&nbsp;start&nbsp;pyramidTE
sudo&nbsp;systemctl&nbsp;start&nbsp;pyramidIMDB
sudo&nbsp;systemctl&nbsp;start&nbsp;pyramidNLP
sudo&nbsp;systemctl&nbsp;start&nbsp;pyramidSOLVE
sudo&nbsp;systemctl&nbsp;start&nbsp;pyramidFs
sudo&nbsp;systemctl&nbsp;start&nbsp;pyramidAI
sudo&nbsp;systemctl&nbsp;start&nbsp;pyramidPG&nbsp;(only&nbsp;if&nbsp;you&nbsp;are&nbsp;using&nbsp;the&nbsp;Pyramid&nbsp;Postgres&nbsp;as&nbsp;a&nbsp;repository)
sudo&nbsp;systemctl&nbsp;start&nbsp;pyramid*</code></pre>
<p>To check the services' status, use these commands:</p>
<pre class="language-none"><code class="language-none">sudo&nbsp;systemctl&nbsp;status&nbsp;pyramidAgent
sudo&nbsp;systemctl&nbsp;status&nbsp;pyramidRTE
sudo&nbsp;systemctl&nbsp;status&nbsp;pyramidRTR
sudo&nbsp;systemctl&nbsp;status&nbsp;pyramidWeb
sudo&nbsp;systemctl&nbsp;status&nbsp;pyramidTE
sudo&nbsp;systemctl&nbsp;status&nbsp;pyramidIMDB
sudo&nbsp;systemctl&nbsp;status&nbsp;pyramidNLP
sudo&nbsp;systemctl&nbsp;status&nbsp;pyramidSOLVE
sudo&nbsp;systemctl&nbsp;status&nbsp;pyramidFs
sudo&nbsp;systemctl&nbsp;status&nbsp;pyramidAI
sudo&nbsp;systemctl&nbsp;status&nbsp;pyramidPG&nbsp;(only&nbsp;if&nbsp;you&nbsp;are&nbsp;using&nbsp;the&nbsp;Pyramid&nbsp;Postgres&nbsp;as&nbsp;a&nbsp;repository)
sudo&nbsp;systemctl&nbsp;status&nbsp;pyramid*</code></pre>]]></description>
          <pubDate>Sun, 13 Jul 2025 11:03:42 +0000</pubDate>
          <guid>https://community.pyramidanalytics.com/t/y4ykha8/the-pyramid-services-in-linux</guid>
          <dc:creator>Liran Levi</dc:creator>
        </item>

      <item>
          <title>Enabling Python Functionality on Servers with Limited Internet Access</title>
          <link>https://community.pyramidanalytics.com/t/h7yt7xy/enabling-python-functionality-on-servers-with-limited-internet-access</link>
          <description><![CDATA[<p>Installing Pyramid with limited internet access may prevent Python from being installed.</p>
<p>To ensure Pyramid installs Python correctly, please allow access to the following URLs:</p>
<p>For Pyramid 2023.15 onwards allow this links:</p>
<pre class="language-none"><code class="language-none">https://conda.anaconda.org/
https://conda.anaconda.org
https://pypi.org.
https://files.pythonhosted.org
https://bootstrap.pypa.io
</code></pre>
<p>For Pyramid versions below 2023.15:&nbsp;</p>
<ul>
 <li><strong>For Windows:</strong></li>
</ul>
<pre class="language-none"><code class="language-none">https://repo.anaconda.com/miniconda/Miniconda3-py39_23.5.2-0-Windows-x86_64.exe</code></pre>
<ul>
 <li><strong>For Linux:&nbsp;</strong></li>
</ul>
<pre class="language-none"><code class="language-none">https://repo.anaconda.com/miniconda/Miniconda3-py39_23.5.2-0-Linux-x86_64.sh</code></pre>]]></description>
          <pubDate>Tue, 24 Sep 2024 13:53:00 +0000</pubDate>
          <guid>https://community.pyramidanalytics.com/t/h7yt7xy/enabling-python-functionality-on-servers-with-limited-internet-access</guid>
          <dc:creator>Liran Levi</dc:creator>
        </item>

      <item>
          <title>Getting your OpenAI API key</title>
          <link>https://community.pyramidanalytics.com/t/m1ymvlg/getting-your-openai-api-key</link>
          <description><![CDATA[<p>Pyramid does <strong>not </strong>support GPT-3.5.<br> You will need to generate a GPT-4 API key.<br> <br>Follow these steps to get started:</p>
<h4>Step 1: Obtain an API Key</h4>
<p>To begin using GPT-4, you'll need an API key from OpenAI.<br> Visit the <a href="https://www.openai.com/product" rel="nofollow noopener noreferrer" target="_blank">OpenAI product page</a>, and click "Start Building."</p>
<p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/9ea053e0-620d-4ff2-8e95-689ab73b1ab1/h/547.png" style="" width="1200"></p>
<p><span style="font-weight: var(--font-bold)">Step 2: Sign Up and Verify Your Account</span></p>
<p>Choose a signup method and complete the verification process, which requires access to a phone that can receive texts.</p>
<h4>Step 3: Create Your API Key</h4>
<p>Once your account is verified, create your API key by following these steps:</p>
<ul>
 <li><p>Hover over your profile icon in the top right corner and select "Your Profile"</p> <p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/adafff40-834e-4ec8-802b-fd7a2229e8d6/h/547.png" style="" width="256"></p></li>
 <li><p>Navigate to the "User API Keys" tab and&nbsp;Generate a new API key</p> <p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/329394ba-ec1d-4122-8411-adf16b360a28/h/547.png" style="" width="876"></p></li>
</ul>
<h3><strong>4. Save Your API Key</strong></h3>
<ul>
 <li>Give your API key a name</li>
 <li>Click the copy button to copy the key to your clipboard<br> <br><b>Note: </b>It's recommended to copy the key to a Notepad document for easy access and safekeeping. Once you close the lightbox, you will not be able to view your key again. If it gets lost, you will need to recreate it for this project.</li>
</ul>
<p><span id="cke_bm_124S" style="display: none;">&nbsp;</span>&nbsp;</p>
<div style="text-align: left; margin: 0px;">
 <ul>
  <li style="text-align: left; display: inline-block;"><span><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/0e721c9c-c77a-4855-a757-ca10742a905a/h/547.png" style="" width="532"></span></li>
 </ul>
</div>
<p><span id="cke_bm_124E" style="display: none;">&nbsp;</span>&nbsp;</p>
<hr>
<p>For further help with regards to Open AI, reach out to their support as below.</p>
<p>Click on "Help" at the bottom left.</p>
<p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/61a59636-abff-40a0-bda0-6eb13508ccd3/h/547.png" style="" width="220"></p>
<p>&nbsp;It will allow you to open their support chatbot.</p>]]></description>
          <pubDate>Sun, 21 Jul 2024 12:19:00 +0000</pubDate>
          <guid>https://community.pyramidanalytics.com/t/m1ymvlg/getting-your-openai-api-key</guid>
          <dc:creator>Liran Levi</dc:creator>
        </item>

      <item>
          <title>How to use ChatGPT to analyse workflow conversations</title>
          <link>https://community.pyramidanalytics.com/t/p8yqmjz/how-to-use-chatgpt-to-analyse-workflow-conversations</link>
          <description><![CDATA[<h1>How to use ChatGPT to analyse workflow conversations</h1>
<p style="text-align:start">This session will show how ChatGPT can categorize and summarize workflow conversations.</p>
<p style="text-align:start">Pyramid allows users to start a dialogue against a particular data point. I have added some comments to a conversation workflow and assigned it to a colleague or a group. The conversation flow and history can be viewed in Pyramid or other collaboration platforms.&nbsp;All conversation data can be directly queried and shared with business users.</p>
<p style="text-align:start">Here, we are using text aggregation to consolidate conversations per data model and then applying ChatGPT to summarize key insights from the conversation history.</p>
<p style="text-align:start">I can view the number of conversations by data point by selecting a data model. I can also see the conversation history by date and time.</p>
<p style="text-align:start">Here, we have used the text aggregation measure to view the entire conversation in a single sell.</p>
<p style="text-align:start">By selecting one of these conversations, Pyramid will use our OpenAI integration to provide insights into the data. OpenAI will respond with three aspects. The first shows the main subject categories discussed in the conversation. The second is a conversation summary, and the third classifies if this conversation led to a resolution to the problem or not.</p>
<h3>See how to use ChatGPT for workflows in this video</h3>
<p>&nbsp;</p>
<p><span class="video-inline" data-href="https%3A%2F%2Fpyramidanalytics%2Ewistia%2Ecom%2Fmedias%2Fqxg7r0gehy%3FvideoFoam%3Dfalse" style="padding-bottom:56.25%;"><iframe allowfullscreen="””" class="wistia_embed" frameborder="0" height="540" name="wistia_embed" scrolling="no" src="https://fast.wistia.net/embed/iframe/qxg7r0gehy?videoFoam=false" width="960"></iframe> </span></p>
<p>In this session, we have shown how Pyramid can uniquely track workflow conversations by data point, consolidate the text using its text aggregation feature, and then apply ChatGPT to provide insights.</p>
<p style="text-align:start">If you have questions or need step by step instructions for this solution, please leave a comment below. Or reach out to&nbsp;<button class="mention focus-save" data-href="/profile/q599f6" type="button">Calvin Fuss</button></p>]]></description>
          <pubDate>Thu, 07 Sep 2023 08:30:00 +0000</pubDate>
          <guid>https://community.pyramidanalytics.com/t/p8yqmjz/how-to-use-chatgpt-to-analyse-workflow-conversations</guid>
          <dc:creator>Calvin Fuss</dc:creator>
        </item>

      <item>
          <title>How to share Pyramid Reports and Dashboards in Microsoft Teams</title>
          <link>https://community.pyramidanalytics.com/t/q6h4m6l/how-to-share-pyramid-reports-and-dashboards-in-microsoft-teams</link>
          <description><![CDATA[<p>The easier Users can get access to information, the better. One way to bring Data to End Users it to integrate it into internal communication platforms like Teams.<br> Thank you to our Community Member&nbsp;<span class="mention" data-href="/profile/x2hhmpz" role="button">Ove Sandau</span> &nbsp;to share this<br> So,</p>
<h2>How can you share Pyramid Reports and Dashboards in Microsoft Teams</h2>
<ol>
 <li>Choose the Team where you want to add new Channel with the Report or Dashboard.&nbsp; Choose the + Sign to add content. <p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/101fc391-6bb1-4b53-941d-27eeb5cdd217/h/547.png" style="" width="1828"></p></li>
 <li>Select Website and then Name the Channel and paste the URL of your Pyramid Environent into the Field. <p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/5749307a-fdc8-46f4-914c-16a295d6baff/h/547.png" style="" width="597"></p></li>
 <li>Now your Channel has direct Access to your full Pyramid Content. <p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/5536111c-049b-486f-acb7-312f0f3a385b/h/547.png" style="" width="1822"></p></li>
 <li>If you want to show a particular Report or Dashboard in the Channel, please access the Asset in the CMS and Copy the link as shown here: <p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/eff136a0-f6f8-4302-babc-f753f088090b/h/547.png" style="" width="1828"></p></li>
 <li>Proceed as above and copy the Link into the Channel. Now you have the Asset directly in the Channel.<br> <em>Note: The content will be accessed with the credentials of the end-user accessing the linked content, which may require an initial login</em> <p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/f303771e-7be2-43b7-9aca-30115783af39/h/547.png" style="" width="1762"></p></li>
</ol>
<p><em>And</em> here is the Video</p>
<h3>How to add Pyramid Content to Microsoft Teams</h3>
<p>&nbsp;</p>
<p><strong><span class="video-inline" data-href="https%3A%2F%2Fpyramidanalytics%2Ewistia%2Ecom%2Fmedias%2Ffcflgrlyhs%3FvideoFoam%3Dfalse" style="padding-bottom:56.25%;"><iframe allowfullscreen="””" class="wistia_embed" frameborder="0" height="540" name="wistia_embed" scrolling="no" src="https://fast.wistia.net/embed/iframe/fcflgrlyhs?videoFoam=false" width="960"></iframe> </span></strong></p>
<p>Again a big Thank You to&nbsp;<span class="mention" data-href="/profile/x2hhmpz" role="button">Ove Sandau</span>&nbsp;who came up with this easy solution. For more Tips&amp;Tricks, subscribe to this section of the Community and Check out our <a href="https://www.youtube.com/user/PyramidAnalytics/videos" rel="nofollow noopener noreferrer" target="_blank">Youtube Channel</a>&nbsp;</p>
<p>Let us know your ideas and comment below</p>]]></description>
          <pubDate>Wed, 17 May 2023 16:13:00 +0000</pubDate>
          <guid>https://community.pyramidanalytics.com/t/q6h4m6l/how-to-share-pyramid-reports-and-dashboards-in-microsoft-teams</guid>
          <dc:creator>Angelie Janssen</dc:creator>
        </item>

      <item>
          <title>Transfering IMDB models from one environment to another.</title>
          <link>https://community.pyramidanalytics.com/t/h7haf4q/moving-imdb-models-from-one-environment-to-another</link>
          <description><![CDATA[<p>Transferring models and data between different environments can be a straightforward process by exporting and importing the ETL and re-executing it in the destination environment (provided that all the data sources exist there).</p>
<p>However, if the data sources are not available, you can follow these steps to move IMDB models:</p>
<p>1. Locate the irdb file of the relevant database on the source environment, which is usually found in C:\Program Files\Pyramid\repository\Imdata.</p>
<p>2. Copy the irdb file to the same folder on the target environment.</p>
<p>3. Export the model definitions file from the source environment.<br> To do this, select the model that you want to transfer and then, click "Export" as follows:</p>
<p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/9c1b7ee8-1588-478e-b111-0bb873f05e25/h/547.png" style="" width="854"></p>
<p>4. Next step would be to "<strong>Recognize</strong>" the model in the Target system (Data&gt;Source Manager)</p>
<p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/38a3d28d-8162-48a2-a9e9-31ea51c5d4a6/h/547.png" style="" width="940"></p>
<p>5. In the Target environment, locate the database under Admin&gt;Data&gt;Source manager,&nbsp;It should be listed under “<strong>Security</strong>”.<br> Ensure that the database has read access to the required roles.</p>
<p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/05f0cbe2-7997-46f7-8c24-f6ee73f8d251/h/547.png" style="" width="544"></p>
<p>6. Next, go to Admin&gt;Data&gt;Source manager select the IMDB database and click&nbsp; "<strong>Import</strong>"&nbsp; to import the model definitions file exported&nbsp;in step 3.</p>
<p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/1f21f8e1-c58e-4d9a-8acf-da0aa2a59055/h/547.png" style="" width="1188"></p>
<p>7. Finally, refresh the page to view the model.</p>
<p style="text-align:start">&nbsp;</p>]]></description>
          <pubDate>Tue, 18 Apr 2023 12:47:42 +0000</pubDate>
          <guid>https://community.pyramidanalytics.com/t/h7haf4q/moving-imdb-models-from-one-environment-to-another</guid>
          <dc:creator>Dvir Buzaglo</dc:creator>
        </item>

      <item>
          <title>How to Access a Windows shared folder from Linux using the command line</title>
          <link>https://community.pyramidanalytics.com/t/q6h0f4g/how-to-access-a-windows-shared-folder-from-linux-using-the-command-line</link>
          <description><![CDATA[<p>This article will describe step-by-step how to access a shared folder based on Windows from a Pyramid deployment that is based on Linux.</p>
<p>If you haven't done so already, you will need to <strong>create a shared folder in Windows.</strong></p>
<ol>
 <li>Right-click the folder you want to share and go to Properties.</li>
 <li><p>Go to Sharing tab -&gt; Advance Sharing:</p> <p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/7af53702-ed5c-4e44-a4ac-434fed340c5c/h/547.png" style="" width="363"></p></li>
 <li><p>Tick Share this folder and Ok:</p> <p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/15711884-d5c5-4392-864c-9ebb23dc236b/h/547.png" style="" width="353"></p></li>
 <li>Click Share <p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/3a98728f-07c7-4dce-871b-86b1af89edfa/h/547.png" style="" width="363"></p></li>
 <li>Add Everyone with Permission Level of Read/Write <p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/b0461351-f099-4f9c-b416-16ac4a3f29fb/h/547.png" style="" width="563"></p></li>
</ol>
<p>&nbsp;</p>
<p><strong>How to &nbsp;Access a Windows shared folder from Linux using the command line</strong></p>
<ol>
 <li>If you don't have it already, you will need to install&nbsp;<strong>smbclient</strong>, which can be done with the following commands:<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;For&nbsp;<strong>Ubuntu\Debian:&nbsp;</strong><span class="pen4">sudo&nbsp;apt-get install&nbsp;smbclient</span><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;For&nbsp;<strong>CentOS:&nbsp;</strong><span class="pen4">sudo yum install samba-client</span><br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="pen4">sudo yum install samba-common-tools</span><br> &nbsp;</li>
 <li>If you are using a machine that is on a domain, you will need to change the configuration and add your domain by editing <strong>smb.conf</strong>:<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="pen4">sudo nano /etc/samba/smb.conf</span><br> And change:<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="pen4">-security = domain</span><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="pen4">-workgroup = WORKGROUP</span><br> &nbsp;</li>
 <li>&nbsp;With smbclient installed, you can connect to your Windows share using the command:<br> &nbsp; &nbsp; &nbsp; &nbsp;<span class="pen4">sudo smbclient /PathOfTheSharedFolder -U domain/YourUser</span><br> &nbsp;</li>
 <li>Enter your user password<br> &nbsp;</li>
 <li>Once authenticated, you are placed at an&nbsp;<span class="pen4">smb: \&gt;&nbsp;prompt</span>.<br> &nbsp;</li>
 <li>Here, you can use the&nbsp;<span class="pen4">ls</span>&nbsp;or&nbsp;<span class="pen4">dir</span>&nbsp;command to list files.<br> &nbsp;</li>
 <li>Use the command&nbsp;<span class="pen4">get filename.ext</span>&nbsp;to transfer a file named filename.ext from your Windows share to your Linux machine.</li>
</ol>
<p>NOTE:&nbsp;If the file name contains spaces, make sure to enclose it in double quotes.<br> For example:&nbsp;<span class="pen4">get "My new file.txt"</span>.</p>]]></description>
          <pubDate>Sun, 05 Feb 2023 14:00:06 +0000</pubDate>
          <guid>https://community.pyramidanalytics.com/t/q6h0f4g/how-to-access-a-windows-shared-folder-from-linux-using-the-command-line</guid>
          <dc:creator>Omer Ansher</dc:creator>
        </item>

      <item>
          <title>Adding an empty measure column to a Discovery</title>
          <link>https://community.pyramidanalytics.com/t/60h0sgl/adding-an-empty-column-to-a-discovery</link>
          <description><![CDATA[<p>Adding columns is basically done by creating and selecting Calculated members/measures into the Columns selection area.</p>
<p>In this case, the requirement is to add an empty column to discovery, in the measures area (For cosmetic purposes)</p>
<ol>
 <li>&nbsp;Create a formula with the word "<strong>null</strong>" in it and save it as a measure (in the context menu).<br> &nbsp; <p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/7a65db20-ee18-493c-be02-defaaa3312df/h/547.png" style="" width="808"></p></li>
 <li>Add that formula to the discovery in the Value selection area, and make sure "Show Empties" is turned on. <p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/c4b8b6e9-2bd0-4b54-8bca-daae61510fba/h/547.png" style="" width="1720"></p></li>
</ol>]]></description>
          <pubDate>Thu, 02 Feb 2023 17:02:19 +0000</pubDate>
          <guid>https://community.pyramidanalytics.com/t/60h0sgl/adding-an-empty-column-to-a-discovery</guid>
          <dc:creator>Dvir Buzaglo</dc:creator>
        </item>

      <item>
          <title>Publication with a dynamic current period</title>
          <link>https://community.pyramidanalytics.com/t/g9h0n1p/publication-dynamic-text-with-the-current-period</link>
          <description><![CDATA[<p>In a publication, users can only add the Current Date from the Dynamic Text dropdown.</p>
<p>But if another time period is needed and it's available in the model, here is how to show it in your publication.</p>
<ol>
 <li>Create discovery and add the period attribute to both Filter and Rows drop zones.<br> Once the attribute is placed, make sure that the slicer setting for the "Initial selection mechanism" is set to either "first" or "last" (depending on where the current period is located). <p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/5776f3fc-f284-4362-ab01-7125f63bf84c/h/547.png" style="" width="679"></p> <p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/8e3de8b6-5f25-4ec9-b7d1-235d7960c922/h/547.png" style="" width="626"></p></li>
 <li>Create a "Dynamic text" element in the publication that will point to the specific Period cell in the discovery.<br> &nbsp; <p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/44bcc659-7515-4b76-89b5-142c475fa565/h/547.png" style="" width="1780"></p> <p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/92d88d53-7593-4df1-add8-797e99722104/h/547.png" style="" width="1294"></p></li>
 <li>Every time you will publish the publication, the "Dynamic text" will automatically update to show the required time period.<br> &nbsp; <p style="text-align:left"><img alt="" class="fb-img" src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/32aa9f7c-9ac5-43d4-93b1-45e5c2e4e88e/h/547.png" style="" width="1601"></p></li>
</ol>]]></description>
          <pubDate>Thu, 02 Feb 2023 12:55:00 +0000</pubDate>
          <guid>https://community.pyramidanalytics.com/t/g9h0n1p/publication-dynamic-text-with-the-current-period</guid>
          <dc:creator>Dvir Buzaglo</dc:creator>
        </item>

      <item>
          <title>When trying to use an R script from the Market Place an error occurs</title>
          <link>https://community.pyramidanalytics.com/t/g9hq5t2/when-trying-to-use-a-script-from-the-market-place-an-error-occurs</link>
          <description><![CDATA[<p> When trying to use a script from the Market Place that uses one of R packages e.g the “Sentiment analysis” (uses stringr package) the following error occurs: </p> 
<p> &nbsp;"scripting error:Error:package or namespace load failed for ''stringi" <strong>was installed&nbsp; &nbsp; &nbsp;by an R version with different internals"</strong> </p> 
<p> <strong><img src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/5b85d45b-2299-49cc-aae4-a508ec205a01/547.jpg" width="632"></strong>&nbsp; </p> 
<p> To fix please follow the below procedure to update R on your Pyramid server(s) </p> 
<p> Open the R.exe(run as administrator) which by default can be found here: </p> 
<p> C:\Program Files\Pyramid\R\bin\ </p> 
<p> <img src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/7d3a3ead-074f-4f04-bed6-dabdee4ccc9f/547.jpg" width="632">&nbsp; </p> 
<p> Then run the below: </p> 
<p> update.packages(ask=FALSE, checkBuilt=TRUE, repos="http://cran.case.edu") </p> 
<p> <img src="https://s3-us-west-2.amazonaws.com/media.forumbee.com/i/2812a9c3-1287-4af7-9a8d-f0d031ea81cb/547.jpg" width="632">&nbsp; </p> 
<p> Please note that R must be updated on all Pyramid "Runtime" and "Task Engine" servers. </p> 
<p> This article currently applies to all versions of Pyramid 2020. </p>]]></description>
          <pubDate>Wed, 05 Feb 2020 12:39:17 +0000</pubDate>
          <guid>https://community.pyramidanalytics.com/t/g9hq5t2/when-trying-to-use-a-script-from-the-market-place-an-error-occurs</guid>
          <dc:creator>Daniel</dc:creator>
        </item>

      <item>
          <title>How to contact the Pyramid support team</title>
          <link>https://community.pyramidanalytics.com/t/m26h75/how-to-contact-the-pyramid-support-team</link>
          <description><![CDATA[<p> Users that have signed up to our <a href="https://www.pyramidanalytics.com/support-options" rel="nofollow noopener noreferrer" target="_blank">support plans</a> may contact the <a href="https://support.pyramidanalytics.com/" rel="nofollow noopener noreferrer" target="_blank">Pyramid support team</a>&nbsp;to report any issues they have.<br> The following information is required when creating a new support case and will help the support team resolve your case faster. </p> 
<ul> 
 <li><strong>Version&nbsp;number.</strong><br> Some issues may have been resolved over time.<br> Knowing your version number can help us&nbsp;reproduce your case and know how to proceed.<br> &nbsp;</li> 
 <li><strong>Steps&nbsp;to reproduce.</strong><br> Detailed steps/actions taken to reproduce your case.<br> Background information, like, is the problem user-specific, client machine-specific, Book/Report specific or any other will also be very helpful.<br> &nbsp;</li> 
 <li><strong>Full-screen&nbsp;image</strong><br> A&nbsp;full screen is preferable. In most cases, there are additional details in the background that provide us with more useful information.<br> Sensitive data can be distorted/blurred.<br> &nbsp;</li> 
 <li><strong>Full&nbsp;error or logs</strong><br> Click on ‘more info’ to shows the stack trace. (best copied and pasted along with the image).&nbsp; Even more useful is to retrieve the system logs from the Admin Console. These might revile more information on what happened before the error occurred.<br> &nbsp;</li> 
 <li><strong>Exported content</strong><br> In some cases, we'll need your content (Report/Presentation...)<br> These do not contain data. it only contains the report structure and query.<br> &nbsp;</li> 
 <li><strong>"Structure only" Processed Cube.</strong> (.abf file)<br> (In a Tabular Model Structure only does not exist. A full processed cube will be required)<br> In some cases, where the issue may be related specifically to your data, we'll need&nbsp;along with the exported content, your data.<br> Having the cube really helps to reproduce the problem.<br> If cube data is required, it can be anonymized/masked cube (with dummy data)<br> <br>Alternatively, you can download our cube, <a href="https://pyramidanalytics-my.sharepoint.com/personal/daniel_moscisker_pyramidanalytics_com/_layouts/15/guestaccess.aspx?guestaccesstoken=mO0q7BRnVw6LIho%2b%2fWMETxCzdWzcXQwKE8cS2H%2bB%2bNQ%3d&amp;docid=1c5bd2f3d89204cd98cb93a00495f0737&amp;rev=1" rel="nofollow noopener noreferrer" target="_blank">Pyramid Sales Demo</a>&nbsp;-&nbsp;278.27 MB<br> and try to reproduce the problem.<br> Once successful, export and send us the report so we can try to reproduce your case in our labs.<br> &nbsp;</li> 
</ul>]]></description>
          <pubDate>Tue, 02 Aug 2016 17:55:11 +0000</pubDate>
          <guid>https://community.pyramidanalytics.com/t/m26h75/how-to-contact-the-pyramid-support-team</guid>
          <dc:creator>Jennifer Dorothea</dc:creator>
        </item>

      </channel>
</rss>
