Bill Blake
Bill Blake

Reputation: 104

Display a customized Usr field in the Acumatica Mobile App

I have created a new customized Usr field and I am attempting to make it visible in the mobile app.

The field is being added in the Task page (CR306020). The field is a string value, added in the Details tab of the page: Task with Cust Field

Then, the Mobile Application node of the customization project is modified to add the new field:

update screen CR306020 {
  update container "Details"{
  add field "UsrMobileApp"{
  placeAfter field "DueDate"
  }
}
}

This field is correctly visible in the Result Preview section: Result Preview

However, the field is not visible in the Mobile App.

I reviewed the Service Description of the page, and noticed that the new Usr field is not visible there, which seems to explain why it's not visible in the App

I tried to make it visible in the Service Description by going to the WebServices page (SM207040). A New web service was added, and the Task page was added to the grid, and then the GENERATE button was pressed. But the field is still not visible in the Service Description section.

Any idea what could I be missing? Note: I attempted to use the field without the Usr prefix, but the result is the same.

Thanks.

Upvotes: 0

Views: 593

Answers (1)

Hugues Beauséjour
Hugues Beauséjour

Reputation: 8278

I reviewed the Service Description of the page, and noticed that the new Usr field 
is not visible there, which seems to explain why it's not visible in the App.

That's the most common explanation. Make sure the custom field is visible on screen and it should appear in the Service Description accessible with Help->Web Service.

Upvotes: 1

Related Questions