Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
MGrob
Active Contributor

Introduction

If an Analysis Item displays a large number of input ready cells and you load or refresh the template the spinning wheel can stop for up to a minute until the expected data is shown. Also the "com.sap.ip.bi.rig.Planning" and "com.sap.ip.bi.rig.CopyPaste" modules can't cope with that and a huge perfromance impact is expirienced. Both modules are described in Analysis Web Item Parameter Modification.

com.sap.ip.bi.rig.Input

The module com.sap.ip.bi.rig.Input replaces both above ones. The "copy&paste" functionality got enhanced and supports now also "CTRL-C" and "CTRL-V".

The two modules "RIG Planning" and "RIG Copy & Paste" can be replaced with the code below. The value ENABLE_DYNAMIC_INPUT improves perfromance significantly if a huge number of input ready cells are shown or copy/pasted as the rendering performance is now on clientside.


<bi:MODIFICATION type="CHOICE" value="MOD_SINGLE_MODULE" >

  <bi:MOD_SINGLE_MODULE type="COMPOSITE" >

    <bi:ACTIVE value="X" />

      <bi:MOD_SELECT type="CHOICE" value="MOD_GENERIC_MODULE" >

        <bi:MOD_GENERIC_MODULE type="COMPOSITE" >

          <bi:MOD_REFERENCE value="com.sap.ip.bi.rig.Input" />

            <bi:MOD_PARAMETER_LIST type="ORDEREDLIST" >

              <bi:MOD_PARAMETER index="1" type="COMPOSITE" >

                 <bi:MOD_PARAM_NAME value="ENABLE_DYNAMIC_INPUT">

                <bi:MOD_PARAM_VALUE type="CHOICE" value="BOOLEAN" >

                  <bi:BOOLEAN value="X" />

               </bi:MOD_PARAM_VALUE>

           </bi:MOD_PARAMETER>

        </bi:MOD_PARAMETER_LIST>

      </bi:MOD_GENERIC_MODULE>

    </bi:MOD_SELECT>

  </bi:MOD_SINGLE_MODULE>

</bi:MODIFICATION>

The following parameters are available. Those are decribed in  note 1644770.

  • INCLUDE
  • ENABLE_DYNAMIC_INPUT
  • RESTORE_CELL_FOCUS
  • RESTORE_CELL_FOCUS_CUSTOM_FUNCTION
  • DISABLE_SELECT_ON_CLICK

If you plan to copy/paste a huge amount of cells you need to increase the MaxParameterCount described in Note 1678387

3 Comments
Labels in this area