acumatica - Use custom column field in mobile selector -
i have created custom field called 'usralternateids' used filtering in selector fields in page this:
and want same fields used in mobile app selecting inventory item using field 'alternateids'.
this did use field in selector inventory item not working.
is there else missing?
looks should using alternateids instead of usralternateids in mapping file.
either sample below should add alternative ids column inventory item lookup on mobile device when placed in acumatica website \app_data\mobile\
folder:
by using xml file:
<?xml version="1.0" encoding="utf-8"?> <sm:sitemap xmlns:sm="http://acumatica.com/mobilesitemap" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"> <sm:folder displayname="sales orders" icon="system://cash" isdefaultfavorite="true" type="hubfolder"> <sm:screen displayname="sales orders" icon="system://cash" id="so301000" expandselector="ordertype" type="simplescreen"> <sm:container name="documentdetails" fieldstoshow="9" containeractionstoexpand="1" listactionstoexpand="0" formactionstoexpand="1"> <sm:field name="inventoryid" listpriority="98"> <sm:selectorcontainer fieldstoshow="3"> <sm:field name="inventoryid"/> <sm:field name="description"/> <sm:field name="alternateids"/> </sm:selectorcontainer> </sm:field> </sm:container> </sm:screen> </sm:folder> </sm:sitemap>
or use of msdl:
update screen "so301000" { update container "documentdetails" { update field "inventoryid" { selector { fieldstoshow = 3 add field "inventoryid" add field "description" add field "alternateids" } } } }
Comments
Post a Comment