Hi! Is there anybody can help me?
I use IFS8. We need input production surface arer information to Inventory Part. So I create a custom field under LU InventoryPart. Field Type is persistent. Name is “SURFACE_AREA”. It generates the method 'Inventory_Part_cfp.Get_cf$_Surface_rea’. It works right, user can keyin number into this field.
I need create quick report with this field so that users can see this number.
Followed SQL Statement works right.
select a.part_no, a.contract, b.cf$_surface_area area,
from inventory_part_tab a left join inventory_part_cft b on a.rowkey=b.rowkey
I want use SQL Statment with method Inventory_Part_cfp.Get_cf$_Surface_rea. It should be like
select a.part_no, a.contract, inventory_part_cfp.Get_Cf$_Surface_Area(a.part_no, a.contract)
from inventory_part_tab a
But it doesn’t work. There is no argument for this method. How can I set part_no and contract as arguments for this method?