08.04.2004, 16:54 | #1 |
Участник
|
Where is that field?
Could anyone explain one abnormal behavior:
LedgerJournalTrans table has field "company", but I can't see it when I use Add Ins>Table Browser. What happened? I am sure that i didn't hide that field via left mouse button menu command "Hide". Thanx. |
|
08.04.2004, 17:02 | #2 |
Участник
|
This field is connected to Intercompany accounting.
Check if keys "General ledger advanced " and "Intercompany accountinig" are turned on in your configuration and you have license code for Finacial series II |
|
08.04.2004, 17:19 | #3 |
Участник
|
ok, it seems you are right.
But does that mean that if there is no these licence coded it is impossible to insert record programmably? LedgerJournalTrans LJT; <...> <assingning values to the LJT fields> LJT.insert(); inside table insert() method the value is being assigned: if (! this.offsetCompany) { this.offsetCompany = curExt(); } but in further code the value of that field still remains empty that causes wrong behavior in the application when AssetBook::lookupOpenBookIdForAsset() is invoked. |
|
08.04.2004, 18:02 | #4 |
Участник
|
Цитата:
Изначально опубликовано paucer
ok, it seems you are right. But does that mean that if there is no these licence coded it is impossible to insert record programmably? LedgerJournalTrans LJT; <...> <assingning values to the LJT fields> LJT.insert(); inside table insert() method the value is being assigned: if (! this.offsetCompany) { this.offsetCompany = curExt(); } but in further code the value of that field still remains empty that causes wrong behavior in the application when AssetBook::lookupOpenBookIdForAsset() is invoked. |
|