I am using a template that I have downloaded from crm 2013 to import users. I find that the users are imported as disabled and not enabled.
I can't find where I can change that option. Can someone help?
Also - is there anyway I can add the roles in the template as well so that I can create a user and assign the role at the same time?
Any help would be appreciated.
Thanks!
J
Unfortunately you cant that is one of the restrictions of importing users via the import tool.
However, what you can do is after the import you can select all the users you wish to enable from a view and bulk enable them by clicking the enable button from the ribbon.
See below post for limitations of import tool.
https://community.dynamics.com/crm/b/crmcustomereffective/archive/2015/02/03/importing-users-into-dynamics-crm-2013-dynamics-crm-2015.aspx
Thanks
Antony
Related
I have a DNN site with a broken login screen. All urls (incl ?ctl=login) are not displaying the account login module so I am trying to create a new login page via the SQL database only.
I am looking for a script to do 3 things (ideally as a single script):
1) create a new page
2) give this new page 'All Users' permission to 'View Tab' and 'Edit Tab'
3) add the account login module to this new page
I hope this will be a workaround to gain access to site in order to fix underlying issue.
In general this is caused by the set login (Admin Site settings > Advanced settings) page not containing a login module.
Although not a direct answer to you question, the easier way to fix this is to remove the set login page for the portal.
In DNN 5+ check out the PortalLocalization table and look for the LoginTabId, reset that to NULL and you should be able to login again.
I am creating Google Forms programmatically with a Google Script project.
DriveApp is used to grant view access to anyone with a link.
var form = FormApp.create("Test form");
var formFile = DriveApp.getFileById(form.getId());
formFile.setSharing(DriveApp.Access.ANYONE_WITH_LINK, DriveApp.Permission.VIEW);
However the Form still requires "anyone" to sign-in and it's restricted to my G Suite domain users. I've tried to find how to disable this but I don't know how the feature is even called in Google Scripts.
See the attached image with a checked box:
Note: I can disable the sign-in requirement manually. But Forms are delivered to respondents automatically and there's no time to do this manual step.
I haven't had to do this, so I'm not sure if it's what you need, but have you tried using the setRequireLogin(requireLogin) method when creating your forms?
See https://developers.google.com/apps-script/reference/forms/form#setRequireLogin(Boolean)
I need to know where Odoo saves the views that will be shown in (My Dashboard) when we click (Add to My Dashboard).
I looked in the table scheme and I could only find one related table: board_create
which is used to save the custom dashboards the user creates.
But I only want to find out where the contents (the views not the data) of the default Dashboard are saved in the database.
In OpenERP 7 and 8 you can find the view for dashboard in 'ir_ui_view_custom' table.
The view will be saved inside 'arch' column.
From OpenERP web interface this is will happened when you click 'add to my dashboard'
Javascript will invoke 'add_dashboard'
Javascript will make rpc request using '/board/add_to_dashboard' to openerp server
Openerp server will invoke "add_to_dashboard" function
Openerp server will save the view inside 'ir_ui_view_custom' table
Openerp use these files to process 'add to my dashboard'
/OpenErp7/addons/board/static/src/js/dashboard.js
/OpenErp7/src/main/openerp/addons/board/controllers.py
I hope this help.
I can`t seem to find a way how to import new products in OpenERP.
Does OpenERP support importing new non-referenced products into it.
Most of the guides show how to export products, which they contain referecing ID`s so they can be imported back to OpenERP.
To import product or any other data in OpenERP you need to install module named base_import after that you will see import link near by create button.
you can import non-reference products as well, just need to assign unique value to each because OpenERP looks for external ids. So just add one column in starting and give values anything like ext_product_1 and then carry to all next.
Is it possible to move the SharePoint 2010 BCS profile page, normally located under:
https://***.orbitone.com:443/__bdc/https___***_orbitone_com/Projects_1.aspx?JOB_ID={0}
To:
https://***.orbitone.com:443/Projects_1.aspx?JOB_ID={0}
Thanks!
It is a work around I guess but works well. I have tried it out.
1.) Create the profile page in the desired location (Web Part page)
2.) Export the web parts(2 web parts) from original profile page and add it to you custom page.
3.) Connect the web parts and test the page whether it is working properly like the OOTB profile page.
4.) Create a new action in the External Content Type and give the above new URL in the below format
https://???.orbitone.com:443/Projects_1.aspx?JOB_ID={0}
5.) Select the other parameters appropriately. Don't forget to give parameter as the identifier(JOB ID). Make sure you select this action as default action.
That's it :)
It should work in the way you expect. Let me know if you face any issues.