<?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: LOCKDOWN violation in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/915218#M360633</link>
    <description>&lt;P&gt;That's a shame.&amp;nbsp; Looks like the "show log" options are not actually showing you the SAS log.&amp;nbsp; I guess it's possible that your code never actually runs.&amp;nbsp; Sorry, I'm not familiar with Viya.&amp;nbsp; Hopefully someone else can help.&lt;/P&gt;</description>
    <pubDate>Fri, 09 Feb 2024 11:54:34 GMT</pubDate>
    <dc:creator>Quentin</dc:creator>
    <dc:date>2024-02-09T11:54:34Z</dc:date>
    <item>
      <title>LOCKDOWN violation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/914647#M360420</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I am a student learner and i just started to Viya.&lt;/P&gt;&lt;P&gt;I tried to create a job in viya with some codes from the help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS code&lt;/P&gt;&lt;P&gt;==========&lt;/P&gt;&lt;PRE&gt;*  Declare input parameter;&lt;BR /&gt;&lt;BR /&gt;%global MYNAME;&lt;BR /&gt;&lt;BR /&gt;*  Write the custom HTML to _webout;&lt;BR /&gt;&lt;BR /&gt;data _null_;&lt;BR /&gt;file _webout;&lt;BR /&gt;put '&amp;lt;!DOCTYPE html&amp;gt;';&lt;BR /&gt;put '&amp;lt;html lang="en"&amp;gt;';&lt;BR /&gt;put '&amp;lt;head&amp;gt;&amp;lt;title&amp;gt;Hello World!&amp;lt;/title&amp;gt;&amp;lt;/head&amp;gt;';&lt;BR /&gt;put '&amp;lt;body role="main"&amp;gt;';&lt;BR /&gt;put "&amp;lt;h1&amp;gt;Hello %sysfunc(htmlencode(&amp;amp;MYNAME))!&amp;lt;/h1&amp;gt;";&lt;BR /&gt;put '&amp;lt;/body&amp;gt;';&lt;BR /&gt;put '&amp;lt;/html&amp;gt;';&lt;BR /&gt;run;&lt;/PRE&gt;&lt;P&gt;HTML form&lt;/P&gt;&lt;P&gt;==========&lt;/P&gt;&lt;PRE&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;BR /&gt;&amp;lt;html lang="en"&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt;&amp;lt;title&amp;gt;Hello World  11&amp;lt;/title&amp;gt;&lt;BR /&gt;&amp;lt;link rel="stylesheet" href="/SASJobExecution/theme"&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;body role="main" class="jobexec_body"&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;form class="jobexec_form" action="/SASJobExecution/" target="_tab"&amp;gt;&lt;BR /&gt;&amp;lt;input type="hidden" name="_program" value="$PROGRAM$"/&amp;gt;&lt;BR /&gt;&amp;lt;input type="hidden" name="_action" value="wait,execute"/&amp;gt;&lt;BR /&gt;&amp;lt;input type="hidden" name="_output_type" value="html"/&amp;gt;&lt;BR /&gt;1&amp;lt;div class="jobexec_sample_header"&amp;gt;SAS&amp;lt;sup&amp;gt;®&amp;lt;/sup&amp;gt; Job Execution&amp;lt;/div&amp;gt;&lt;BR /&gt;&lt;BR /&gt;2&amp;lt;h1 class="jobexec_sample_name"&amp;gt;Hello World 11&amp;lt;/h1&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;p&amp;gt;&lt;BR /&gt;This sample uses a DATA Step with simple PUT statements to create the output.&lt;BR /&gt;&amp;lt;/p&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;hr/&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;br/&amp;gt;&lt;BR /&gt;&lt;BR /&gt;3&amp;lt;label for="myname"&amp;gt;Specify a name for the greeting:&amp;lt;/label&amp;gt;&lt;BR /&gt;&amp;lt;input type="text" name="myname" id="myname" value="World" required &lt;BR /&gt;   class="jobexec_sample_input_text"/&amp;gt;&lt;BR /&gt;  &lt;BR /&gt;&amp;lt;br/&amp;gt;&lt;BR /&gt;&amp;lt;br/&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;hr/&amp;gt;&lt;BR /&gt;&lt;BR /&gt;4&amp;lt;input type="submit" value="Run code" class="jobexec_sample_input_submit"/&amp;gt;&lt;BR /&gt;&amp;lt;input type="checkbox" name="_debug" id="_debug" value="log" &lt;BR /&gt;   class="jobexec_sample_input_checkbox"/&amp;gt;&lt;BR /&gt;&amp;lt;label for="_debug"&amp;gt;Show SAS Log&amp;lt;/label&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;/form&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;/body&amp;gt;&lt;BR /&gt;&amp;lt;/html&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can preview the form when i run the code. However, when i clicked on the "run code" button, the output gave the following error&amp;nbsp;&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;Job Error&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class=""&gt;Program error.&lt;BR /&gt;The %INCLUDE statement will not be executed due to a LOCKDOWN violation.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;May i know what is mistake in the code that is causing this error ? i wish to start with a simple hello world to understand how to associate a form with the SAS code. thank you&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2024 07:38:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/914647#M360420</guid>
      <dc:creator>BernardTanSg</dc:creator>
      <dc:date>2024-02-06T07:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: LOCKDOWN violation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/914651#M360421</link>
      <description>&lt;P&gt;Hello!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The lockdown violation error likely stems from the &lt;/SPAN&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;&lt;CODE&gt;&lt;FONT color="#000000"&gt;%INCLUDE&lt;/FONT&gt;&lt;/CODE&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;SPAN&gt; statement in your code. Viya's security policies may restrict external file inclusion. Avoid using &lt;/SPAN&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;&lt;CODE&gt;&lt;FONT color="#000000"&gt;%INCLUDE&lt;/FONT&gt;&lt;/CODE&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;SPAN&gt; and incorporate necessary code directly. Check permissions and consult SAS support if needed.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2024 07:51:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/914651#M360421</guid>
      <dc:creator>jacksmith1</dc:creator>
      <dc:date>2024-02-06T07:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: LOCKDOWN violation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/914657#M360423</link>
      <description>&lt;P&gt;The code you posted does not contain a %INCLUDE statement; please post the part of your code that does.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2024 10:11:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/914657#M360423</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-02-06T10:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: LOCKDOWN violation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/914658#M360424</link>
      <description>&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/463528"&gt;@jacksmith1&lt;/a&gt; is correct. The SAS Viya for Learners (VFL) environment does not allow running the %include statement. This is due to security measures implemented by the VFL administrators. You'll have to use code that doesn't include a %include statement. For some courses (ex DMML35) the demonstration programs available in VFL have been revised and start with vfl_. Which course are studying with VFL?</description>
      <pubDate>Tue, 06 Feb 2024 10:21:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/914658#M360424</guid>
      <dc:creator>JosvanderVelden</dc:creator>
      <dc:date>2024-02-06T10:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: LOCKDOWN violation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/914788#M360487</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;there is no %Include in the code that i am testing. I have create a SAS job definition and i am trying to associate a HTML form to the code as&amp;nbsp;&lt;/P&gt;&lt;P&gt;described here&lt;/P&gt;&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/v_041/jobexecug/p0dr6nvk53cw7gn15a8wcx7gpakn.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/v_041/jobexecug/p0dr6nvk53cw7gn15a8wcx7gpakn.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could it be something that could be inherent to the backend engine of the SAS job ?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2024-02-07_08-45-16.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93319i47F4CA30E4A1BE4E/image-size/large?v=v2&amp;amp;px=999" role="button" title="2024-02-07_08-45-16.png" alt="2024-02-07_08-45-16.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 00:50:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/914788#M360487</guid>
      <dc:creator>BernardTanSg</dc:creator>
      <dc:date>2024-02-07T00:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: LOCKDOWN violation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/914996#M360568</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BernardTanSg_0-1707362555862.png" style="width: 742px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93369i18D7B8F960A89AD5/image-dimensions/742x219?v=v2" width="742" height="219" role="button" title="BernardTanSg_0-1707362555862.png" alt="BernardTanSg_0-1707362555862.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This is the error. i could not locate any line that suggest there is an %INCLUDE statement.&lt;/P&gt;&lt;P&gt;hope to seek some help please. Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 03:24:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/914996#M360568</guid>
      <dc:creator>BernardTanSg</dc:creator>
      <dc:date>2024-02-08T03:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: LOCKDOWN violation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/915021#M360583</link>
      <description>SAS Viya for Learners (VFL) is based on Viya 3.5 so you should use the sample code provided here: &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/jobexecug/n0t91q5lsc2b8qn14fd0cgbmylr8.htm#p0dr6nvk53cw7gn15a8wcx7gpakn" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/jobexecug/n0t91q5lsc2b8qn14fd0cgbmylr8.htm#p0dr6nvk53cw7gn15a8wcx7gpakn&lt;/A&gt;.&lt;BR /&gt;I have been able to execute the hello world sample on VFL without issue. Can you try with the code provided on the 9.4_3.5 sample page?</description>
      <pubDate>Thu, 08 Feb 2024 11:08:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/915021#M360583</guid>
      <dc:creator>JosvanderVelden</dc:creator>
      <dc:date>2024-02-08T11:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: LOCKDOWN violation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/915043#M360589</link>
      <description>&lt;P&gt;If you click the "show log" button on that error message screen, can you copy the full log and post it here?&amp;nbsp; It should show and %INCLUDE statement somewhere.&amp;nbsp; It's possible that SAS is using an %INCLUDE statement in some automatically generated code, even if your user-written code doesn't have an %INCLUDE statement.&amp;nbsp; But it's also possible that SAS will hide the log from the the automatically code, which is an unfortunate design choice that they sometimes make.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 13:16:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/915043#M360589</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2024-02-08T13:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: LOCKDOWN violation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/915184#M360621</link>
      <description>&lt;P&gt;thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/3492"&gt;@JosvanderVelden&lt;/a&gt;&amp;nbsp; and &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin&lt;/a&gt;&amp;nbsp;for your replies&lt;/P&gt;&lt;P&gt;oh dear.... i have tried that new version too and many other job examples posted in the communities.&lt;/P&gt;&lt;P&gt;however, when i run all the examples , every run gave me the same error message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my code screen&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BernardTanSg_0-1707438966740.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93442i4C10CDA929D340CD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BernardTanSg_0-1707438966740.png" alt="BernardTanSg_0-1707438966740.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My HTML form screen&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BernardTanSg_1-1707438995268.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93443i524B579BDA027C93/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BernardTanSg_1-1707438995268.png" alt="BernardTanSg_1-1707438995268.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;this is the video when i run the script&lt;/P&gt;&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6346513351112w1108h540r301" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6346513351112" data-account="6058004174001" data-player="default" data-embed="default" class="vjs-fluid" controls="" data-application-id="" style="width: 100%; height: 100%;"&gt;&lt;/video-js&gt;&lt;/div&gt;&lt;script src="https://players.brightcove.net/6058004174001/default_default/index.min.js"&gt;&lt;/script&gt;&lt;script&gt;(function() {  var wrapper = document.getElementById('lia-vid-6346513351112w1108h540r301');  var videoEl = wrapper ? wrapper.querySelector('video-js') : null;  if (videoEl) {     if (window.videojs) {       window.videojs(videoEl).ready(function() {         this.on('loadedmetadata', function() {           this.el().querySelectorAll('.vjs-load-progress div[data-start]').forEach(function(bar) {             bar.setAttribute('role', 'presentation');             bar.setAttribute('aria-hidden', 'true');           });         });       });     }  }})();&lt;/script&gt;&lt;a class="video-embed-link" href="https://communities.sas.com/t5/video/gallerypage/video-id/6346513351112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do not know whether do i have to change anything to the script though to avoid this error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 00:43:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/915184#M360621</guid>
      <dc:creator>BernardTanSg</dc:creator>
      <dc:date>2024-02-09T00:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: LOCKDOWN violation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/915218#M360633</link>
      <description>&lt;P&gt;That's a shame.&amp;nbsp; Looks like the "show log" options are not actually showing you the SAS log.&amp;nbsp; I guess it's possible that your code never actually runs.&amp;nbsp; Sorry, I'm not familiar with Viya.&amp;nbsp; Hopefully someone else can help.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 11:54:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/915218#M360633</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2024-02-09T11:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: LOCKDOWN violation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/915229#M360637</link>
      <description>I just verified and was able to reproduce the error on a different VFL server. I don't have access to the server you areb using. It seems that it will work on some servers and not on others in the VFL server cluster. I suggest you open a VFL technical support ticket by sending an email to sasviyaforlearners@sas.com. In the email send a link to this thread and place me in copy: jos.van.der.velden@sas.com. Don't forget to mention the vflserverurl. In my case I've tested with the following URLs: &lt;A href="https://v4e074.vfe.sas.com/SASStudioV/" target="_blank"&gt;https://v4e074.vfe.sas.com/SASStudioV/&lt;/A&gt; (doesn't work) and &lt;A href="https://v4e042.vfe.sas.com/SASStudioV/" target="_blank"&gt;https://v4e042.vfe.sas.com/SASStudioV/&lt;/A&gt; (works fine).  You probably don't have access when you use these URLs. The VFL administrators might have to restart some services on your server.</description>
      <pubDate>Fri, 09 Feb 2024 13:25:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/915229#M360637</guid>
      <dc:creator>JosvanderVelden</dc:creator>
      <dc:date>2024-02-09T13:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: LOCKDOWN violation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/915231#M360638</link>
      <description>&lt;P&gt;Wow&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/3492"&gt;@JosvanderVelden&lt;/a&gt;&amp;nbsp; that sort of testing, follow-up, and personal support is a great example of why SAS employee participation in communities.sas.com is so valuable to the SAS community.&amp;nbsp; Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 13:41:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/915231#M360638</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2024-02-09T13:41:18Z</dc:date>
    </item>
    <item>
      <title>Re: LOCKDOWN violation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/915378#M360681</link>
      <description>&lt;P&gt;Thank you very much&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/3492"&gt;@JosvanderVelden&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin&lt;/a&gt;&amp;nbsp;for your attention.&lt;/P&gt;&lt;P&gt;I'll reach out to sasviyaforlearners as recommended to explore potential solutions for resolving this error.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Feb 2024 03:03:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/LOCKDOWN-violation/m-p/915378#M360681</guid>
      <dc:creator>BernardTanSg</dc:creator>
      <dc:date>2024-02-10T03:03:19Z</dc:date>
    </item>
  </channel>
</rss>

