The pictures below show the event/actions, as it is to prompt the user with “This part has an open Purchase Order: (Then list the order numbers)” if they modify the characteristics of a part with an open purchase order. However yesterday it was refusing to show the “&HAS_PO” field and only showed the text I had written out, now today it has flipped around and shows the exact opposite. Is their anything I’m missing to get it working?
I’ve tried the below method as well and it didn’t work either:
DECLARE
MESSAGE_ varchar(100) := 'This part has an open Purchase Order: ';
CONCAT_MESSAGE varchar(100);
BEGIN
CONCAT_MESSAGE := CONCAT(MESSAGE_, '&HAS_PO'); IFSAPP.Client_SYS.Add_Info(' ', CONCAT_MESSAGE);
END;