Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All!
I have a load script that works with a Progress database and does quite a bit of data manipulation (so pulling in the data, modifying it, residental loads, etc).
I want to set some of them as inputfield fields (i.e. the product code) it doesn't throw an error, but nor does it make the field input-able.
Any idea? Any advice would be greatly appreciated!
Kind Regards,
Dayna
Hi, have a similar issue, someone could help us please.
Cheers,
Andrés
Hi Dayna, maybe a little bit late for you but I solve this by putting the INPUTFIELDS that I needed at the end of the load process. This seems to be due to the joins, concatenations, residents with the table where you have the inputfields. It means if for example you have an inputfield FieldA in Table1, and then you do a resident or a concatenation or a join to that Table1 in some point ahead in your script the INPUTFIELD functionallity will be disabled.
INPUTFIELD FieldA;
Table1:
Load *,
FieldA
From [path]
Table2:
Load *
resident Table1
So as I told you, the only aparent way to solve this is to load all your Inputfields at the end of the script and don't use any concatenation, joinning, resident or preceding load to it.
Hope it helps,
Andrés