Create Button is not showing when creating an New profile.

0
Question: I'm experiencing an issue with the "Create" button in Mendix. When trying to create a new profile, the button is not visible. Can someone explain why this might be happening? Context: I'm new to Mendix. The error is specific to creating a new profile. Error Message: The button is not showing.
asked
4 answers
5

Hello Jeganathan,

 

The necessary permissions or roles for displaying the button might not be assigned to the user .

Check the entity access .

image.png

 

Check Microflow allowed role if calling from Button

 

image.png

Check  Security role for project,application level

image.png

answered
0

Hi Jeganathan,

 

Do you have security on or off, buttons not showing usually has to do with security access.

In this case it would be the right to create the entity, check "Access rules" panel in your domain model

 

Hope it helps

answered
0

1. Default Create button: create rights on the entity for the role are not present.

2. Custom Create button (i.e. a microflow that has a create action in it):

a. No Entity Access applied to microflow --> rights to the microflow itself

b. Entity Access applied to microflow --> a + Default Create button reason.

answered
0

Hello Raja,

You may try to check following options.

1) Go to your Application Security(at Top Left panel just below the Settings) and

-> Select the Role(Admin, User etc.) from which you are trying to create new profile.

-> Go to Module Roles Section and Check if your Role is having access to Administration Module to Administrator Role,

-> Go to User Management Section there and check if Your User is having access to No Role Assigned, System User or any other applicable Roles.

2) Go to Specific Module and Open Security,

-> Verify if your module Role is having 'Allow Creating New Object' option selected and

-> Make sure Your Role is having Read/Write access to required Members.

Tip: Keep Default rights for new member as None.

3) Verify Your role is having access to required microflow, which you are trying to call on click on Create profile button.

If your MF doesn't have access to your user, it will greyed out the button(You won't be able to click on it at all).

Hope this helps you.

Thanks.

answered