Skip to main content
Solved

Adding Attachments in Aurena

  • May 8, 2020
  • 7 replies
  • 774 views

ctaylor56
Hero (Partner)
Forum|alt.badge.img+14

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).  

Best answer by anmise

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.

7 replies

  • Superhero (Employee)
  • 1487 replies
  • May 9, 2020

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) 


ctaylor56
Hero (Partner)
Forum|alt.badge.img+14
  • Author
  • Hero (Partner)
  • 167 replies
  • May 9, 2020

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...


  • Superhero (Employee)
  • 1487 replies
  • Answer
  • May 9, 2020

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.


ctaylor56
Hero (Partner)
Forum|alt.badge.img+14
  • Author
  • Hero (Partner)
  • 167 replies
  • May 11, 2020

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!


  • Superhero (Employee)
  • 1487 replies
  • May 16, 2020

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.  


tobese
Hero (Employee)
Forum|alt.badge.img+7
  • Hero (Employee)
  • 98 replies
  • May 18, 2020

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;
   }
 


Forum|alt.badge.img+7
  • Sidekick (Employee)
  • 48 replies
  • April 12, 2023

 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?