There are masses of columns in the List View export. Where do they all come from?

There are masses of columns in the List View export. What are these - are they the entire universe of fields for that module? Many of these are not displayed in our module view (as they're not useful to us),  and we would get rid of these from our export list if we could.

Parents
  • Hello Sarah Pratt,

    You can not do this from admin->studio .

    If you don't know the technical field name of the fields then you should go to admin -> studio->your_module->fields.

    You need to do development for this. You need to go to following path add the file.

    <your_sugar_directory>/custom/Extension/modules/<your_module_name>/Ext/Vardefs/<your_file_name.php>

    Add the following line into that file.

    $dictionary['<your_object_name>']['fields']['<your_field_name>']['exportable']=false;

    If you still have any questions then please let me know.

    Thanks
    Prashant Patel
    Certified SugarCRM Developer Specialist
    WhatsApp : +91 9016 73 9026
    Email : prashant13290@gmail.com

Reply
  • Hello Sarah Pratt,

    You can not do this from admin->studio .

    If you don't know the technical field name of the fields then you should go to admin -> studio->your_module->fields.

    You need to do development for this. You need to go to following path add the file.

    <your_sugar_directory>/custom/Extension/modules/<your_module_name>/Ext/Vardefs/<your_file_name.php>

    Add the following line into that file.

    $dictionary['<your_object_name>']['fields']['<your_field_name>']['exportable']=false;

    If you still have any questions then please let me know.

    Thanks
    Prashant Patel
    Certified SugarCRM Developer Specialist
    WhatsApp : +91 9016 73 9026
    Email : prashant13290@gmail.com

Children