Skip to main content
Solved

Delete Customer open balance history record

  • September 11, 2024
  • 2 replies
  • 68 views

SMANUEL
Sidekick (Partner)
Forum|alt.badge.img+9
  • Sidekick (Partner)
  • 57 replies

Good Day.

Is there a way we can delete the entry of another user , as it says the user only can do it..(can’t even perform with Admin user -IFSAPP)

 

Best answer by Furkan Zengin

Hello @SMANUEL 

The only way is logging on with the creator user and delete. The other option is modifying check delete procedure for OPEN_BAL_HIST_INSTANCE_API. You can modify as following

 

(remrec_.user_id <> Fnd_Session_API.Get_Fnd_User() OR remrec_.user_id <> ‘IFSAPP’)

 

 

Hope this helps

2 replies

Furkan Zengin
Ultimate Hero (Partner)
Forum|alt.badge.img+21
  • Ultimate Hero (Partner)
  • 767 replies
  • Answer
  • September 11, 2024

Hello @SMANUEL 

The only way is logging on with the creator user and delete. The other option is modifying check delete procedure for OPEN_BAL_HIST_INSTANCE_API. You can modify as following

 

(remrec_.user_id <> Fnd_Session_API.Get_Fnd_User() OR remrec_.user_id <> ‘IFSAPP’)

 

 

Hope this helps


SMANUEL
Sidekick (Partner)
Forum|alt.badge.img+9
  • Author
  • Sidekick (Partner)
  • 57 replies
  • September 11, 2024

@Furkan Zengin Many thanks for your response..The first option seems to be better...