Value cannot be null. Parameter Name: Field

  • 16 February 2021
  • 0 replies
  • 268 views

Userlevel 4
Badge +13
 

Value cannot be null. Parameter Name: Field

kbt133537

PRODUCT
K2 blackpearl 4.7
BASED ON
K2 blackpearl 4.7
This article was created in response to a support issue logged with K2. The content may include typographical errors and may be revised at any time without notice. This article is not considered official documentation for K2 software and is provided "as is" with no warranties.
LEGACY/ARCHIVED CONTENT
This article has been archived, and/or refers to legacy products, components or features. The content in this article is offered "as is" and will no longer be updated. Archived content is provided for reference purposes only. This content does not infer that the product, component or feature is supported, or that the product, component or feature will continue to function as described herein.

Issue

The issue happens when trying to open a process inside visual studio a "value cannot be null. Parameter Name: Field" error is displayed.

Image

 

 

Symptoms

Error "Value cannot be null. Parameter Name: Field" is received.

Resolution

The culprit causing this issue was found to be an environmental field setting that needs to be set to true instead of false. We executed the below script which will return all your current environmental field and noticed that from the result based of the script execution that the "SmartObject Server" is currently set to false and should be set to true, so the customer performed the below steps to set it to true which they confirmed resolved this issue.


Script:

 

 

SELECT Environment.IsDefault,Environment.EnvironmentName ,FieldType.FriendlyName

AS "Field type" ,Field.FieldName ,Field.FieldDescription ,Field.IsDefault ,FieldValue.[FieldValue] ,CONVERT(NVARCHAR(MAX), FieldValue.CreateTime, 20)

AS CreateTime ,CONVERT(NVARCHAR(MAX), FieldValue.[ModifyTime], 20) AS [ModifyTime] ,FieldValue.[OwnerFullName] ,FieldValue.[CreatedBy] ,FieldValue.[ModifiedBy] ,Field.FieldDescription ,Field.Autodiscover ,Field.ModifiedBy AS 'Field ModifiedBy' ,CONVERT(NVARCHAR(MAX), Field.[ModifyTime], 20)

AS 'Field ModifyTime' ,FieldValue.[FieldId] ,FieldValue.[EnvironmentId]

FROM [Environment].[FieldValue] FieldValue LEFT JOIN [Environment].Field on Field.FieldId=FieldValue.FieldId LEFT JOIN Environment.FieldType ON FieldType.TypeId = Field.TypeId LEFT JOIN [Environment].Environment

ON Environment.EnvironmentId=FieldValue.EnvironmentId

ORDER BY 1 desc,2,3,4

 

Steps to Perform:

1) Navigate top K2 Workspace > Management > Management Console

2) Then expand your server > Environment Library > Templates > Default Templates > Environments > Development (as the machine the script was run on is based on a development environment)

3) Then click on Environment Fields

4) From this section locate the "SmartObject Server", select it, edit it and ensure that you tick the box for "Set as Default"

5) Now Test to see if the same issue still persists, the issue should now be fixed.


0 replies

Be the first to reply!

Reply