Log into SAP from Excel with SAP GUI Scripting API

  Рет қаралды 4,847

ERP UP

ERP UP

Күн бұрын

Пікірлер: 40
@ERP-UP
@ERP-UP 9 ай бұрын
Learn how to use the SAP GUI Scripting API
@AthmakuruNavyasree
@AthmakuruNavyasree 9 ай бұрын
I diligently watch and learn from each instructional video that you provide, Great Content!. It really helps. Thank you Very Much :)
@ERP-UP
@ERP-UP 9 ай бұрын
Thank you so much for your nice comment and the praise. I appreciate that :)
@talerguru2303
@talerguru2303 9 ай бұрын
Well done. Very helpful. Please more on SAP GUI Scripting.
@ERP-UP
@ERP-UP 9 ай бұрын
More to come. Stay tuned :)
@sabinegeiger3442
@sabinegeiger3442 9 ай бұрын
Thanks for the very good information !! 👍👍
@ERP-UP
@ERP-UP 9 ай бұрын
Appreciated 👍
@annaz9630
@annaz9630 9 ай бұрын
Thank you 👍
@ERP-UP
@ERP-UP 9 ай бұрын
You're welcome 👍
@yuri2365
@yuri2365 9 ай бұрын
Very helpful material!
@ERP-UP
@ERP-UP 9 ай бұрын
Thank you very much for your support Yuri.
@klarazacher9725
@klarazacher9725 9 ай бұрын
Sehr hilfreiche Vidios, wie immer. 😊
@ERP-UP
@ERP-UP 9 ай бұрын
Danke für das Lob Klara 😊
@DHAMODHARANP-u9g
@DHAMODHARANP-u9g 9 ай бұрын
Super bro
@ERP-UP
@ERP-UP 9 ай бұрын
Thank you so much
@JosefZacher-k2z
@JosefZacher-k2z 9 ай бұрын
Спасибо за информацию👍
@ERP-UP
@ERP-UP 9 ай бұрын
Спасибо 👍
@ethanwolfe1713
@ethanwolfe1713 6 ай бұрын
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-UP
@ERP-UP 6 ай бұрын
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-ex1zl
@Baba11-ex1zl 9 ай бұрын
👍
@ERP-UP
@ERP-UP 9 ай бұрын
👍
@pdcm31
@pdcm31 7 ай бұрын
Could you use this to mass create role for example?
@ERP-UP
@ERP-UP 7 ай бұрын
You can also automate this, sure.
@cobraplays3230
@cobraplays3230 Ай бұрын
How to get data from sheet1 Row A from excel to SAP and loop it in the macro
@ERP-UP
@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
@minhajulislam8230
@minhajulislam8230 4 ай бұрын
Getting Error 91. problem in the user id step.
@ERP-UP
@ERP-UP 4 ай бұрын
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.
@paracordist10
@paracordist10 6 ай бұрын
Could you please provide the code in the description as well?
@ERP-UP
@ERP-UP 5 ай бұрын
Sure, I have added the VBS code in the video description.
@manishsoni125
@manishsoni125 7 ай бұрын
Unable to login when multiple window of Sap gui is open please help on this
@ERP-UP
@ERP-UP 7 ай бұрын
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
@manishsoni125
@manishsoni125 6 ай бұрын
@@ERP-UP thanks a lot!!
@manishsoni125
@manishsoni125 7 ай бұрын
Sap is opening but not getting logged in runtime error 619 coming
@ERP-UP
@ERP-UP 7 ай бұрын
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
@manishsoni125
@manishsoni125 7 ай бұрын
@@ERP-UP got my mistake Thanks
@cryptoafc7655
@cryptoafc7655 9 ай бұрын
how safe it is?
@annaz9630
@annaz9630 9 ай бұрын
Safe
@ERP-UP
@ERP-UP 9 ай бұрын
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.
@281173hk
@281173hk 7 ай бұрын
Cannot find SAP GUI Scripting API . How to add?
@ERP-UP
@ERP-UP 7 ай бұрын
Have a closer look at 02:00 - Include SAP GUI Scripting API
SAP & Excel - 10 SAP GUI Scripting Tips 🚀
27:37
ERP UP
Рет қаралды 4,6 М.
Automate Data Extraction with SAP GUI Scripting & Excel Macro VBA [english]
14:20
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 55 МЛН
Quando A Diferença De Altura É Muito Grande 😲😂
00:12
Mari Maria
Рет қаралды 45 МЛН
Леон киллер и Оля Полякова 😹
00:42
Канал Смеха
Рет қаралды 4,7 МЛН
Automate SCREENSHOT Capture with Excel VBA & SAP Script
9:45
Joel Ting
Рет қаралды 4,2 М.
Log in to SAP with Excel and VBA - Open Transaction [english]
8:03
Cust&Code in SAP ABAP
Рет қаралды 6 М.
SAP GUI Scripting - Order Creation from Excel
20:49
Csongor Varga
Рет қаралды 50 М.
10 Must-Have SAP GUI settings - SAP GUI Options
14:40
ERP UP
Рет қаралды 4,4 М.
How To Login Into SAP on Power Automate Desktop - RPA Tutorial
9:23
Python in Excel vs. VBA - What You Should Learn in 2024!
10:05
David Langer
Рет қаралды 78 М.
Try The DGET Function Instead of INDEXMATCH & XLOOKUP
12:29
Kenji Explains
Рет қаралды 138 М.
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН