Page 1 of 1

Export original values

Posted: Sun Oct 02, 2022 10:44 am
by konfuzion

Advanced Settings > Export original values [x]

Is there a way to programmatically disable/enable this in server events? In some export tables I don't want original values.


Re: Export original values

Posted: Sun Oct 02, 2022 10:49 am
by arbei

You may search "ExportOriginalValue" in this forum.


Re: Export original values

Posted: Sun Oct 02, 2022 11:39 am
by konfuzion

$this->setFieldProperties("ExportOriginalValue", true);

Works for LIST and EXPORT

But I would like:

LIST = VIEW VALUES
EXPORT = ORIGINAL VALUES

I reverted the LIST to use VIEW VALUES and putting the code
$this->setFieldProperties("ExportOriginalValue", true);
in PAGE EXPORTING but export still shows VIEW VALUES


Re: Export original values

Posted: Sun Oct 02, 2022 4:06 pm
by mobhar

Re: Export original values

Posted: Sun Oct 02, 2022 5:04 pm
by konfuzion

tks, working