Skip to main content

I have created a new GI to show Item Allocation details on the mobile app. I have added the screen to the mobile app as below so i can label the columns etc.

The screen appears on the mobile app but the Filter by does not let me select an inventory ID and the Results screen does not show the PlanType (Suspect this is because the field has the same name ‘Descr’ as the field on the InventoryItem tried called it INItemPlan#Descr. 

I have reviewed other posts and cannot work out why my Filter does not work.

 

@dcomerford 

I used your GI and was able to get PlanType and filter working with following code:

add screen GI955013 {
type = FilterListScreen
add container "Filter_" {
add field "InventoryItem"
}
add container "Result" {
fieldsToShow = 2
add field "InventoryID" {selectorDisplayFormat = Key}
add field "Description"
add field "OrderReference"
add field "PlanTypeINPlanTypeDescr"
add field "PlannedQty"
}

}

note that PlanType is named PlanTypeINPlanTypeDescr in the web service schema.

Not sure why your filter would not work though.

Hopefully it helps


BTW, here is a helpful link: Generic Inquiry in Acumatica Mobile App - Stack Overflow (https://stackoverflow.com/questions/48670213/generic-inquiry-in-acumatica-mobile-app)


Thanks @RohitRattan88 yes i have that article thanks for update on field name i can never follow the syntax on these. I will recheck the filter i was able to press the filter button but i could not select anything


Reply