DMT Shell Script

Hello guys i am working on a DMT shaell script but i cannot find what is the parameter name for Job labor Adjust ment. could you please help me ASAP thanks

The DMT name is ‘Job Labor Adjustment’ and required fields are Company, Plant, JobNum, AssemblySeq, OprSeq, and EmployeeNum.

I am not sure what else you need to know. Give us some more details and we can probably help. Maybe even post what you have so far, and what is happening.

when i pass Job labor adjustment the DMT doesn’t pick it up instead it gets job table. in shell the space is use to separate syntaxis also i use variables and i got same result. I was looking at some examples and epicor used table Customer in the example from epicor insight 2017.

Oh, then yeah, you have to escape the quote marks with a backwards tick (under the ~ on my keyboard)

Start-Process -Wait -FilePath $DMTPath -ArgumentList "-User $User -Pass $Pass -Update -Import "TE Labor Detail" -Source $SourceDetail -NoUI -ConfigValue=$ServerFlag " #Note: the ` when dealing with a table with word spaces

We will see if this works better. It dropped the ticks on the previous one.

Start-Process -Wait -FilePath $DMTPath -ArgumentList "-User $User -Pass $Pass -Update -Import `"TE Labor Detail`" -Source $SourceDetail -NoUI -ConfigValue=$ServerFlag " #Note: the ` when dealing with a table with word spaces
1 Like

let me try now

that works lovely thank you so much