I diligently watch and learn from each instructional video that you provide, Great Content!. It really helps. Thank you Very Much :)
@ERP-UP9 ай бұрын
Thank you so much for your nice comment and the praise. I appreciate that :)
@talerguru23039 ай бұрын
Well done. Very helpful. Please more on SAP GUI Scripting.
@ERP-UP9 ай бұрын
More to come. Stay tuned :)
@sabinegeiger34429 ай бұрын
Thanks for the very good information !! 👍👍
@ERP-UP9 ай бұрын
Appreciated 👍
@annaz96309 ай бұрын
Thank you 👍
@ERP-UP9 ай бұрын
You're welcome 👍
@yuri23659 ай бұрын
Very helpful material!
@ERP-UP9 ай бұрын
Thank you very much for your support Yuri.
@klarazacher97259 ай бұрын
Sehr hilfreiche Vidios, wie immer. 😊
@ERP-UP9 ай бұрын
Danke für das Lob Klara 😊
@DHAMODHARANP-u9g9 ай бұрын
Super bro
@ERP-UP9 ай бұрын
Thank you so much
@JosefZacher-k2z9 ай бұрын
Спасибо за информацию👍
@ERP-UP9 ай бұрын
Спасибо 👍
@ethanwolfe17136 ай бұрын
This is super helpful! Is there documentation anywhere that details the available methods and properties for these SAP objects being used in VBA? This video is the only place I can find the "Application.OpenConnection" method being used. It was exactly what I needed but I couldn't find a list of available methods or functions anywhere online.
@ERP-UP6 ай бұрын
Thank you. Unfortunately, I also don't have any official documentation for developers about SAP GUI Scripting. I record the steps in SAP GUI and analyze the generated VBS code. Within the SAP GUI under "Customize Local Layout > SAP GUI Scripting Help" you get access to the SAP GUI Scripting API.
@Baba11-ex1zl9 ай бұрын
👍
@ERP-UP9 ай бұрын
👍
@pdcm317 ай бұрын
Could you use this to mass create role for example?
@ERP-UP7 ай бұрын
You can also automate this, sure.
@cobraplays3230Ай бұрын
How to get data from sheet1 Row A from excel to SAP and loop it in the macro
@ERP-UPАй бұрын
First of all you can record a SAP GUI script if you enter the data manually. Then you have your template you can add your custom code. The code needs to be made in VBA. Have a closer look at these videos: SAP & Excel - 10 SAP GUI Scripting Tips 🚀 kzbin.info/www/bejne/oZzIYnyXo5mMhKM Install ABAP2XLSX - Create a professional Excel spreadsheet from ABAP kzbin.info/www/bejne/p3-pfI2ihsxob7c
@minhajulislam82304 ай бұрын
Getting Error 91. problem in the user id step.
@ERP-UP4 ай бұрын
Without seeing your code and without knowing what kind of code you are trying to use it is difficult to find the root cause. Check your coding once again and compare it with the code used in the video. Check if there are any typos. You can also debug to see exactly what line / statement causes the error. It seems you are having an problem with creating an object variable. There are two steps to creating an object variable. First you must declare the object variable. Then you must assign a valid reference to the object variable using the Set statement. You attempted to use an object variable that has been set to Nothing.
@paracordist106 ай бұрын
Could you please provide the code in the description as well?
@ERP-UP5 ай бұрын
Sure, I have added the VBS code in the video description.
@manishsoni1257 ай бұрын
Unable to login when multiple window of Sap gui is open please help on this
@ERP-UP7 ай бұрын
Have a closer look the "Programming API" available under "SAP GUI Scripting" at service.sap.com/sapgui. The GuiApplication object has an ActiveSession property that points to the session the user is currently working in, which is the topmost window. This should work: Set session = application.ActiveSession
@manishsoni1256 ай бұрын
@@ERP-UP thanks a lot!!
@manishsoni1257 ай бұрын
Sap is opening but not getting logged in runtime error 619 coming
@ERP-UP7 ай бұрын
The runtime error 619 is "Control Could Not Be Found by ID". Check if you are using the correct ID. Debugging can also help to identify the error or the exact line where the error occurs. Have a closer look: kzbin.info/www/bejne/oZzIYnyXo5mMhKMsi=poy3yUcwgJHc9RxF&t=1355
@manishsoni1257 ай бұрын
@@ERP-UP got my mistake Thanks
@cryptoafc76559 ай бұрын
how safe it is?
@annaz96309 ай бұрын
Safe
@ERP-UP9 ай бұрын
It depends how you define "safe". The password is saved in clear text in the example. There are also some possibilities to save it not in clear text within excel to use VBA. You can also protect the whole excel file if you want to. In general I wanted to set the focus in the SAP GUI Scripting API.
@281173hk7 ай бұрын
Cannot find SAP GUI Scripting API . How to add?
@ERP-UP7 ай бұрын
Have a closer look at 02:00 - Include SAP GUI Scripting API