#AAillustrates

  Рет қаралды 12,232

Automation Anywhere

Automation Anywhere

Күн бұрын

Пікірлер: 30
@razirahman2316
@razirahman2316 Жыл бұрын
Thank you automation anywhere and mica for a wonderful tutorial it's helps me a lot in creating package 🎉🎉🎉
@Automationanywhere
@Automationanywhere 10 ай бұрын
Great to hear @Razirahman2316! You'll have to let us know what you build! We're always excited to here where people can take these lessons 🥳
@andonii46
@andonii46 6 ай бұрын
@@Automationanywhere​ great video!! it would be amazing if you could do another video with session variables, so that a variable can be used across one package action's within a bot
@PaulPhoenixRana
@PaulPhoenixRana 3 жыл бұрын
Awesome session Micah..Really enjoyed it and it cleared lots of my doubt.."Testing the class" part was just awesome..
@Automationanywhere
@Automationanywhere 3 жыл бұрын
Thank you for joining, Avinash!
@GrzegorzZioo
@GrzegorzZioo 3 жыл бұрын
Great session MIcah! Thank you! This really allow to start working with custom packages.
@jonatanriascos7787
@jonatanriascos7787 2 жыл бұрын
Thanks for the information. Greetings from Colombia.
@Automationanywhere
@Automationanywhere 2 жыл бұрын
Our pleasure!
@kishoren7721
@kishoren7721 3 жыл бұрын
Very informative thanks for the video
@Automationanywhere
@Automationanywhere 3 жыл бұрын
Thank you for joining, Kishore!
@janoso89
@janoso89 2 жыл бұрын
This video is just great! Thanks for that. Now i like to ask if there is a way to (for testing purpose) create a custom package to test the bots i have in my control room? Thanks again.
@rockmorin3831
@rockmorin3831 2 жыл бұрын
Thanks for link to variable types. It did help. I have a question around using the SecureString when doing packages. I did package with it and works fine however I cannot figure out how to use it in a test. In short if I write a java test I would have to create a SecureString in order to pass it to my action. This is what I cannot figure out. I apologize if this is not the right forum to ask this question but feel free to direct me to the right one if it's not. Thanks
@leemelbourne3297
@leemelbourne3297 Жыл бұрын
Really nice overview. Thank you.
@BabikerAlbanna
@BabikerAlbanna 2 жыл бұрын
Awesome tutorial Micah. Is there a way to call a bot from within a custom package?
@Automationanywhere
@Automationanywhere 2 жыл бұрын
Hey Babiker - technically yes...through a series of calls to the Control Room API could could have a package trigger a bot - but it would have to be a bot run on another bot runner or sequentially AFTER the existing bot run was completed. See some of Micah's API tutorial videos for more details on using that API
@MrBlueberry33
@MrBlueberry33 10 ай бұрын
Thanks for the tutorial, it really helped! I have a question though. How do you return a type list of strings? If i use return_type = LIST it returns List of Undefined, if I use return_type = DataType.ANY, it does work, however, i would like to return type only List Strings.
@Automationanywhere
@Automationanywhere 10 ай бұрын
Glad you liked the tutorial. Try this and let us know: return_type = DataType.LIST, return_sub_type = STRING
@MrBlueberry33
@MrBlueberry33 5 ай бұрын
@@Automationanywhere Hey thanks for getting back to me on that, I did eventually figure it out though. I do have another question. I was looking at extending AA functionality through C# DLL's. I know i can use DLLs through the DLL package, but I want to make my own custom package to call the C# DLL. I have tried both JNI and JNA and both throw an error that they are unable to find the function, yet the same DLL works just fine through the DLL package. What is the correct method to call a DLL from within the java custom package class? Appreciate any help!
@dylan8463
@dylan8463 2 жыл бұрын
Hey Micah! Any chance of getting a walkthrough on how to build a custom package that utilizes sessions? I have been trying to implement sessions for a custom package but am a bit confused with the current documentation available.
@Automationanywhere
@Automationanywhere 2 жыл бұрын
Hey Dylan - check out our GitHub repo which has tons of example packages. Specifically Micah mentioned to check out the Twitter package - which shows a clean/easy to use example of how to use sessions: github.com/AutomationAnywhere/A2019-TwitterPackage-205101
@devalchawda7342
@devalchawda7342 Жыл бұрын
is it possible to achieve same using c# .Net stack ?
@MrRaveHaven
@MrRaveHaven Жыл бұрын
Current versions of the AASDK bundle are backwards compatible only to Java 11. Can we modify the AA libraries to be compatible with older versions such as Java 8?
@loganprice1329
@loganprice1329 2 жыл бұрын
Awesome video! No experience with Java before, but you helped me get up and running on custom A360 packages. Question for anyone: how do we reference non-input variables within a calling task? Lets say an A360 task has 10 string variables. That task runs a custom action with no input. How can we programmatically retrieve the 10 string variables and their values within the custom action? Context: I want to write a package that iterates through all the variables in the calling task and logs all those variables and stored values to a CSV file.
@TheMicahMindset
@TheMicahMindset 10 ай бұрын
Hey Logan - this is actually something that was just released in .30. If you wanted to build something like that yourself, you'd need to have your package take in something like a list, then you would just add each variable to the list and write that out
@shruthishruthi.konkimalla6999
@shruthishruthi.konkimalla6999 3 жыл бұрын
Hello Micah, I followed every step as mentioned in the video, but while building the jar file for the package.. I am getting Package.json missing issue. Kindly, your help needed
@Automationanywhere
@Automationanywhere 3 жыл бұрын
Hi Shruthi. The Package.json should be generated automatically for you in the build>resources>main directory. Consider posting your question to apeople.automationanywhere.com, where you can post screen shots and additional details on your issue.
@rockmorin3831
@rockmorin3831 2 жыл бұрын
This is a great Video Micah. I was spinning my wheels to figure out how to build a package and your video really got me up to speed with it.Thanks for this training you are a great teacher. If you are looking for idea for next training, I would really like a training session on how to build a custom package for a Rest api that uses the credentials vault and return the response as a dictionary.
@Automationanywhere
@Automationanywhere 2 жыл бұрын
Thanks for the feedback! Well pass it along! In the meantime, Micah's published several tutorials on developer portal for those looking to understand how to return various variable types: developer.automationanywhere.com/blog/package-development-returning-a-list (others are listed in the sidebar of that page as related content as well)
Build Your First Automation 360 Bot with Micah Smith | Automation Anywhere
23:10
Help Me Celebrate! 😍🙏
00:35
Alan Chikin Chow
Рет қаралды 17 МЛН
Bike Vs Tricycle Fast Challenge
00:43
Russo
Рет қаралды 96 МЛН
Amazing Parenting Hacks! 👶✨ #ParentingTips #LifeHacks
00:18
Snack Chat
Рет қаралды 22 МЛН
Being Competent With Coding Is More Fun
11:13
TheVimeagen
Рет қаралды 79 М.
What does larger scale software development look like?
24:15
Web Dev Cody
Рет қаралды 1,4 МЛН
How to Build Your First Bot in Automation Anywhere Enterprise A2019
23:23
Automation Anywhere
Рет қаралды 36 М.
DHH discusses SQLite (and Stoicism)
54:00
Aaron Francis
Рет қаралды 73 М.