Works Orders Import
AnsweredMe gustaría leer un archivo de Excel o TXT y generar órdenes de producción", puedo hacerlo de alguna manera en Beas?
Gracias
0
-
Official comment
Hi Carles,
It is possible do it using beasscript, The datastore object allows importing excel or text file then you can go through the rows and create a work order for each of them using Work order api.
Here an example of workorder creation with beas script
declare=mywo=ue_api_wo
mywo=new
mywo=line=itemcode=bau01
mywo=line=quantity=10
mywo=add
destroy mywoYou can find more information at the beasscript help file:
- Import data -> http://portal.beascloud.com/docs/help/beasscript/dtw.htm
- Work order api -> http://portal.beascloud.com/docs/help/beasscript/create_workorder.htm
Please sign in to leave a comment.
Comments
1 comment