Skip to main content
Solved

Delete WO Time Report

  • November 5, 2019
  • 4 replies
  • 544 views

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

Can anyone tell me how to Delete a Time Report that has not been authorized on a Work Task in Apps 10 UPD 4 and up?  Seems like the simplest thing and I’ve tried on Work Task Time Reports, and The Report In screen and I don’t see the option to delete.  

Best answer by anmise

You will have to go to the Work Task Transaction screen (Service and Maintenance\Work Management\Closure\Work Task Transaction) and delete the transaction from there. You can quite easily create a custom menu option that allows you to delete it from the tab itself though. 

 

 

 

4 replies

  • Superhero (Employee)
  • Answer
  • November 5, 2019

You will have to go to the Work Task Transaction screen (Service and Maintenance\Work Management\Closure\Work Task Transaction) and delete the transaction from there. You can quite easily create a custom menu option that allows you to delete it from the tab itself though. 

 

 

 


  • Superhero (Employee)
  • November 6, 2019

@ctaylor56 the menu could look something like this

 


 

DECLARE
      trans_id_ VARCHAR2(32000) := &transaction_id;

BEGIN

   IFSAPP.Jt_Task_Transaction_API.Delete_Transaction(trans_id_);

END;
 

 


ctaylor56
Hero (Partner)
Forum|alt.badge.img+14
  • Author
  • Hero (Partner)
  • November 6, 2019

Thanks you @anmise 


Forum|alt.badge.img+2
  • Do Gooder (Customer)
  • November 19, 2019

Thank You!  :-)