<?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: Getting an error while setting up BulkloadUtility for Global Search in Fraud, AML and Security Intelligence</title>
    <link>https://communities.sas.com/t5/Fraud-AML-and-Security/Getting-an-error-while-setting-up-BulkloadUtility-for-Global/m-p/633343#M511</link>
    <description>&lt;P&gt;Hi Elizabeth,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have already opened the SAS Track for the same, but it's been 2 weeks I am following up with them, but not getting any answer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So thought to ask in the community, extremely sorry if I have posted something wrong.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;
&lt;P&gt;Rajdeep&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 19 Mar 2020 16:24:53 GMT</pubDate>
    <dc:creator>rajdeep</dc:creator>
    <dc:date>2020-03-19T16:24:53Z</dc:date>
    <item>
      <title>Getting an error while setting up BulkloadUtility for Global Search</title>
      <link>https://communities.sas.com/t5/Fraud-AML-and-Security/Getting-an-error-while-setting-up-BulkloadUtility-for-Global/m-p/632605#M508</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can anyone please assist how to setup bulkloadutility for Global search in AML 6.3.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried to setup the solr which is successful and the global search icon has appeared on the UI application header. If anything I am searching over there it's giving the result.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now, I wanted to setup the bulkloadutility feature for the same, but while running the .bat file it's throwing an error.&lt;/P&gt;
&lt;P&gt;I was initially getting an error of saslogon, that is been eradicated by following the below sas note link.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/kb/61/206.html" target="_blank"&gt;https://support.sas.com/kb/61/206.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But, still I am getting an error. I am attaching both env_bulkLoadUtility and&amp;nbsp;bulkloadutility bat files what I have taken for my environment, also the snapshot of the command line error while triggering it.&lt;/P&gt;
&lt;P&gt;BulkloadUtility.bat-:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;@echo off

@rem The war file has the runtime libraries required to execute this utility.
if not exist "sas.solutions.casemgmt.war" goto NeedWar

@rem Extract the needed runtime library files.
if exist "WEB-INF/lib" goto skipExtractLib
"C:\Program Files\Java\jdk1.8.0_181\bin\jar.exe" xf sas.solutions.casemgmt.war WEB-INF/lib
:skipExtractLib

@rem set the environment
call env_bulkLoadUtility.bat

@set BLU_PORT_COLON=:
@if "%BLU_PORT%"=="" set BLU_PORT_COLON=

