<?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 Dimensionlimitation in MashUp Tables? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Dimensionlimitation-in-MashUp-Tables/m-p/1990836#M81955</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I want to create a table using a mashup hypercube.&lt;/P&gt;
&lt;P&gt;Which seems to work to a certain degree.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I create my hypercube array it seems to work fine up to a width (number of rows) of 5.&lt;/P&gt;
&lt;P&gt;I console.logged the mashup function and I get an array in the log, for the hypercube function if I have a dimension of 5 and lower. If I try to increase this, no array is a result in the console.log, although the dimension seems to be all right.&lt;/P&gt;
&lt;P&gt;Subsequently, If I undo to out-comment&amp;nbsp; of the other rows of my table, nothing gets visualized.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a limitation of dimensions, or&amp;nbsp; did I miss something else?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am glad for any feedback!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR, max&lt;/P&gt;
&lt;P&gt;please find below my code:&lt;/P&gt;
&lt;P&gt;/*&lt;BR /&gt;* Basic responsive mashup template&lt;BR /&gt;* @owner Enter you name here (itMRu)&lt;BR /&gt;*/&lt;BR /&gt;/*&lt;BR /&gt;* Fill in host and port for Qlik engine&lt;BR /&gt;*/&lt;BR /&gt;var prefix = window.location.pathname.substr( 0, window.location.pathname.toLowerCase().lastIndexOf( "/extensions" ) + 1 );&lt;BR /&gt;var config = {&lt;BR /&gt;host: window.location.hostname,&lt;BR /&gt;prefix: prefix,&lt;BR /&gt;port: window.location.port,&lt;BR /&gt;isSecure: window.location.protocol === "https:"&lt;BR /&gt;};&lt;BR /&gt;require.config( {&lt;BR /&gt;baseUrl: ( config.isSecure ? "https://" : "http://" ) + config.host + (config.port ? ":" + config.port : "") + config.prefix + "resources"&lt;BR /&gt;} );&lt;/P&gt;
&lt;P&gt;require( ["js/qlik"], function ( qlik ) {&lt;BR /&gt;qlik.on( "error", function ( error ) {&lt;BR /&gt;$( '#popupText' ).append( error.message + "&amp;lt;br&amp;gt;" );&lt;BR /&gt;$( '#popup' ).fadeIn( 1000 );&lt;BR /&gt;} );&lt;BR /&gt;$( "#closePopup" ).click( function () {&lt;BR /&gt;$( '#popup' ).hide();&lt;BR /&gt;} );&lt;/P&gt;
&lt;P&gt;//callbacks -- inserted here --&lt;BR /&gt;function customTable(reply, app){&lt;BR /&gt;console.log(reply)&lt;BR /&gt;$("#customTable").empty();&lt;BR /&gt;$.each(reply.qHyperCube.qDataPages[0].qMatrix,function(k,val){&lt;BR /&gt;//console.log(val[0].qText,val[1].qText,val[8].qText)&lt;BR /&gt;var html='&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Datum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;'+val[1].qText+'&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;'&lt;BR /&gt;+'&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Gruppe&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;'+val[0].qText+'&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;'&lt;BR /&gt;+'&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Patient&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;'+val[2].qText+'&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;'&lt;BR /&gt;+'&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Abteilung&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;'+val[3].qText+'&amp;lt;/td&amp;gt;'+'&amp;lt;th&amp;gt;Eingriff&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;'+val[4].qText+'&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;'&lt;BR /&gt;//+'&amp;lt;th&amp;gt;ANÄ-Art&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;'+val[5].qText+'&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;'&lt;BR /&gt;+'&amp;lt;tr&amp;gt;&amp;lt;td colspan=5&amp;gt;-&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;'&lt;BR /&gt;//+'&amp;lt;td&amp;gt;'+val[5].qText+'&amp;lt;/td&amp;gt;'&lt;BR /&gt;//+'&amp;lt;td&amp;gt;'+val[6].qText+'&amp;lt;/td&amp;gt;'&lt;BR /&gt;//+'&amp;lt;td&amp;gt;'+val[7].qText+'&amp;lt;/td&amp;gt;'&lt;BR /&gt;//+'&amp;lt;td&amp;gt;'+val[8].qText+'&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;'&lt;BR /&gt;$("#customTable").append(html);&lt;BR /&gt;console.log('Länge='+val.length);&lt;BR /&gt;});&lt;BR /&gt;}&lt;BR /&gt;//open apps -- inserted here --&lt;BR /&gt;var app = qlik.openApp('30f3e9da-6e63-4ec4-a5f8-85ebab527f0b', config);&lt;/P&gt;
&lt;P&gt;//get objects -- inserted here --&lt;BR /&gt;app.getObject('QV01','mjyWcd');&lt;BR /&gt;app.getObject('QV02','LPVPHm');&lt;BR /&gt;//create cubes and lists -- inserted here --&lt;BR /&gt;app.createCube({&lt;BR /&gt;"qInitialDataFetch": [&lt;BR /&gt;{&lt;BR /&gt;"qHeight": 2000,&lt;BR /&gt;"qWidth": 5&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"qDimensions": [&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qFieldDefs": [&lt;BR /&gt;"OPGruppe"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"qNullSuppression": true,&lt;BR /&gt;"qOtherTotalSpec": {&lt;BR /&gt;"qOtherMode": "OTHER_OFF",&lt;BR /&gt;"qSuppressOther": true,&lt;BR /&gt;"qOtherSortMode": "OTHER_SORT_DESCENDING",&lt;BR /&gt;"qOtherCounted": {&lt;BR /&gt;"qv": "5"&lt;BR /&gt;},&lt;BR /&gt;"qOtherLimitMode": "OTHER_GE_LIMIT"&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qFieldDefs": [&lt;BR /&gt;"geplantesOPDatum"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"qNullSuppression": true,&lt;BR /&gt;"qOtherTotalSpec": {&lt;BR /&gt;"qOtherMode": "OTHER_OFF",&lt;BR /&gt;"qSuppressOther": true,&lt;BR /&gt;"qOtherSortMode": "OTHER_SORT_DESCENDING",&lt;BR /&gt;"qOtherCounted": {&lt;BR /&gt;"qv": "5"&lt;BR /&gt;},&lt;BR /&gt;"qOtherLimitMode": "OTHER_GE_LIMIT"&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qFieldDefs": [&lt;BR /&gt;"Patient"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"qNullSuppression": true,&lt;BR /&gt;"qOtherTotalSpec": {&lt;BR /&gt;"qOtherMode": "OTHER_OFF",&lt;BR /&gt;"qSuppressOther": true,&lt;BR /&gt;"qOtherSortMode": "OTHER_SORT_DESCENDING",&lt;BR /&gt;"qOtherCounted": {&lt;BR /&gt;"qv": "5"&lt;BR /&gt;},&lt;BR /&gt;"qOtherLimitMode": "OTHER_GE_LIMIT"&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qFieldDefs": [&lt;BR /&gt;"Abteilung"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"qNullSuppression": true,&lt;BR /&gt;"qOtherTotalSpec": {&lt;BR /&gt;"qOtherMode": "OTHER_OFF",&lt;BR /&gt;"qSuppressOther": true,&lt;BR /&gt;"qOtherSortMode": "OTHER_SORT_DESCENDING",&lt;BR /&gt;"qOtherCounted": {&lt;BR /&gt;"qv": "5"&lt;BR /&gt;},&lt;BR /&gt;"qOtherLimitMode": "OTHER_GE_LIMIT"&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qFieldDefs": [&lt;BR /&gt;"Eingriff"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"qNullSuppression": true,&lt;BR /&gt;"qOtherTotalSpec": {&lt;BR /&gt;"qOtherMode": "OTHER_OFF",&lt;BR /&gt;"qSuppressOther": true,&lt;BR /&gt;"qOtherSortMode": "OTHER_SORT_DESCENDING",&lt;BR /&gt;"qOtherCounted": {&lt;BR /&gt;"qv": "5"&lt;BR /&gt;},&lt;BR /&gt;"qOtherLimitMode": "OTHER_GE_LIMIT"&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qFieldDefs": [&lt;BR /&gt;"ASA"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"qNullSuppression": true,&lt;BR /&gt;"qOtherTotalSpec": {&lt;BR /&gt;"qOtherMode": "OTHER_OFF",&lt;BR /&gt;"qSuppressOther": true,&lt;BR /&gt;"qOtherSortMode": "OTHER_SORT_DESCENDING",&lt;BR /&gt;"qOtherCounted": {&lt;BR /&gt;"qv": "5"&lt;BR /&gt;},&lt;BR /&gt;"qOtherLimitMode": "OTHER_GE_LIMIT"&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qFieldDefs": [&lt;BR /&gt;"ASA"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"qNullSuppression": true,&lt;BR /&gt;"qOtherTotalSpec": {&lt;BR /&gt;"qOtherMode": "OTHER_OFF",&lt;BR /&gt;"qSuppressOther": true,&lt;BR /&gt;"qOtherSortMode": "OTHER_SORT_DESCENDING",&lt;BR /&gt;"qOtherCounted": {&lt;BR /&gt;"qv": "5"&lt;BR /&gt;},&lt;BR /&gt;"qOtherLimitMode": "OTHER_GE_LIMIT"&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qFieldDefs": [&lt;BR /&gt;"Freigabestatus"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"qNullSuppression": true,&lt;BR /&gt;"qOtherTotalSpec": {&lt;BR /&gt;"qOtherMode": "OTHER_OFF",&lt;BR /&gt;"qSuppressOther": true,&lt;BR /&gt;"qOtherSortMode": "OTHER_SORT_DESCENDING",&lt;BR /&gt;"qOtherCounted": {&lt;BR /&gt;"qv": "5"&lt;BR /&gt;},&lt;BR /&gt;"qOtherLimitMode": "OTHER_GE_LIMIT"&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qFieldDefs": [&lt;BR /&gt;"Operakommentar"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"qNullSuppression": true,&lt;BR /&gt;"qOtherTotalSpec": {&lt;BR /&gt;"qOtherMode": "OTHER_OFF",&lt;BR /&gt;"qSuppressOther": true,&lt;BR /&gt;"qOtherSortMode": "OTHER_SORT_DESCENDING",&lt;BR /&gt;"qOtherCounted": {&lt;BR /&gt;"qv": "5"&lt;BR /&gt;},&lt;BR /&gt;"qOtherLimitMode": "OTHER_GE_LIMIT"&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"qMeasures": [&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qDef": "id"&lt;BR /&gt;},&lt;BR /&gt;"qLabel": "id",&lt;BR /&gt;"qLibraryId": null,&lt;BR /&gt;"qSortBy": {&lt;BR /&gt;"qSortByState": 0,&lt;BR /&gt;"qSortByFrequency": 0,&lt;BR /&gt;"qSortByNumeric": 0,&lt;BR /&gt;"qSortByAscii": 1,&lt;BR /&gt;"qSortByLoadOrder": 0,&lt;BR /&gt;"qSortByExpression": 0,&lt;BR /&gt;"qExpression": {&lt;BR /&gt;"qv": " "&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"qSuppressZero": false,&lt;BR /&gt;"qSuppressMissing": false,&lt;BR /&gt;"qMode": "S",&lt;BR /&gt;"qInterColumnSortOrder": [],&lt;BR /&gt;"qStateName": "$"&lt;BR /&gt;},customTable);&lt;BR /&gt;} );&lt;/P&gt;</description>
    <pubDate>Mon, 10 Oct 2022 13:55:40 GMT</pubDate>
    <dc:creator>iskeam</dc:creator>
    <dc:date>2022-10-10T13:55:40Z</dc:date>
    <item>
      <title>Dimensionlimitation in MashUp Tables?</title>
      <link>https://community.qlik.com/t5/App-Development/Dimensionlimitation-in-MashUp-Tables/m-p/1990836#M81955</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I want to create a table using a mashup hypercube.&lt;/P&gt;
&lt;P&gt;Which seems to work to a certain degree.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I create my hypercube array it seems to work fine up to a width (number of rows) of 5.&lt;/P&gt;
&lt;P&gt;I console.logged the mashup function and I get an array in the log, for the hypercube function if I have a dimension of 5 and lower. If I try to increase this, no array is a result in the console.log, although the dimension seems to be all right.&lt;/P&gt;
&lt;P&gt;Subsequently, If I undo to out-comment&amp;nbsp; of the other rows of my table, nothing gets visualized.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a limitation of dimensions, or&amp;nbsp; did I miss something else?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am glad for any feedback!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR, max&lt;/P&gt;
&lt;P&gt;please find below my code:&lt;/P&gt;
&lt;P&gt;/*&lt;BR /&gt;* Basic responsive mashup template&lt;BR /&gt;* @owner Enter you name here (itMRu)&lt;BR /&gt;*/&lt;BR /&gt;/*&lt;BR /&gt;* Fill in host and port for Qlik engine&lt;BR /&gt;*/&lt;BR /&gt;var prefix = window.location.pathname.substr( 0, window.location.pathname.toLowerCase().lastIndexOf( "/extensions" ) + 1 );&lt;BR /&gt;var config = {&lt;BR /&gt;host: window.location.hostname,&lt;BR /&gt;prefix: prefix,&lt;BR /&gt;port: window.location.port,&lt;BR /&gt;isSecure: window.location.protocol === "https:"&lt;BR /&gt;};&lt;BR /&gt;require.config( {&lt;BR /&gt;baseUrl: ( config.isSecure ? "https://" : "http://" ) + config.host + (config.port ? ":" + config.port : "") + config.prefix + "resources"&lt;BR /&gt;} );&lt;/P&gt;
&lt;P&gt;require( ["js/qlik"], function ( qlik ) {&lt;BR /&gt;qlik.on( "error", function ( error ) {&lt;BR /&gt;$( '#popupText' ).append( error.message + "&amp;lt;br&amp;gt;" );&lt;BR /&gt;$( '#popup' ).fadeIn( 1000 );&lt;BR /&gt;} );&lt;BR /&gt;$( "#closePopup" ).click( function () {&lt;BR /&gt;$( '#popup' ).hide();&lt;BR /&gt;} );&lt;/P&gt;
&lt;P&gt;//callbacks -- inserted here --&lt;BR /&gt;function customTable(reply, app){&lt;BR /&gt;console.log(reply)&lt;BR /&gt;$("#customTable").empty();&lt;BR /&gt;$.each(reply.qHyperCube.qDataPages[0].qMatrix,function(k,val){&lt;BR /&gt;//console.log(val[0].qText,val[1].qText,val[8].qText)&lt;BR /&gt;var html='&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Datum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;'+val[1].qText+'&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;'&lt;BR /&gt;+'&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Gruppe&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;'+val[0].qText+'&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;'&lt;BR /&gt;+'&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Patient&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;'+val[2].qText+'&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;'&lt;BR /&gt;+'&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Abteilung&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;'+val[3].qText+'&amp;lt;/td&amp;gt;'+'&amp;lt;th&amp;gt;Eingriff&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;'+val[4].qText+'&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;'&lt;BR /&gt;//+'&amp;lt;th&amp;gt;ANÄ-Art&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;'+val[5].qText+'&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;'&lt;BR /&gt;+'&amp;lt;tr&amp;gt;&amp;lt;td colspan=5&amp;gt;-&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;'&lt;BR /&gt;//+'&amp;lt;td&amp;gt;'+val[5].qText+'&amp;lt;/td&amp;gt;'&lt;BR /&gt;//+'&amp;lt;td&amp;gt;'+val[6].qText+'&amp;lt;/td&amp;gt;'&lt;BR /&gt;//+'&amp;lt;td&amp;gt;'+val[7].qText+'&amp;lt;/td&amp;gt;'&lt;BR /&gt;//+'&amp;lt;td&amp;gt;'+val[8].qText+'&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;'&lt;BR /&gt;$("#customTable").append(html);&lt;BR /&gt;console.log('Länge='+val.length);&lt;BR /&gt;});&lt;BR /&gt;}&lt;BR /&gt;//open apps -- inserted here --&lt;BR /&gt;var app = qlik.openApp('30f3e9da-6e63-4ec4-a5f8-85ebab527f0b', config);&lt;/P&gt;
&lt;P&gt;//get objects -- inserted here --&lt;BR /&gt;app.getObject('QV01','mjyWcd');&lt;BR /&gt;app.getObject('QV02','LPVPHm');&lt;BR /&gt;//create cubes and lists -- inserted here --&lt;BR /&gt;app.createCube({&lt;BR /&gt;"qInitialDataFetch": [&lt;BR /&gt;{&lt;BR /&gt;"qHeight": 2000,&lt;BR /&gt;"qWidth": 5&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"qDimensions": [&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qFieldDefs": [&lt;BR /&gt;"OPGruppe"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"qNullSuppression": true,&lt;BR /&gt;"qOtherTotalSpec": {&lt;BR /&gt;"qOtherMode": "OTHER_OFF",&lt;BR /&gt;"qSuppressOther": true,&lt;BR /&gt;"qOtherSortMode": "OTHER_SORT_DESCENDING",&lt;BR /&gt;"qOtherCounted": {&lt;BR /&gt;"qv": "5"&lt;BR /&gt;},&lt;BR /&gt;"qOtherLimitMode": "OTHER_GE_LIMIT"&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qFieldDefs": [&lt;BR /&gt;"geplantesOPDatum"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"qNullSuppression": true,&lt;BR /&gt;"qOtherTotalSpec": {&lt;BR /&gt;"qOtherMode": "OTHER_OFF",&lt;BR /&gt;"qSuppressOther": true,&lt;BR /&gt;"qOtherSortMode": "OTHER_SORT_DESCENDING",&lt;BR /&gt;"qOtherCounted": {&lt;BR /&gt;"qv": "5"&lt;BR /&gt;},&lt;BR /&gt;"qOtherLimitMode": "OTHER_GE_LIMIT"&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qFieldDefs": [&lt;BR /&gt;"Patient"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"qNullSuppression": true,&lt;BR /&gt;"qOtherTotalSpec": {&lt;BR /&gt;"qOtherMode": "OTHER_OFF",&lt;BR /&gt;"qSuppressOther": true,&lt;BR /&gt;"qOtherSortMode": "OTHER_SORT_DESCENDING",&lt;BR /&gt;"qOtherCounted": {&lt;BR /&gt;"qv": "5"&lt;BR /&gt;},&lt;BR /&gt;"qOtherLimitMode": "OTHER_GE_LIMIT"&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qFieldDefs": [&lt;BR /&gt;"Abteilung"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"qNullSuppression": true,&lt;BR /&gt;"qOtherTotalSpec": {&lt;BR /&gt;"qOtherMode": "OTHER_OFF",&lt;BR /&gt;"qSuppressOther": true,&lt;BR /&gt;"qOtherSortMode": "OTHER_SORT_DESCENDING",&lt;BR /&gt;"qOtherCounted": {&lt;BR /&gt;"qv": "5"&lt;BR /&gt;},&lt;BR /&gt;"qOtherLimitMode": "OTHER_GE_LIMIT"&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qFieldDefs": [&lt;BR /&gt;"Eingriff"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"qNullSuppression": true,&lt;BR /&gt;"qOtherTotalSpec": {&lt;BR /&gt;"qOtherMode": "OTHER_OFF",&lt;BR /&gt;"qSuppressOther": true,&lt;BR /&gt;"qOtherSortMode": "OTHER_SORT_DESCENDING",&lt;BR /&gt;"qOtherCounted": {&lt;BR /&gt;"qv": "5"&lt;BR /&gt;},&lt;BR /&gt;"qOtherLimitMode": "OTHER_GE_LIMIT"&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qFieldDefs": [&lt;BR /&gt;"ASA"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"qNullSuppression": true,&lt;BR /&gt;"qOtherTotalSpec": {&lt;BR /&gt;"qOtherMode": "OTHER_OFF",&lt;BR /&gt;"qSuppressOther": true,&lt;BR /&gt;"qOtherSortMode": "OTHER_SORT_DESCENDING",&lt;BR /&gt;"qOtherCounted": {&lt;BR /&gt;"qv": "5"&lt;BR /&gt;},&lt;BR /&gt;"qOtherLimitMode": "OTHER_GE_LIMIT"&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qFieldDefs": [&lt;BR /&gt;"ASA"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"qNullSuppression": true,&lt;BR /&gt;"qOtherTotalSpec": {&lt;BR /&gt;"qOtherMode": "OTHER_OFF",&lt;BR /&gt;"qSuppressOther": true,&lt;BR /&gt;"qOtherSortMode": "OTHER_SORT_DESCENDING",&lt;BR /&gt;"qOtherCounted": {&lt;BR /&gt;"qv": "5"&lt;BR /&gt;},&lt;BR /&gt;"qOtherLimitMode": "OTHER_GE_LIMIT"&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qFieldDefs": [&lt;BR /&gt;"Freigabestatus"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"qNullSuppression": true,&lt;BR /&gt;"qOtherTotalSpec": {&lt;BR /&gt;"qOtherMode": "OTHER_OFF",&lt;BR /&gt;"qSuppressOther": true,&lt;BR /&gt;"qOtherSortMode": "OTHER_SORT_DESCENDING",&lt;BR /&gt;"qOtherCounted": {&lt;BR /&gt;"qv": "5"&lt;BR /&gt;},&lt;BR /&gt;"qOtherLimitMode": "OTHER_GE_LIMIT"&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qFieldDefs": [&lt;BR /&gt;"Operakommentar"&lt;BR /&gt;]&lt;BR /&gt;},&lt;BR /&gt;"qNullSuppression": true,&lt;BR /&gt;"qOtherTotalSpec": {&lt;BR /&gt;"qOtherMode": "OTHER_OFF",&lt;BR /&gt;"qSuppressOther": true,&lt;BR /&gt;"qOtherSortMode": "OTHER_SORT_DESCENDING",&lt;BR /&gt;"qOtherCounted": {&lt;BR /&gt;"qv": "5"&lt;BR /&gt;},&lt;BR /&gt;"qOtherLimitMode": "OTHER_GE_LIMIT"&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"qMeasures": [&lt;BR /&gt;{&lt;BR /&gt;"qDef": {&lt;BR /&gt;"qDef": "id"&lt;BR /&gt;},&lt;BR /&gt;"qLabel": "id",&lt;BR /&gt;"qLibraryId": null,&lt;BR /&gt;"qSortBy": {&lt;BR /&gt;"qSortByState": 0,&lt;BR /&gt;"qSortByFrequency": 0,&lt;BR /&gt;"qSortByNumeric": 0,&lt;BR /&gt;"qSortByAscii": 1,&lt;BR /&gt;"qSortByLoadOrder": 0,&lt;BR /&gt;"qSortByExpression": 0,&lt;BR /&gt;"qExpression": {&lt;BR /&gt;"qv": " "&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"qSuppressZero": false,&lt;BR /&gt;"qSuppressMissing": false,&lt;BR /&gt;"qMode": "S",&lt;BR /&gt;"qInterColumnSortOrder": [],&lt;BR /&gt;"qStateName": "$"&lt;BR /&gt;},customTable);&lt;BR /&gt;} );&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 13:55:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Dimensionlimitation-in-MashUp-Tables/m-p/1990836#M81955</guid>
      <dc:creator>iskeam</dc:creator>
      <dc:date>2022-10-10T13:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: Dimensionlimitation in MashUp Tables?</title>
      <link>https://community.qlik.com/t5/App-Development/Dimensionlimitation-in-MashUp-Tables/m-p/1990856#M81959</link>
      <description>&lt;P&gt;Nvm, I did change the rows in"qHeight" to 200 and now the arrays, rows, table is being presented as intended&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 14:39:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Dimensionlimitation-in-MashUp-Tables/m-p/1990856#M81959</guid>
      <dc:creator>iskeam</dc:creator>
      <dc:date>2022-10-10T14:39:40Z</dc:date>
    </item>
  </channel>
</rss>

