我有一些VBA代码将SAP数据导出到.XLSX文件,然后将此文件导入excel。导入文件后,我有执行许多其他操作的代码(例如,解析和组织数据,计算单元格等)。宏完成后,导出的SAP .XLSX文件打开,我不喜欢它。
我已经尝试过使用Kill功能,但是在宏的最后,它没有打开文件,而是打开文件,这是有意义的。
我已经尝试在宏完成之前关闭文件,但由于文件实际上没有打开,这也会导致错误。
我已尝试打开然后在宏完成之前关闭文件,它会成功完成此操作,但在宏结束时再次打开文件。
但是,当我破坏代码并单步执行时,文件最后才会打开。
我已经尝试了其他一些各种计时器功能,DoEvents等等,但仍然没有运气。
有没有人对如何: 1.防止导出的文件在代码末尾打开或 2.防止找不到"文件"显示的消息,以便在宏期间可以杀死该文件。
示例代码
'Opens SAP connection
Dim SAPGUI
Dim Applic
Dim connection
Dim Session
Dim WSHShell
Application.DisplayAlerts = False
Shell "C:\Program Files (x86)\SAP\FrontEnd\SAPgui\saplogon.exe", vbNormalFocus
Set WSHShell = CreateObject("WScript.Shell")
Do Until WSHShell.AppActivate("SAP Logon ")
Application.Wait Now + TimeValue("0:00:01")
Loop
Set WSHShell = Nothing
Set SAPGUI = GetObject("SAPGUI")
Set Applic = SAPGUI.GetScriptingEngine
Set connection = Applic.OpenConnection("04. R3 PRD []", True)
Set Session = connection.Children(0)
' Session.findById("wnd[0]").iconify
Session.findById("wnd[0]/usr/txtRSYST-MANDT").Text = "100"
Session.findById("wnd[0]/usr/txtRSYST-BNAME").Text = Environ("Username")
Session.findById("wnd[0]/usr/pwdRSYST-BCODE").Text = sysstart.psswrd
Session.findById("wnd[0]").sendVKey 0
Session.findById("wnd[0]").maximize
Session.findById("wnd[0]/tbar[0]/okcd").Text = "/nZUI_SELECTION"
Session.findById("wnd[0]").sendVKey 0
''Performs some filters and opens data
' Export from SAP to .xlsx file.
Session.findById("wnd[0]/usr/cntlGRID1/shellcont/shell").contextMenu
Session.findById("wnd[0]/usr/cntlGRID1/shellcont/shell").selectContextMenuItem "&XXL"
Session.findById("wnd[1]/tbar[0]/btn[0]").press
Session.findById("wnd[1]/usr/ctxt[0]").Text = "C:\Users\" & Environ("Username") & "\Downloads"
Session.findById("wnd[1]/usr/ctxt[1]").Text = "SAP_export.XLSX"
Session.findById("wnd[1]/tbar[0]/btn[11]").press
'Closes SAP connection
Set Session = Nothing
connection.CloseSession ("ses[0]")
Set connection = Nothing
'Clear table from SMS Input
ThisWorkbook.Worksheets("SMS Input").Select
Cells.Select
Selection.ClearContents
'Insert .xlsx file data
Cells.Select
Selection.Delete Shift:=xlUp
Range("A6").Select
With ActiveSheet.ListObjects.Add(SourceType:=0, Source:=Array( _
"OLEDB;Provider=Microsoft.ACE.OLEDB.12.0;Password="""";User ID=Admin;Data Source=C:\Users\" & Environ("Username") & "\Downloads\SAP_export.XLSX;Mode=Share Deny None" _
, _
";Extended Properties=""HDR=YES;"";Jet OLEDB:System database="""";Jet OLEDB:Registry Path="""";Jet OLEDB:Database Password="""";Jet OL" _
, _
"EDB:Engine Type=37;Jet OLEDB:Database Locking Mode=0;Jet OLEDB:Global Partial Bulk Ops=2;Jet OLEDB:Global Bulk Transactions=1;Je" _
, _
"t OLEDB:New Database Password="""";Jet OLEDB:Create System Database=False;Jet OLEDB:Encrypt Database=False;Jet OLEDB:Don't Copy Lo" _
, _
"cale on Compact=False;Jet OLEDB:Compact Without Replica Repair=False;Jet OLEDB:SFP=False;Jet OLEDB:Support Complex Data=False;Je" _
, "t OLEDB:Bypass UserInfo Validation=False"), Destination:=Range("$A$6")). _
QueryTable
.CommandType = xlCmdTable
.CommandText = Array("Sheet1$")
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.PreserveColumnInfo = True
.SourceDataFile = "C:\Users\" & Environ("Username") & "\Downloads\SAP_export.XLSX"
.ListObject.DisplayName = "Table_export3"
.Refresh BackgroundQuery:=False
.MaintainConnection = False
End With
导入文件后,我会解析一些列并在工作表中组织信息。
在代码的最后,我尝试了如上所述的不同变体。
'Open the export and then close to avoid it opening at end of macro.
Workbooks.Open Filename:="C:\Users\" & Environ("Username") & _
"\Downloads\SAP_export.XLSX"
Workbooks("SAP_export.XLSX").Close savechanges:=False
Application.Wait Now + TimeValue("0:00:01")
Kill "C:\Users\" & Environ("Username") & "\Downloads\SAP_export.XLSX"
起初,我认为这是使用OLEDB导入.XLSX的部分的一个问题,但它不是。如果我在SAP连接关闭后结束代码,文件将在结尾处自动打开。 我已经看到其他帖子有同样的问题,但没有可靠的答案。希望这很清楚......
提前感谢您的任何反馈,
答案 0 :(得分:2)
进一步的建议:
在VBA程序结束时(不做更改),运行下面的脚本。
例如:
. . .
'Open the export and then close to avoid it opening at end of macro.
set Wshell = CreateObject("WScript.Shell")
Wshell.run "c:\tmp\SAP_Workbook_Close.vbs",1,false
End Sub
SAP_Workbook_Close.vbs:
SAP_Workbook = "SAP_export.xlsx"
on error resume next
do
err.clear
Set xclApp = GetObject(, "Excel.Application")
If Err.Number = 0 Then exit do
'msgbox "Wait for Excel session"
wscript.sleep 2000
loop
do
err.clear
Set xclwbk = xclApp.Workbooks.Item(SAP_Workbook)
If Err.Number = 0 Then exit do
'msgbox "Wait for SAP workbook"
wscript.sleep 2000
loop
on error goto 0
Set xclSheet = xclwbk.Worksheets(1)
xclApp.Visible = True
xclapp.DisplayAlerts = false
xclapp.ActiveWorkbook.Close
Set xclwbk = Nothing
Set xclsheet = Nothing
'xclapp.Quit
set xclapp = Nothing
此致 ScriptMan
答案 1 :(得分:1)
我的解决方案,如果有人仍然需要帮助。 我创建了一个sub来杀死我导出的很多文件。 thx scriptman ...
.findById("wnd[0]/mbar/menu[0]/menu[10]/menu[3]/menu[1]").Select
.findById("wnd[1]/usr/ctxtDY_PATH").Text = "C:\Informe\"
.findById("wnd[1]/usr/ctxtDY_FILENAME").Text = "tcurr.xlsx"
.findById("wnd[1]/usr/ctxtDY_FILENAME").caretPosition = 10
.findById("wnd[1]/tbar[0]/btn[11]").press
End With
'Application.Wait Now + TimeValue("00:00:02")
Call Esperar("tcurr.XLSX")
Public Sub Esperar(Optional ByVal archivo As String)
On Error Resume Next
Set Wshell = CreateObject("WScript.Shell")
Do
Err.Clear
Set xclapp = GetObject(, "Excel.Application")
If Err.Number = 0 Then Exit Do
DoEvents '---> This do the trick in VB7
'msgbox "Wait for Excel session"
wscript.Sleep 2000
Loop
Do
Err.Clear
Set xclwbk = xclapp.Workbooks.Item(archivo)
If Err.Number = 0 Then Exit Do
DoEvents
'msgbox "Wait for SAP workbook"
wscript.Sleep 2000 Loop
On Error GoTo 0
Set xclsheet = xclwbk.Worksheets(1)
xclapp.Visible = True
xclapp.DisplayAlerts = False
xclapp.ActiveWorkbook.Close
Set xclwbk = Nothing
Set xclsheet = Nothing
End Sub
答案 2 :(得分:0)
我试图按照我在评论中解释的那样做。它不是很整洁,我无法测试。 我只改变了几行来整理一些东西,我不认为在文件数据部分的插入.xlsx中需要该行。 让我知道你是怎么走的。
Sub OriginalSub()
'Opens SAP connection
[snip as no change]
'Closes SAP connection
[snip as no change]
Call ImportData()
Kill "C:\Users\" & Environ("Username") & "\Downloads\SAP_export.XLSX"
End Sub
Sub ImportData()
'Clear table from SMS Input
ThisWorkbook.Worksheets("SMS Input").Cells.ClearContents
'Insert .xlsx file data
ThisWorkbook.Worksheets("SMS Input").Range("A6").Select
[snip as no changes from here by me]
Workbooks("SAP_export.XLSX").Close savechanges:=False
End Sub
答案 3 :(得分:0)
我今天想再多写一点,这样我的答案就不会被删除。 ; - )
我为此问题提供了以下解决方法:
'old codes
. . .
Session.findById("wnd[1]/usr/ctxt[1]").Text = "SAP_export.XLSX"
Session.findById("wnd[1]/tbar[0]/btn[11]").press
'new codes
SAP_Workbook = "SAP_export.xlsx"
on error resume next
do
err.clear
Set xclApp = GetObject(, "Excel.Application")
If Err.Number = 0 Then exit do
'msgbox "Wait for Excel session"
wscript.sleep 2000
session.findById("wnd[0]").iconify
session.findById("wnd[0]").maximize
loop
do
err.clear
Set xclwbk = xclApp.Workbooks.Item(SAP_Workbook)
If Err.Number = 0 Then exit do
'msgbox "Wait for SAP workbook"
wscript.sleep 2000
loop
on error goto 0
Set xclSheet = xclwbk.Worksheets(1)
xclApp.Visible = True
xclapp.DisplayAlerts = false
xclapp.ActiveWorkbook.Close
Set xclwbk = Nothing
Set xclsheet = Nothing
xclapp.Quit
set xclapp = Nothing
'old codes
'Closes SAP connection
Set Session = Nothing
connection.CloseSession ("ses[0]")
Set connection = Nothing
. . .
此致 ScriptMan
答案 4 :(得分:0)
所以我一直在阅读很多关于这个问题的内容,很多人都想知道为什么...... 我终于明白了!是SAP Configuration中的一个东西。 Go Check右上角...点击电视>设置>互动>快速信息和使用辅助功能模式。它就是!将其设置为无!你完成了...... 我从一位用户那里得到了这个,告诉我最后开了很多书。
我写了一个小程序来解决这个问题,如果有人检查这个让我知道:
Public Sub ConfSAP()
Set objShell = CreateObject("WScript.Shell")
reg = "REG_DWORD"
strRoot_16 = "HKEY_CURRENT_USER\SOFTWARE\SAP\SAPGUI Front\SAP Frontend Server\Customize\BubbleDelay"
strRoot_17 = "HKEY_CURRENT_USER\SOFTWARE\SAP\General\AccMode"
strModify = objShell.RegWrite(strRoot_16, "00000003", reg)
strModify = objShell.RegWrite(strRoot_17, "On", "REG_SZ")
strModify = Null
strRoot_16 = Null
strRoot_17 = Null
subfolder = Null
reg = Null Set
objShell = Nothing
End Sub
答案 5 :(得分:0)
今天,我看到了解决该问题的另一种方法。我真的很想和你分享。
例如:
...
' Export from SAP to .xlsx file.
Session.findById("wnd[0]/usr/cntlGRID1/shellcont/shell").contextMenu
Session.findById("wnd[0]/usr/cntlGRID1/shellcont/shell").selectContextMenuItem "&XXL"
Session.findById("wnd[1]/tbar[0]/btn[0]").press
Session.findById("wnd[1]/usr/ctxt[0]").Text = "C:\tmp"
Session.findById("wnd[1]/usr/ctxt[1]").Text = "SAP_export.XLSX"
Session.findById("wnd[1]/tbar[0]/btn[11]").press
Dim xlApp As Object
Application.Wait Now + TimeSerial(0, 0, 5)
Set xlApp = GetObject("c:\tmp\SAP_export.XLSX").Application
xlApp.Workbooks(1).Close False
'xlApp.Quit
...
关于ScriptMan,