@rem Execute the utility.
"C:\Program Files\Java\jre1.8.0_221\bin\java.exe" ^
   -Dsearch.logon.url=https://%BLU_HOST%%BLU_PORT_COLON%%BLU_PORT%/SASLogon ^   
   -Dsearch.logon.username=%BLU_USERNAME% ^
   -Dsearch.logon.password=%BLU_PASSWORD% ^
   -Dsearch.index.service.url=https://%BLU_HOST%%BLU_PORT_COLON%%BLU_PORT%/SASEntCaseManagement/api/search ^
   -Dsearch.q.directory=%BLU_Q_DIRECTORY% ^
   -Dsearch.action.clean.q.directory=%BLU_ACTION_CLEAN_Q% ^
   -Dsearch.action.push.to.q=%BLU_ACTION_PUSH_TO_Q% ^
   -Dsearch.action.pop.from.q=%BLU_ACTION_POP_FROM_Q% ^
   -Dsearch.selected.document.types=%BLU_SELECTED_DOCUMENT_TYPES% ^
   -Dsearch.attachments.temp.directory=attachments_temp_directory ^
   -Dlog4j.configuration=log4j.properties ^
   -classpath /WEB-INF/lib/* ^
    com.sas.fcs.search.bulkload.cli.App 

goto End

:NeedWar
echo File "sas.solutions.casemgmt.war" not found. This is required, please put a copy in this directory. 
goto End

:End
endlocal&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;env_bulkloadutility.bat:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;@rem The host for /SASLogon service.
@set BLU_HOST=xxxxxxxxxxxx

@rem The port for /SASLogon service.  Leave blank if port value is not necessary.
@set BLU_PORT=443

@rem The user for /SASLogon service.
@set BLU_USERNAME=sasadm

@rem The password for /SASLogon service.
@set BLU_PASSWORD=xxxxxx
@rem Comma seperated list of document types to index.  For example, ECM-Cases,ECM-Parties,ECM-Incidents,ECM-Reports,Attachments  
@set BLU_SELECTED_DOCUMENT_TYPES=ECM-Cases,ECM-Parties,ECM-Incidents,ECM-Reports,Attachments

@rem The queue directory.  If using a cluster of bulk load utility processes, this needs to be a shared location.  For example, \\machine123\blu_q
@rem Ensure tight permissions are used for this location since sensitive data may be present. 
@set BLU_Q_DIRECTORY=E:\sasconfig\Lev1\SASApp\solr_queue

@rem Clear the queue directory. true|false 
@set BLU_ACTION_CLEAN_Q=true

@rem Will this process push data to the queue. true|false 
@set BLU_ACTION_PUSH_TO_Q=true

@rem Will this process pop data off the queue and index it to solr. true|false
@set BLU_ACTION_POP_FROM_Q=true
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Please assist what exactly changes I need to do for running the Bulkload utility.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance. An immediate help or guidance will be really helpful and appreciated.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bulkLoadUtility_command.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/36925i3815BB721C530F58/image-size/large?v=v2&amp;amp;px=999" role="button" title="bulkLoadUtility_command.jpg" alt="bulkLoadUtility_command.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 09:50:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Fraud-AML-and-Security/Getting-an-error-while-setting-up-BulkloadUtility-for-Global/m-p/632605#M508</guid>
      <dc:creator>rajdeep</dc:creator>
      <dc:date>2020-03-17T09:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: Getting an error while setting up BulkloadUtility for Global Search</title>
      <link>https://communities.sas.com/t5/Fraud-AML-and-Security/Getting-an-error-while-setting-up-BulkloadUtility-for-Global/m-p/632967#M509</link>
      <description>&lt;P&gt;Hi there&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please open another a tech support track to assist with your question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards&lt;/P&gt;
&lt;P&gt;Elizabeth&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2020 14:15:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Fraud-AML-and-Security/Getting-an-error-while-setting-up-BulkloadUtility-for-Global/m-p/632967#M509</guid>
      <dc:creator>ElizabethKyria</dc:creator>
      <dc:date>2020-03-18T14:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: Getting an error while setting up BulkloadUtility for Global Search</title>
      <link>https://communities.sas.com/t5/Fraud-AML-and-Security/Getting-an-error-while-setting-up-BulkloadUtility-for-Global/m-p/633343#M511</link>
      <description>&lt;P&gt;Hi Elizabeth,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have already opened the SAS Track for the same, but it's been 2 weeks I am following up with them, but not getting any answer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So thought to ask in the community, extremely sorry if I have posted something wrong.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;
&lt;P&gt;Rajdeep&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Mar 2020 16:24:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Fraud-AML-and-Security/Getting-an-error-while-setting-up-BulkloadUtility-for-Global/m-p/633343#M511</guid>
      <dc:creator>rajdeep</dc:creator>
      <dc:date>2020-03-19T16:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: Getting an error while setting up BulkloadUtility for Global Search</title>
      <link>https://communities.sas.com/t5/Fraud-AML-and-Security/Getting-an-error-while-setting-up-BulkloadUtility-for-Global/m-p/633389#M512</link>
      <description>&lt;P&gt;Hello Rajdeep,&lt;BR /&gt;&lt;BR /&gt;This is Ken, and I manage the AML technical support team.&amp;nbsp; I apologize for delays on this request, however I can not find a previous track on this subject.&amp;nbsp; I feel that a track is the correct approach, so let's see if we can figure out what happened.&amp;nbsp; Can you message me with the original track number?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Mar 2020 18:48:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Fraud-AML-and-Security/Getting-an-error-while-setting-up-BulkloadUtility-for-Global/m-p/633389#M512</guid>
      <dc:creator>SAS_KennyE</dc:creator>
      <dc:date>2020-03-19T18:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: Getting an error while setting up BulkloadUtility for Global Search</title>
      <link>https://communities.sas.com/t5/Fraud-AML-and-Security/Getting-an-error-while-setting-up-BulkloadUtility-for-Global/m-p/633495#M513</link>
      <description>&lt;P&gt;Hi Ken,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks a lot for your reply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The original track number regarding this issue is [&lt;SPAN&gt;SAS 7613027785]&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2020 07:34:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Fraud-AML-and-Security/Getting-an-error-while-setting-up-BulkloadUtility-for-Global/m-p/633495#M513</guid>
      <dc:creator>rajdeep</dc:creator>
      <dc:date>2020-03-20T07:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: Getting an error while setting up BulkloadUtility for Global Search</title>
      <link>https://communities.sas.com/t5/Fraud-AML-and-Security/Getting-an-error-while-setting-up-BulkloadUtility-for-Global/m-p/633641#M515</link>
      <description>Thank you.  I will reach out to the track owners and make them aware of your concern.  &lt;BR /&gt;&lt;BR /&gt;If at any time you need an update to a track, feel free to call SAS technical support directly and request an update.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://support.sas.com/en/technical-support/services-policies.html" target="_blank"&gt;https://support.sas.com/en/technical-support/services-policies.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;There are also steps to escalate a track if you feel that you are not receiving sufficient updates.  We will provide an update to the track shortly.  Again, I apologize for any delays.</description>
      <pubDate>Fri, 20 Mar 2020 14:57:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Fraud-AML-and-Security/Getting-an-error-while-setting-up-BulkloadUtility-for-Global/m-p/633641#M515</guid>
      <dc:creator>SAS_KennyE</dc:creator>
      <dc:date>2020-03-20T14:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: Getting an error while setting up BulkloadUtility for Global Search</title>
      <link>https://communities.sas.com/t5/Fraud-AML-and-Security/Getting-an-error-while-setting-up-BulkloadUtility-for-Global/m-p/633735#M516</link>
      <description>&lt;P&gt;Hi Ken,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks a lot for following up with the track. Finally I had received an update from them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We will take from here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again and have a great day ahead.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2020 21:23:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Fraud-AML-and-Security/Getting-an-error-while-setting-up-BulkloadUtility-for-Global/m-p/633735#M516</guid>
      <dc:creator>rajdeep</dc:creator>
      <dc:date>2020-03-20T21:23:55Z</dc:date>
    </item>
  </channel>
</rss>

