We have an issue where IFS APPS 9 is not populating lists of values.
Example: on the Supplier screen, the “Form of business” field uses a list. NOTHING appears in the list.
However, if I type the value eg CHARITY, the lookup works fine. If I ZOOM to the LOV, that works also.
Using debug, we can see that the sql to populate the list never gets run, but only on the test instance.
This is only happening on a test instance, Live is OK (luckily), but we are about to migrate to new hardware, and obviously a bit concerned that this may happen there.. (test data is an old copy of live)
Does anyone have any experience of this happening, and even better, a solution?
UPDATE:
Here’s what “Populate” tries to run on the offending instance:
select from &AO.CORPORATE_FORM where COUNTRY_CODE = 'GB'
and here’’s what it runs elsewhere:
select CORPORATE_FORM,CORPORATE_FORM_DESC from &AO.CORPORATE_FORM where ( COUNTRY_CODE = :p0 ) and COUNTRY_CODE = 'GB'..
So the other one is missing field list AND where clause. But why?