I created one new Selector field in Stock Item Custom Tab. In screen level records are showing in selector.. But In mobile screen I am not able to get the values for that Selector field.
Can you help me on this how to approach on this issue.
I would check the screen Web Service and make sure that the Selector Field you are trying to customize is recognized by the internal name you are trying to utilize TSStorageCondID is probably not correct as it tends to be some variation on the Display name and not the field name
Example from Dev Blog here where UsrStatus is field name but Mobile App/Web Service is just Status
From the Screen in the right upper area under Tools => Web Service
A new tab should open with the Screen ID and Web Service
Click on Service Description link, scroll down to the section where you added the selector during your customization and find the name there. This is usually the one that the Mobile Customization is looking for
@ChandrasekharM We tried by adding above code But still Selector is not working. Below code we have added. Can you check and revert if We are missing anything?
add container "StorageConditions"{
add field "StorageConditionID" {
pickerType = Searchable
selector {
add field "TSStorageCondID" {
}
}
Also We did in this way :
add container "StorageConditions"{ add field "StorageConditionID" {
selector {
add field "TSStorageCondID" { pickerType = Attached } } }
Hi @rajanip50 Yes, the same issue I have seen for the customised field, values are not showing on the Selector field, but for the default Acumatica it is showing properly.
I would check the screen Web Service and make sure that the Selector Field you are trying to customize is recognized by the internal name you are trying to utilize TSStorageCondID is probably not correct as it tends to be some variation on the Display name and not the field name
Example from Dev Blog here where UsrStatus is field name but Mobile App/Web Service is just Status
From the Screen in the right upper area under Tools => Web Service
A new tab should open with the Screen ID and Web Service
Click on Service Description link, scroll down to the section where you added the selector during your customization and find the name there. This is usually the one that the Mobile Customization is looking for