Español:
Buenas me gustaría saber si existe la Posibilidad de compartir por medio de una lista armada .
Espero se comprenda la inquietud y disculpen la traducción.
Ingles:
Good I wonder if there is a possibility of sharing through an armed list. I hope the concern is understood and excuse the translation
- recordUsers
- {
- email={user1@tes.com, user2@test.com........} (String)
- }
- recordItemShare
- {
- type = {"section, form, view, page"} (String)
- nameObject = {"form1, form2, section3, list1......"} (String)
- userShare = { user1@tes.com}(String)
- }
- for each iUsers in recordUsers
- {
- for each iItemShare in recordItemShare
- {
- if(Users.email= iItemShare.userShare)
- {
- if(iItemShare.type="section")
- {
- share section(iItemShare.nameObject, iItemShare.userShare);
- }
- else if(iItemShare.type="form")
- {
- share form( iItemShare.nameObject, iItemShare.userShare);
- }
- else if(iItemShare.type="view")
- {
- share view( iItemShare.nameObject, iItemShare.userShare);
- }
- else if(iItemShare.type="page")
- {
- share page( iItemShare.nameObject, iItemShare.userShare);
- }
- }
- }
- }
I await comments
thank you.