Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have current selection object, if i am select any it displays in current selection
but i don't want to display date filed
is it possible.........
Thanks..............
Yes, in the script add a line
SET HidePrefix = '%';
Then rename the field you want to hide in the current selections box by prefixing it with a %:
Load
FieldA,
FieldB,
Date as %Date
From ...mysource...;
Then reload the data. Your Date field is now renamed to %Date and won't be shown in the current selections box. The %Date field also won't be visible in dialogs where you can select a field until you enable the option Show System Fields.
You can use any character you want as prefix. Simply adjust the HidePrefix variable accordingly.
Yes, in the script add a line
SET HidePrefix = '%';
Then rename the field you want to hide in the current selections box by prefixing it with a %:
Load
FieldA,
FieldB,
Date as %Date
From ...mysource...;
Then reload the data. Your Date field is now renamed to %Date and won't be shown in the current selections box. The %Date field also won't be visible in dialogs where you can select a field until you enable the option Show System Fields.
You can use any character you want as prefix. Simply adjust the HidePrefix variable accordingly.