-1

Can someone guide me in hiding Sharing and Author Columns in Manage Variants pop-up of VariantManagement Control in SAP Fiori.

enter image description here

Follow up 1 :

XML Code:

<v:VariantManagement variantItems="{variantsModel>/Variants}" standardItemText="{variantsModel>/DefaultVariant}" select="onSelectVariant" save="onSaveAsVariant" enabled="true" manage="onManageVariant" showExecuteOnSelection="false" id="variantManagement" showShare="false">
<v:variantItems>
    <v:VariantItem text="{variantsModel>VariantName}"
        key="{variantsModel>VariantKey}" />
</v:variantItems>

hide Author Column

  • 2
    Please see [ask]. The idea is that you tell us what you want to do, show what you have tried, and tell us what results you got. –  Jul 05 '18 at 14:49

1 Answers1

0

You can use the property

"showShare" = "false"

Here is a sample code:

<vm:VariantManagement standardItemText="text" showShare="false"></vm:VariantManagement>
Nandan Chaturvedi
  • 1,028
  • 3
  • 16
  • 32
  • Hi @Nandan, even if try to use the above property, "showShare" = "false", in the manage variant pop-up, the Author Column persists. I've update the xml code and Screenshot for reference.Thanks in advance. – Pandu Vimal Jul 10 '18 at 11:35
  • Hi @pandu , code I have written above will only remove the sharing column. I couldn't see a reference to remove author column . – Nandan Chaturvedi Jul 10 '18 at 11:56