HOW TO IMPORT & EXPORT APEX_APPL_ACL_USERS FROM ONE APPLICATION TO OTHER? - import

i am using apex application and i want to migrate my application from onw workspace to other.
All my tables ,functions, views etc are moved except application roles which are assigned to users(apex_appl_acl_users). anyone help me for this issue ..

The users are not part of an application, they are part of the individual deployment. You wouldn't want your development users to be exported to production every time you deploy a new version. The solution is to manually export and import the users. There is an excellent blog explaining how to do it here: https://seanstuber.com/2019/06/06/extracting-apex-access-control-users/

Related

Data sharing through any kind of platform from public Cloudkit container

I need some help! I have built my front end app + set up perfectly my public CloudKit container. I am just trying to share the data of my app between not iCloud users…it’s a hell… The knowledge request is over my skills. I have spent several weeks to try to solve this problem..,.and still…haven’t found the solution.
I don’t think I need vapor framework (because I don’t need to edit the data I am sharing).
Up to now I was able to download the data from iCloud public container inside the terminal following this old tutorial of 2016 (following the bonus "server-side cloudkit access” part two, cf. link under)
https://www.kodeco.com/997-cloudkit-js-tutorial-for-ios
but I am not able then to put the data inside a html page to share the data of my app through any kind of my platform.
I have tried to follow these two examples to put the data of my cloud kit container inside a notion html page
https://www.twilio.com/blog/manipulate-notion-database-using-node-js
https://developers.notion.com/page/examples
I am lost … I am not able to adapt this two examples inside my project.
Is there some one around to help me and make a simple example or give me some guidelines?

Cannot create Attendance in Moodle as there is no such Activity

I'm trying to apply face recognition for attendance in moodle for senior project. I've created a course in my Moodle, but I cannot add attendance activity as it just doesn't exist in the activity list. Activity list looks like this. From search results seems like very strange (and new?)bug.
Github issues doesn't seem to be checked by anyone regularly, so I'm asking here
https://github.com/danmarsden/moodle-mod_attendance/issues/465
The attendance module isn't part of the default Moodle code.
You will need to download and install it.
https://moodle.org/plugins/mod_attendance

How to create a list of users on in Alfresco Activiti?

so I have this simple question that I would love to get anwserd.
I am new to BPM an Alfresco Activiti and I am workng on with the trial version of Alfresco Activiti to create a sample project for our company.
I decided to work with the Step editor to se what it can do and if it's as powerfull as a normal BPMN 2.0 editor.
Now I am working on a form where one user would need to select the user for the next task. I was wondering if it's possible to use the single select component to display all the users on the server from which the asignee for the next task could be selected. How can this be done?
I know it is not the bes pracitce to show all the users on the server but this is a test project and your help would be really appreciated.
If any more info is required I will gladly edit the post.
Thnak you.
There is a user picker form control in there, that allows searching the whole system. See the third entry:
you can create a dropdown whose options are populated from a rest call which is provided below.
GET api/enterprise/admin/users
This will return list of all users available in JSON format.
Hope it helped.

Oracle Application Express plugin development using v4.2.2

I am working on some Oracle APEX Plugin development and wonder whether the following requirement is possible.
I basically would like to be able, via a plugin, create a form with say six page items, where two of those page items might be LOVs, another two are page items are text fields, where users have to enter values and the remaining two are display items only.
Based on this form requirement, I want to be able to upload/install this plugin within other Oracle Application Express apps/schemas, so when installed within other apps, this plugin is rendered within a region and the data is stored within a table in that schema, but using the form described above.
Can this be achieved building a plugin in Oracle APEX, and if so, how?
Create a stock application with the pages and regions that need to be replicated, export that, and import it into the other workspaces that need it. Then, when developing an application, copy the regions and/or pages as necessary from that stock application.

Deploying Salesforce packages - will custom fields included in package overwrite target orgs fields with same name?

I'm relatively new to Salesforce, so I my be missing something basic here:
There is an existing Enterprise site. It has a number of custom fields (i.e. Account.MyCustomField__c), pages and of course lots of customer data. As far as I can tell it was all setup from within the Salesforce instance itself (no custom Apex code or special packages)
I want to add an Apex class to this - a tiny Schedulable class with a few lines of code to select and update one of those MyCustomField_c fields on a few records each day. To do this I signed up and created a developer site and manually recreated the MyCustomField_c (same name, API name, label, type, etc) and then created the class and it's test methods.
Now here is my concern:
When I go to create a package so that I can copy this class to the Enterprise site the custom field shows up as a dependency that will be automatically included in the package. What happens if I install this package - will the duplicate field be added/overwrite the existing one, or cause an error? Ultimately I want my apex class to use the field already in the Enterprise site of course.
Alternatively, is there some way to export the custom fields/setup from an enterprise site into a developer site, so that the resulting packages from the developer site will already take into account dependencies that are present in the enterprise version?
Are you moving the code as a packaged app (with a namespace) or via change sets? Generally we do deployments using Eclipse — we don't package things up so don't use namespaces.
The simple version is: if you're not using a namespace and a packaged app then your code should use the field that's there. If you are using namespaces, your field will automatically be created in the target org with a prefix, as such it will be a different field to the one that's there already.