Excel - SAP Interface

anuvnkt

New Member
Joined
Jul 23, 2012
Messages
3
I want to write a interface program using VB Macro, for updating the Excel Table values into SAP Tables.
Is there any macro that can do this work?
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
You probably need a macro that writes Excel data into a text file.

Do you have any experience with VBA ?
 
Upvote 0
This code will write to a text file

Code:
        Open targetFile For Output As #1    'targetFile is a variable that holds a path and filename
            
            Print #1, "19903001;" & varSH & ";" & Abs(Round(varAM, 2)) & ";;" & varPC & ";;;;;;;;;;;;"   'varSH, varAM and varPC are all variables
        
        Close #1
 
Upvote 0
Thanks WinteE

Sorry I dont need to update tables. What I need is to update into SAP transaction

Currently my macro will generate a CSV file and stored in SQL Table. ABAPERS trying to map those CSV files into SAP trans. Instead what I am thinking is there by anyway I can directly link my output files into SAP (either from values in sql Table or from excel).
 
Upvote 0

Forum statistics

Threads
1,223,912
Messages
6,175,348
Members
452,638
Latest member
Oluwabukunmi

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top