<?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: Cascading Parameter list pulled from server incomplete in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/cascading-parameter-list-pulled-from-server-incomplete/qaa-p/12655706#M4747925</link>
    <description>&lt;P&gt;Edited the original question to add new information and screenshot.&lt;/P&gt;</description>
    <pubDate>Thu, 26 Jan 2023 17:49:32 GMT</pubDate>
    <dc:creator>Privete_member__1338745</dc:creator>
    <dc:date>2023-01-26T17:49:32Z</dc:date>
    <item>
      <title>Cascading Parameter list pulled from server incomplete</title>
      <link>https://community.sap.com/t5/technology-q-a/cascading-parameter-list-pulled-from-server-incomplete/qaq-p/12655701</link>
      <description>&lt;P&gt;I have a problem with a Cascading Dynamic parameter. &lt;/P&gt;
  &lt;P&gt;I set up a stand alone dynamic parameter, pointed it to a specific value (METHOD) on a table (RUNS) on my data server. When set up like this, it correctly pulls a full list to populate the Dynamic Parameter. (See the left side of the screenshot.)&lt;/P&gt;
  &lt;P&gt;However, if I set it up as a Cascading Dynamic parameter, using the same source, it only pulls a partial list. (See the right side of the screenshot.)&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2130875-image.png" /&gt;&lt;/P&gt;
  &lt;P&gt;The single dynamic parameter setup: &lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2130876-image.png" /&gt;&lt;/P&gt;
  &lt;P&gt;and here is the Cascading Setup:&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2130878-image.png" /&gt;&lt;/P&gt;
  &lt;P&gt;Both setups have the same setup in the formula section. The only real difference is the parameter names. This one shown below is from the independent Dynamic parameter setup. &lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2130877-image.png" /&gt;&lt;/P&gt;
  &lt;P&gt;I tried changing settings for the "Join" between tables, but that had no effect.&lt;/P&gt;
  &lt;P&gt;I am using Crystal Reports 2016, Support pack 9 patch 4 (version number 14.2.9.4008.)&lt;/P&gt;
  &lt;P&gt;**Edit** &lt;/P&gt;
  &lt;P&gt;An odd thing happened. I updated the second of the parameters from RUNS.RUNNO to RESULTS.RUNNO and the list for the first parameter, RUNS.METHOD, increased by 9 lines. The list is still not as big as if I did the first parameter without a second parameter, but it did grow a little. See below.&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2130942-image.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2023 21:19:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/cascading-parameter-list-pulled-from-server-incomplete/qaq-p/12655701</guid>
      <dc:creator>Privete_member__1338745</dc:creator>
      <dc:date>2023-01-24T21:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: Cascading Parameter list pulled from server incomplete</title>
      <link>https://community.sap.com/t5/technology-q-a/cascading-parameter-list-pulled-from-server-incomplete/qaa-p/12655702#M4747921</link>
      <description>&lt;P&gt;Are you filling the data for the parameters from the same query that contains data in your report?  Or are you using separate tables for the parameters?&lt;/P&gt;&lt;P&gt;-Dell&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2023 22:42:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/cascading-parameter-list-pulled-from-server-incomplete/qaa-p/12655702#M4747921</guid>
      <dc:creator>DellSC</dc:creator>
      <dc:date>2023-01-24T22:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: Cascading Parameter list pulled from server incomplete</title>
      <link>https://community.sap.com/t5/technology-q-a/cascading-parameter-list-pulled-from-server-incomplete/qaa-p/12655703#M4747922</link>
      <description>&lt;P&gt;I'm fairly new to Crystal reports, but according to my knowledge, I believe it's from the query that contains the data in the report.  &lt;/P&gt;&lt;P&gt;I set up the tables, parameters, and formulas, and then pressed the refresh button and parameter pane comes up asking for a value in the parameters. (this is where the problem happens)&lt;/P&gt;&lt;P&gt;If it helps, here's the SQL query after I've filled in the parameters, where I set the METHOD parameter to 23.014 and RUNNO parameter to 920:&lt;/P&gt;&lt;P&gt; SELECT DISTINCT "FOLDERS"."BATCHNO", "RESULTS"."ORDNO", "RESULTS"."ANALYTE", "RESULTS"."FINAL", "RESULTS"."UNITS", "RUNS"."METHOD", "RUNS"."RUNNO", "RESULTS"."TESTNO"&lt;/P&gt;&lt;P&gt; FROM   "QM_STARLIMS_DATA_PROD"."dbo"."FOLDERS" "FOLDERS" INNER JOIN ("QM_STARLIMS_DATA_PROD"."dbo"."RUNS" "RUNS" INNER JOIN "QM_STARLIMS_DATA_PROD"."dbo"."RESULTS" "RESULTS" ON "RUNS"."RUNNO"="RESULTS"."RUNNO") ON "FOLDERS"."FOLDERNO"="RESULTS"."FOLDERNO"&lt;/P&gt;&lt;P&gt; WHERE  "RUNS"."METHOD"=N'23.014' AND "RUNS"."RUNNO"=920&lt;/P&gt;&lt;P&gt; ORDER BY "RESULTS"."ORDNO"&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2023 23:10:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/cascading-parameter-list-pulled-from-server-incomplete/qaa-p/12655703#M4747922</guid>
      <dc:creator>Privete_member__1338745</dc:creator>
      <dc:date>2023-01-24T23:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: Cascading Parameter list pulled from server incomplete</title>
      <link>https://community.sap.com/t5/technology-q-a/cascading-parameter-list-pulled-from-server-incomplete/qaa-p/12655704#M4747923</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;From what you have shared, I think the cascading parameter set is being created using List Of Values(LOV's) as part of using a Business View manager (a client tool which needs to be installed separately).&lt;/P&gt;&lt;P&gt;If that is the case, by default, there is a restriction of only 1000 values getting displayed when we check the values at report.&lt;/P&gt;&lt;P&gt;There needs to be a registry update (or an additional option as well) for this and you can check the steps mentioned in the link shared below:&lt;/P&gt;&lt;P&gt;&lt;A href="https://userapps.support.sap.com/sap/support/knowledge/en/1218588#:~:text=Create%20a%20dynamic%20LOV%20parameter%20containing%20over%201%2C000,it%20only%20display%20a%20maximum%20of%201%2C000%20values" target="test_blank"&gt;https://userapps.support.sap.com/sap/support/knowledge/en/1218588#:~:text=Create%20a%20dynamic%20LOV%20parameter%20containing%20over%201%2C000,it%20only%20display%20a%20maximum%20of%201%2C000%20values&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hope that helps!!!&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Raghavendra&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2023 14:51:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/cascading-parameter-list-pulled-from-server-incomplete/qaa-p/12655704#M4747923</guid>
      <dc:creator>raghavendra_hullur</dc:creator>
      <dc:date>2023-01-25T14:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: Cascading Parameter list pulled from server incomplete</title>
      <link>https://community.sap.com/t5/technology-q-a/cascading-parameter-list-pulled-from-server-incomplete/qaa-p/12655705#M4747924</link>
      <description>&lt;P&gt;Not effective.&lt;/P&gt;&lt;P&gt;I had the LOV updated to 5000 and 10000, but nothing happened.&lt;/P&gt;&lt;P&gt;It was updated at &lt;/P&gt;&lt;P&gt;HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\SAP BusinessObjects\Suite XI 4.0\Crystal Reports\DatabaseOptions\LOV  using the string MaxRowsetRecords and the value of 10000&lt;/P&gt;&lt;P&gt;The problem still persists.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2023 18:04:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/cascading-parameter-list-pulled-from-server-incomplete/qaa-p/12655705#M4747924</guid>
      <dc:creator>Privete_member__1338745</dc:creator>
      <dc:date>2023-01-25T18:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: Cascading Parameter list pulled from server incomplete</title>
      <link>https://community.sap.com/t5/technology-q-a/cascading-parameter-list-pulled-from-server-incomplete/qaa-p/12655706#M4747925</link>
      <description>&lt;P&gt;Edited the original question to add new information and screenshot.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 17:49:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/cascading-parameter-list-pulled-from-server-incomplete/qaa-p/12655706#M4747925</guid>
      <dc:creator>Privete_member__1338745</dc:creator>
      <dc:date>2023-01-26T17:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: Cascading Parameter list pulled from server incomplete</title>
      <link>https://community.sap.com/t5/technology-q-a/cascading-parameter-list-pulled-from-server-incomplete/qaa-p/12655707#M4747926</link>
      <description>&lt;P&gt;@&lt;SPAN class="mention-scrubbed"&gt;raghavendra.hullur&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;It seems you were correct about the problem, but the article you referenced gave the wrong place for the correction.&lt;/P&gt;&lt;P&gt;After poking around more, I found the right place to put the LOV reference. There are 3 places in my registry that are all very similar:  &lt;/P&gt;&lt;P&gt;(Not the correct place)&lt;/P&gt;&lt;P&gt;HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Crystal Reports\DatabaseOptions \LOV &lt;/P&gt;&lt;P&gt;(Also not the correct place)&lt;/P&gt;&lt;P&gt;HKEY_CURRENT_USER\SOFTWARE\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Crystal Reports\DatabaseOptions\LOV&lt;/P&gt;&lt;P&gt;(Finally, this one worked!)&lt;/P&gt;&lt;P&gt;HKEY_CURRENT_USER\SOFTWARE\SAP BusinessObjects\Suite XI 4.0\Crystal Reports\DatabaseOptions\LOV&lt;/P&gt;&lt;P&gt;Note: The final part of the address \LOV had to be created by right click and selecting "New Key." After the new key is made, then I added a new string value (again right click and select "String Value") and named the string "MaxRowsetRecrods" and gave it the value 10000.&lt;/P&gt;&lt;P&gt;Also note: My way to tell it was the correct registry address was the folder "DatabaseOptions" was filled with many different entries, (approximately 40+ in the folder).  At the &lt;U&gt;incorrect &lt;/U&gt;registry addresses, "DatabaseOptions" only had  one or two entries.  &lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 21:29:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/cascading-parameter-list-pulled-from-server-incomplete/qaa-p/12655707#M4747926</guid>
      <dc:creator>Privete_member__1338745</dc:creator>
      <dc:date>2023-01-26T21:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: Cascading Parameter list pulled from server incomplete</title>
      <link>https://community.sap.com/t5/technology-q-a/cascading-parameter-list-pulled-from-server-incomplete/qaa-p/12655708#M4747927</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Probably the link I shared is not for the Crystal version you are using. We had this issue with Crystal Reports 2020 and one of our Admin guys resolved the issue using the link shared without much info on the steps they followed.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Anyways, glad that the link shared, gave some inputs to you to explore further and resolve your issue and I am sure the options you explored will help someone with similar issue in future.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Have a good weekend &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Raghavendra&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jan 2023 08:01:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/cascading-parameter-list-pulled-from-server-incomplete/qaa-p/12655708#M4747927</guid>
      <dc:creator>raghavendra_hullur</dc:creator>
      <dc:date>2023-01-27T08:01:06Z</dc:date>
    </item>
  </channel>
</rss>

