Solved

Delete WO Time Report

  • 5 November 2019
  • 4 replies
  • 509 views

Userlevel 5
Badge +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.  

icon

Best answer by anmise 5 November 2019, 10:31

View original

4 replies

Userlevel 7

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. 

 

 

 

Userlevel 7

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

 

Userlevel 5
Badge +14

Thanks you @anmise 

Badge +2

Thank You!  :-)

Reply