最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

acumatica - Expose Fields from IN Issues Screen (IN302000) to Scan and Issue Screen (IN302020) to both Web and Mobile End - Stac

programmeradmin3浏览0评论

Hi I need to copy the selector fields in issues screen (Reason Code, Project and Project Task) to the scan and issue screen because they are not exposed to this screen by default except for Reason Code.

I have managed to implement the exposure of the fields as below to the web and face one issue.

The reason code was already available as a field to expose on the web screen. The only issue is that the reason codes gets populated, but it adds the reason code automatically as a default code without showing the selector.

Moreover I have exposed this same fields to the mobile screen and don’t see any selector values for the Reason Code and cannot see the Project and Project task fields on the mobile app screen.

This is the screen logic I have used

update screen IN302020 {
update container "Issue" {
    fieldsToShow = 6  
    add field "ProjectID" {
      listPriority = 50
      listDisplayFormat = CaptionValue
   selector {
        fieldsToShow = 2
        add field "ProjectID"
        add field "Description"
      }
      pickerType = Searchable
    }
    add field "TaskID" {
      listPriority = 40
      listDisplayFormat = CaptionValue
   selector {
        fieldsToShow = 2
        add field "TaskID"
        add field "Description"
      }
      pickerType = Searchable
    }
    update field "ReasonCode" {
      listPriority = 30
   listDisplayFormat = CaptionValue
      selector {
        fieldsToShow = 2
        add field "ReasonCodeID"
        add field "Description"
      }
      pickerType = Searchable
    }
  }
}

Please let me know what I might be missing, thank you!

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论