Hey, one other issue. Some SAP transactions take time e.g. if we are checking all the inventory. I am using macro for this and My macro crashes (giving me pop ups to wait or to cancel it) while waiting for sap to execute the command
Hello! I would love to help You with that, but unfortunately I don't think I have access to that transaction. Have You tried with SAP Script recorder? What is the issue You struggling with?
Hi, Other way to solve this topic is to split the macro in two : Sub Macro_1() …. session.FindById("wnd[1]/usr/ctxtDY_PATH").Text = “\\ …” session.FindById("wnd[1]/usr/ctxtDY_FILENAME").Text = “File …” session.FindById("wnd[1]/tbar[0]/btn[11]").Press session.FindById("wnd[0]/tbar[0]/btn[3]").Press session.FindById("wnd[0]/tbar[0]/btn[3]").Press Application.OnTime Now + TimeValue("00:00:15"), "Macro_2" End Sub Sub Macro_2() ActiveWorkbook.Close False End Sub
Excellent solution! I've been searching for this for a long time! New subscriber!
Thank You! :)
Bro, I was looking for this for hours. Thank you so much. Got subscribed.🙋♂
So happy to see that! Thank You!
Hi , what about if I want preventing the excel from open after extracting it?
Just don't use solution from this video :)
@@SimpleExcelVBAActually the file will be open by default !! ,this why l asked if l can prevent it
@@مريومالعشوان I think it is not possible
Thanks to share this solution! This helped me a lot. 👍
Glad I could help :)
Hi, thank you for this video. I don't understand the working but the solution works and solves my issue
Happy to help! :)
Hey, one other issue. Some SAP transactions take time e.g. if we are checking all the inventory. I am using macro for this and My macro crashes (giving me pop ups to wait or to cancel it) while waiting for sap to execute the command
@@ridanaeem1012 Hi, I need more details, please post them somewhere :)
Thanks, seems a clever workaround!
Thank You!
Hello, when getting report on SAP by VBA the report automaticly openning always. this is problem for me how can ı solve? I only want save function.
Hello, haven't found the way yet to only save the file. That's why I figured out to deal with that in such way.
Thank you again for your help on this! :)
You're welcome! I'm open for your suggestions! :)
Genius!! thanks a lot!
You're welcome!
Great! So valuable thanks for sharing
Happy to hear that!
Thanks for your videos. Very interesting.
Can you use your screen of VBA in colour blank? In black it’s more difficult to read the code.
I'll try to fix that :)
Can you please create a video to automate F-03 (Clear GL Account Manually) based on Document Numbers and multiple company codes through excel.
Hello! I would love to help You with that, but unfortunately I don't think I have access to that transaction. Have You tried with SAP Script recorder? What is the issue You struggling with?
thanks for sharing
You're welcome :)
Hi, Other way to solve this topic is to split the macro in two :
Sub Macro_1()
….
session.FindById("wnd[1]/usr/ctxtDY_PATH").Text = “\\ …”
session.FindById("wnd[1]/usr/ctxtDY_FILENAME").Text = “File …”
session.FindById("wnd[1]/tbar[0]/btn[11]").Press
session.FindById("wnd[0]/tbar[0]/btn[3]").Press
session.FindById("wnd[0]/tbar[0]/btn[3]").Press
Application.OnTime Now + TimeValue("00:00:15"), "Macro_2"
End Sub
Sub Macro_2()
ActiveWorkbook.Close False
End Sub
Hello! Thank You for sharing. I was there and it was not working for me + didn't want to use ActiveWorkbook object. But appreciate your input! :)
May be i am missing something...but this is not working every time... sometimes it is able to detect and sometimes not🥴
It was working everytime for me, can You tell the transaction where it is not always working?