Skip to main content
Solved

The column PART_NO refered to in table t is not approved persistent Custom Attribute

  • October 14, 2025
  • 2 replies
  • 29 views

Forum|alt.badge.img+1

When I try to create and Approve a new Read Only Custom Field Attribute on the 

PurchaseReqLine PURCHASE_REQ_LINE_ALL view I get the error message “The column PART_NO refered to in table t is not approved persistent Custom Attribute” .

 

Argument:

v.part_no

Select Statement:

 select PART_MAIN_GROUP from ifsapp.PART_CATALOG where PART_NO = :PART_NO

 

Can someone help me?

 

 

 

Best answer by SimonTestard

Part_No isn’t a column that exists in the base view for PurchaseReq Line, so you can’t use that.

 

I’d do it like that, where the parameters are requisition_no, line_no, release_no:

 

select
part_catalog_api.get_part_main_group(purchase_req_line_part_api.get_part_no(:requisition_no, :line_no, :release_no))
from dual

 

 

2 replies

Forum|alt.badge.img+12
  • Hero (Customer)
  • Answer
  • October 14, 2025

Part_No isn’t a column that exists in the base view for PurchaseReq Line, so you can’t use that.

 

I’d do it like that, where the parameters are requisition_no, line_no, release_no:

 

select
part_catalog_api.get_part_main_group(purchase_req_line_part_api.get_part_no(:requisition_no, :line_no, :release_no))
from dual

 

 


Forum|alt.badge.img+1
  • Author
  • Do Gooder (Customer)
  • October 15, 2025

Thank you very much! 😀 It solved the problem!.