Skip to main content

I have enabled the Object Connection Document Attachment in IEE and I’d like to use that in Aurena.  How do I add the “Attachment” section to an Aurena Page.  Specifically for use in a Aurena Native Mobile App (MWO Service 10).  

I have enabled the Object Connection Document Attachment in IEE and I’d like to use that in Aurena.  How do I add the “Attachment” section to an Aurena Page.  Specifically for use in a Aurena Native Mobile App (MWO Service 10).  

Which object in mWO do you feel is missing the attachments?

As far as I know it should just 'show up' if you enable it, but it might not be fully supported for Aurena Native (me guessing) 


I have enabled the Object Connection Document Attachment in IEE and I’d like to use that in Aurena.  How do I add the “Attachment” section to an Aurena Page.  Specifically for use in a Aurena Native Mobile App (MWO Service 10).  

Which object in mWO do you feel is missing the attachments?

As far as I know it should just 'show up' if you enable it, but it might not be fully supported for Aurena Native (me guessing) 

I have enabled document attachments for service quotations. But i don't have the option in MWO Service 10. I do see it in the Aurena Page Designer though...


I have enabled the Object Connection Document Attachment in IEE and I’d like to use that in Aurena.  How do I add the “Attachment” section to an Aurena Page.  Specifically for use in a Aurena Native Mobile App (MWO Service 10).  

Which object in mWO do you feel is missing the attachments?

As far as I know it should just 'show up' if you enable it, but it might not be fully supported for Aurena Native (me guessing) 

I have enabled document attachments for service quotations. But i don't have the option in MWO Service 10. I do see it in the Aurena Page Designer though...

It’s not supported for Service Quotations at the moment. I’ll share the request with RnD though.


I have enabled the Object Connection Document Attachment in IEE and I’d like to use that in Aurena.  How do I add the “Attachment” section to an Aurena Page.  Specifically for use in a Aurena Native Mobile App (MWO Service 10).  

Which object in mWO do you feel is missing the attachments?

As far as I know it should just 'show up' if you enable it, but it might not be fully supported for Aurena Native (me guessing) 

I have enabled document attachments for service quotations. But i don't have the option in MWO Service 10. I do see it in the Aurena Page Designer though...

It’s not supported for Service Quotations at the moment. I’ll share the request with RnD though.

@anmise  do you know which LU’s support document or Media object connections in mWo?  I am also trying to do this on new Purchase Requisition.  Any list or documentation you can share would be highly appreciated.

Thanks!


I have enabled the Object Connection Document Attachment in IEE and I’d like to use that in Aurena.  How do I add the “Attachment” section to an Aurena Page.  Specifically for use in a Aurena Native Mobile App (MWO Service 10).  

Which object in mWO do you feel is missing the attachments?

As far as I know it should just 'show up' if you enable it, but it might not be fully supported for Aurena Native (me guessing) 

I have enabled document attachments for service quotations. But i don't have the option in MWO Service 10. I do see it in the Aurena Page Designer though...

It’s not supported for Service Quotations at the moment. I’ll share the request with RnD though.

@anmise  do you know which LU’s support document or Media object connections in mWo?  I am also trying to do this on new Purchase Requisition.  Any list or documentation you can share would be highly appreciated.

Thanks!

Unfortunately I don’t have such a list, but from I understand attachment functionality (Doc/Media) needs to be added by RnD (or a mod) through code for each of the entities. 
Currently you can add attachments to Work Tasks, Objects and Task Steps.  


Yes, you need to define it the .app file,  below from ServiceEngApp.app UPD8. 

If prefetch is set to true, the docs are fetched on init.

 

docman {
   entity JtExecutionInstance {
      prefetch = true;
   }
   entity JtTaskStep {
      prefetch = true;
   }
   entity JtTask {
      prefetch = true;
   }
   entity EquipmentObject {
      prefetch = false;
   }
   entity ActiveSeparate {
      prefetch = true;
   }
   entity TaskTemplateRole {
      prefetch = true;
   }
   entity HistoryJtTask {
      prefetch = false;
   }
   entity OnlineHistoryJtTask {
      prefetch = false;
   }
   entity JtTaskResource {
      prefetch = false;
   }
 


 do you need to grant the DocumentHome projection to the permission set(s) connected to the user to make it work in Aurena and display the document object connections?

 


Reply