diff --git a/SOL003/VNFLifecycleManagement-API/VnfLcmMntOperationKeywords.robot b/SOL003/VNFLifecycleManagement-API/VnfLcmMntOperationKeywords.robot
index 874fd3bba022f641fc4aff232ffe8f510af6bdde..eef1c2420641cc236750e14e9250f4fd03fdccd9 100644
--- a/SOL003/VNFLifecycleManagement-API/VnfLcmMntOperationKeywords.robot
+++ b/SOL003/VNFLifecycleManagement-API/VnfLcmMntOperationKeywords.robot
@@ -376,10 +376,9 @@ POST Create a new vnfInstance
     ${product_name}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.product_name}
     ${software_version}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.software_version}
     ${descriptor_version}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.descriptor_version}
-    ${configurable_properties}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.configurable_properties}
     ${flavour_id}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.flavour_id}
     ${template}=    Get File    jsons/createVnfRequest.json
-    ${body}=        Format String   ${template}     vnfdId=${descriptor_id}    vnfProvider=${provider}    vnfProductName=${product_name}    vnfSoftwareVersion=${software_version}    vnfdVersion= ${descriptor_version}    vnfConfigurableProperties=${configurable_properties}    flavourId=${flavour_id}
+    ${body}=        Format String   ${template}     vnfdId=${descriptor_id}    vnfProvider=${provider}    vnfProductName=${product_name}    vnfSoftwareVersion=${software_version}    vnfdVersion= ${descriptor_version}    flavourId=${flavour_id}
     Post    ${apiRoot}/${apiName}/${apiMajorVersion}/vnf_instances    ${body}
     ${outputResponse}=    Output    response
 	Set Global Variable    ${response}    ${outputResponse} 	
@@ -1210,7 +1209,6 @@ Parse SOL001
     ${product_name}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.product_name}
     ${software_version}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.software_version}
     ${descriptor_version}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.descriptor_version}
-    ${configurable_properties}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.configurable_properties}
     ${flavour_id}=    Get Variable Value    ${topology_template.node_templates.${vnfKey}.properties.flavour_id}
     
     Should Be Equal As Strings    ${response['body']['vnfdId']}    ${descriptor_id}
@@ -1218,7 +1216,6 @@ Parse SOL001
     Should Be Equal As Strings    ${response['body']['vnfProductName']}    ${product_name}
     Should Be Equal As Strings    ${response['body']['vnfSoftwareVesion']}    ${software_version}
     Should Be Equal As Strings    ${response['body']['vnfdVersion']}    ${descriptor_version}
-    Should Be Equal As Strings    ${response['body']['vnfConfigurableProperties']}    ${configurable_properties}
     Should Be Equal As Strings    ${response['body']['instantiatedVnfInfo']['flavourId']}    ${flavour_id}
     
 Parse SOL006