diff --git a/tackerclient/osc/v1/vnflcm/vnflcm_op_occs.py b/tackerclient/osc/v1/vnflcm/vnflcm_op_occs.py
index c7223f88..0665a563 100644
--- a/tackerclient/osc/v1/vnflcm/vnflcm_op_occs.py
+++ b/tackerclient/osc/v1/vnflcm/vnflcm_op_occs.py
@@ -242,9 +242,12 @@ class ListVnfLcmOp(command.Lister):
         )
         return parser
 
-    def get_attributes(self):
+    def get_attributes(self, exclude=None):
         """Get attributes.
 
+        Args:
+            exclude([exclude]): a list of fields which needs to exclude.
+
         Returns:
             attributes([attributes]): a list of table entry definitions.
             Each entry should be a tuple consisting of
@@ -270,10 +273,13 @@ class ListVnfLcmOp(command.Lister):
         ]
 
         attributes = []
-        for field in fields:
-            attributes.extend([(field['key'], field['value'],
-                              tacker_osc_utils.LIST_BOTH)])
+        if exclude is None:
+            exclude = []
 
+        for field in fields:
+            if field['value'] not in exclude:
+                attributes.extend([(field['key'], field['value'],
+                                  tacker_osc_utils.LIST_BOTH)])
         return tuple(attributes)
 
     def take_action(self, parsed_args):
@@ -301,7 +307,7 @@ class ListVnfLcmOp(command.Lister):
         client = self.app.client_manager.tackerclient
         vnflcm_op_occs = client.list_vnf_lcm_op_occs(**params)
         headers, columns = tacker_osc_utils.get_column_definitions(
-            self.get_attributes(),
+            self.get_attributes(exclude=exclude_fields),
             long_listing=True)
 
         dictionary_properties = (utils.get_dict_properties(
diff --git a/tackerclient/tests/unit/osc/v1/test_vnflcm_op_occs.py b/tackerclient/tests/unit/osc/v1/test_vnflcm_op_occs.py
index 59ef4562..b75a76fa 100644
--- a/tackerclient/tests/unit/osc/v1/test_vnflcm_op_occs.py
+++ b/tackerclient/tests/unit/osc/v1/test_vnflcm_op_occs.py
@@ -26,7 +26,7 @@ from tackerclient.tests.unit.osc.v1.fixture_data import client
 from tackerclient.tests.unit.osc.v1 import vnflcm_op_occs_fakes
 
 
-def _get_columns_vnflcm_op_occs(action='show'):
+def _get_columns_vnflcm_op_occs(action='show', parameter=None):
 
     if action == 'fail':
         return ['ID', 'Operation State', 'State Entered Time',
@@ -34,8 +34,11 @@ def _get_columns_vnflcm_op_occs(action='show'):
                 'Is Automatic Invocation', 'Is Cancel Pending',
                 'Error', 'Links']
     elif action == 'list':
-        return ['ID', 'Operation State', 'VNF Instance ID',
-                'Operation']
+        if parameter is not None:
+            return ['ID', 'Operation']
+        else:
+            return ['ID', 'Operation State', 'VNF Instance ID',
+                    'Operation']
     else:
         return ['ID', 'Operation State', 'State Entered Time',
                 'Start Time', 'VNF Instance ID', 'Grant ID',
@@ -496,6 +499,36 @@ class TestListVnfLcmOp(TestVnfLcm):
                           self.list_vnflcm_op_occ.take_action,
                           parsed_args)
 
+    def test_take_action_with_exclude_fields(self):
+
+        vnflcm_op_occs_obj = vnflcm_op_occs_fakes.create_vnflcm_op_occs(
+            count=3)
+        parsed_args = self.check_parser(
+            self.list_vnflcm_op_occ,
+            ["--exclude-fields", 'VNF Instance ID,Operation State'],
+            [('exclude_fields', 'VNF Instance ID,Operation State')])
+        self.requests_mock.register_uri(
+            'GET', os.path.join(
+                self.url,
+                'vnflcm/v1/vnf_lcm_op_occs?'
+                'exclude-fields=VNF Instance ID,Operation State'),
+            json=vnflcm_op_occs_obj, headers=self.header)
+        actual_columns, data = self.list_vnflcm_op_occ.take_action(parsed_args)
+        headers, columns = tacker_osc_utils.get_column_definitions(
+            self.list_vnflcm_op_occ.get_attributes(
+                exclude=['VNF Instance ID', 'Operation State']),
+            long_listing=True)
+        expected_data = []
+        for vnflcm_op_occ_obj_idx in vnflcm_op_occs_obj:
+            expected_data.append(
+                vnflcm_op_occs_fakes.get_vnflcm_op_occ_data(
+                    vnflcm_op_occ_obj_idx, columns=columns))
+
+        self.assertCountEqual(_get_columns_vnflcm_op_occs(
+            action='list', parameter="exclude_fields"),
+            actual_columns)
+        self.assertListItemsEqual(expected_data, list(data))
+
 
 class TestShowVnfLcmOp(TestVnfLcm):