<?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: Forecast Studio project | can we export the override values in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-Studio-project-can-we-export-the-override-values/m-p/232513#M1439</link>
    <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can think of two ways of doing it.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN style="line-height: 20px;"&gt;Simply make a copy of the project. &lt;/SPAN&gt;&lt;SPAN style="line-height: 20px;"&gt;The copy operation will preserve the overrides.&amp;nbsp;Then change the project settings you want. This is the easiest way.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN style="line-height: 20px;"&gt;The second method requires some simple coding that uses the batch macro %FSSETOVR to add&amp;nbsp;the overrides to the new project.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN style="line-height: 20px;"&gt;The flow for method 2 is as follows:&lt;/SPAN&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN style="line-height: 20px;"&gt;set your libraries corresponding to the hierarchy of your source project. You can copy the code from "libraries_declaration.sas" in your project folder roor directory&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;Either gather all the OUTVRD data sets from the hierarchy levels into one data set, or loop over the hirerarchy levels&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN style="line-height: 20px;"&gt;Use the %FSSETOVR macro to apply the overrides to the new project.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;This is just an example of the code where the original project has OUTOVRD data set at three levels.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;**********************************************************************                                                                  
* DECLARING LIBRARIES.                                                                                                                  
*********************************************************************;                                                                  
                                                                                                                                        
%let HPF_LIBNAME_OPTIONS=;                                                                                                              
                                                                                                                                        
%let HPF_PROJECTDIR = C:\SAS\SASForecastServer14.1\Default\Projects\myOldProject\;                                                      
libname _project "&amp;amp;HPF_PROJECTDIR" &amp;amp;HPF_LIBNAME_OPTIONS;                                                                                
libname _top "&amp;amp;HPF_PROJECTDIR\hierarchy\top" &amp;amp;HPF_LIBNAME_OPTIONS;                                                                      
libname _HPF0 "&amp;amp;HPF_PROJECTDIR\hierarchy\regionName" &amp;amp;HPF_LIBNAME_OPTIONS;                                                              
libname _HPF1 "&amp;amp;HPF_PROJECTDIR\hierarchy\productLine" &amp;amp;HPF_LIBNAME_OPTIONS;                                                             
libname _HPF2 "&amp;amp;HPF_PROJECTDIR\hierarchy\productName" &amp;amp;HPF_LIBNAME_OPTIONS;                                                             
libname mylib "c:\FS";                                                                                                                  
                                                                                                                                        
                                                                                                                                        
                                                                                                                                        
**********************************************************************                                                                  
* GATHER OVERRIDES                                                                                                                      
*********************************************************************;                                                                  
                                                                                                                                        
data mylib.allovrd;                                                                                                                     
   set _hpf2.outovrd _hpf0.outovrd _top.outovrd ;                                                                                       
run;                                                                                                                                    
                                                                                                                                        
                                                                                                                                        
**********************************************************************                                                                  
* APPLY OVERRIDES TO NEW PROJECT                                                                                                        
*********************************************************************;                                                                  
                                                                                                                                        
                                                                                                                                        
%fslogin (user     = yourSASUserName,                                                                                                           
          password = yourSASPassword,                                                                                                         
         );                                                                                                                             
                                                                                                                                        
%fssetovr(ovrds=mylib.allovrd,                                                                                                              
          projectName=myNewProject,                                                                                                     
          environment=default,                                                                                                          
          reconcile=YES,                                                                                                                
          outfailed=IHopeNone                                                                                                           
         );                                                                                                                             
                                                                                                                                        
                                                                                                                                        
