Required EL expression to hide new DFF created for all countries except one country
Summary:
I have a requirement to show DFF field created only for Turkey (TR) employee's.
I used below EL expression to enable it only for Turkey employees but it is not working and hiding the field for all countries, please can anyone guide.
#{context.countryCode} == 'TR'
To display a Descriptive Flexfield (DFF) to a specific country in Oracle Fusion, use an EL expression that evaluates the user's country and only displays the DFF when it matches the target country. This can be achieved by utilizing the #{context.countryCode}
EL expression, which retrieves the country code of the current user's profile, and comparing it to the desired country code within the expression.