Calendar Selection based on User Group Answered
How to automate users selection in calendar settings in SAP B1 based on designation. whether is there any syntax for selecting corresponding users in Group View from row level.
How to automate users selection in calendar settings in SAP B1 based on designation. whether is there any syntax for selecting corresponding users in Group View from row level.
Comments
3 comments
Hi Daniel,
It depends what you mean. For example this Macro would select the first 6 and press update on this screen:
Set($[$25.3.0.1]|Y);
Set($[$25.3.0.2]|Y);
Set($[$25.3.0.3]|Y);
Set($[$25.3.0.4]|Y);
Set($[$25.3.0.5]|Y);
Set($[$25.3.0.6]|Y);
Set($[$25.41.0.1]|Y);
Set($[$25.41.0.2]|Y);
Set($[$25.41.0.3]|Y);
Set($[$25.41.0.4]|Y);
Set($[$25.41.0.5]|Y);
Set($[$25.41.0.6]|Y);
Click($[$1.0.0]);
You can modify this to get what you need.
Thanks,
Thomas
Hi Thomas,
Thanks for your solution. It really works fine and solved one of our major requirement to sort out calendar issue.
Thanks & Regards,
Daniel Thomas
You're very welcome
Please sign in to leave a comment.