%fslogout();                                                                                                                            
                                                     
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 02 Nov 2015 16:05:21 GMT</pubDate>
    <dc:creator>mitrov</dc:creator>
    <dc:date>2015-11-02T16:05:21Z</dc:date>
    <item>
      <title>Forecast Studio project | can we export the override values</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-Studio-project-can-we-export-the-override-values/m-p/231923#M1432</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in myproject, if i override few values, can i export and import in another project?&lt;/P&gt;&lt;P&gt;i don't want to copy and paste the data but want to export into a file and then want to import it into the project.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Oct 2015 22:11:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-Studio-project-can-we-export-the-override-values/m-p/231923#M1432</guid>
      <dc:creator>TestingSAS</dc:creator>
      <dc:date>2015-10-27T22:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: Forecast Studio project | can we export the override values</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-Studio-project-can-we-export-the-override-values/m-p/232215#M1434</link>
      <description>We are currently working on new forecast override functionality for the next release. Importing external overrides is a requirement under consideration. As Product Manager of SAS Forecasting (Forecast Server, Forecast Studio, FSC, etc), I'd like to talk with you about this topic. Please contact me directly to discuss. Thanks!</description>
      <pubDate>Thu, 29 Oct 2015 14:44:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-Studio-project-can-we-export-the-override-values/m-p/232215#M1434</guid>
      <dc:creator>wandas</dc:creator>
      <dc:date>2015-10-29T14:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: Forecast Studio project | can we export the override values</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-Studio-project-can-we-export-the-override-values/m-p/232225#M1435</link>
      <description>&lt;P&gt;sue let me know how and where&lt;/P&gt;</description>
      <pubDate>Thu, 29 Oct 2015 15:09:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-Studio-project-can-we-export-the-override-values/m-p/232225#M1435</guid>
      <dc:creator>TestingSAS</dc:creator>
      <dc:date>2015-10-29T15:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: Forecast Studio project | can we export the override values</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-Studio-project-can-we-export-the-override-values/m-p/232513#M1439</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can think of two ways of doing it.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN style="line-height: 20px;"&gt;Simply make a copy of the project. &lt;/SPAN&gt;&lt;SPAN style="line-height: 20px;"&gt;The copy operation will preserve the overrides.&amp;nbsp;Then change the project settings you want. This is the easiest way.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN style="line-height: 20px;"&gt;The second method requires some simple coding that uses the batch macro %FSSETOVR to add&amp;nbsp;the overrides to the new project.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN style="line-height: 20px;"&gt;The flow for method 2 is as follows:&lt;/SPAN&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN style="line-height: 20px;"&gt;set your libraries corresponding to the hierarchy of your source project. You can copy the code from "libraries_declaration.sas" in your project folder roor directory&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;Either gather all the OUTVRD data sets from the hierarchy levels into one data set, or loop over the hirerarchy levels&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN style="line-height: 20px;"&gt;Use the %FSSETOVR macro to apply the overrides to the new project.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;This is just an example of the code where the original project has OUTOVRD data set at three levels.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;**********************************************************************                                                                  
* DECLARING LIBRARIES.                                                                                                                  
*********************************************************************;                                                                  
                                                                                                                                        
%let HPF_LIBNAME_OPTIONS=;                                                                                                              
                                                                                                                                        
%let HPF_PROJECTDIR = C:\SAS\SASForecastServer14.1\Default\Projects\myOldProject\;                                                      
libname _project "&amp;amp;HPF_PROJECTDIR" &amp;amp;HPF_LIBNAME_OPTIONS;                                                                                
libname _top "&amp;amp;HPF_PROJECTDIR\hierarchy\top" &amp;amp;HPF_LIBNAME_OPTIONS;                                                                      
libname _HPF0 "&amp;amp;HPF_PROJECTDIR\hierarchy\regionName" &amp;amp;HPF_LIBNAME_OPTIONS;                                                              
libname _HPF1 "&amp;amp;HPF_PROJECTDIR\hierarchy\productLine" &amp;amp;HPF_LIBNAME_OPTIONS;                                                             
libname _HPF2 "&amp;amp;HPF_PROJECTDIR\hierarchy\productName" &amp;amp;HPF_LIBNAME_OPTIONS;                                                             
libname mylib "c:\FS";                                                                                                                  
                                                                                                                                        
                                                                                                                                        
                                                                                                                                        
**********************************************************************                                                                  
* GATHER OVERRIDES                                                                                                                      
*********************************************************************;                                                                  
                                                                                                                                        
data mylib.allovrd;                                                                                                                     
   set _hpf2.outovrd _hpf0.outovrd _top.outovrd ;                                                                                       
run;                                                                                                                                    
                                                                                                                                        
                                                                                                                                        
**********************************************************************                                                                  
* APPLY OVERRIDES TO NEW PROJECT                                                                                                        
*********************************************************************;                                                                  
                                                                                                                                        
                                                                                                                                        
%fslogin (user     = yourSASUserName,                                                                                                           
          password = yourSASPassword,                                                                                                         
         );                                                                                                                             
                                                                                                                                        
%fssetovr(ovrds=mylib.allovrd,                                                                                                              
          projectName=myNewProject,                                                                                                     
          environment=default,                                                                                                          
          reconcile=YES,                                                                                                                
          outfailed=IHopeNone                                                                                                           
         );                                                                                                                             
                                                                                                                                        
                                                                                                                                        
%fslogout();                                                                                                                            
                                                     
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Nov 2015 16:05:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-Studio-project-can-we-export-the-override-values/m-p/232513#M1439</guid>
      <dc:creator>mitrov</dc:creator>
      <dc:date>2015-11-02T16:05:21Z</dc:date>
    </item>
    <item>
      <title>Re: Forecast Studio project | can we export the override values</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-Studio-project-can-we-export-the-override-values/m-p/639002#M3805</link>
      <description>Hello.&lt;BR /&gt;&lt;BR /&gt;Do you know if actually, the current version of SAS Forecast desktop has the functionality incorporated?</description>
      <pubDate>Fri, 10 Apr 2020 16:27:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-Studio-project-can-we-export-the-override-values/m-p/639002#M3805</guid>
      <dc:creator>SINNETIC</dc:creator>
      <dc:date>2020-04-10T16:27:47Z</dc:date>
    </item>
  </channel>
</rss>

