I am asking somebody to give VB6 code support to create a .DLL to fetch data from SAP BAPI. I don't have any idea what ActiveX control to use or where to get started. I am new in this kind of programming. Your help is greatly appreciated.
VB6 code to create DLL to fetch data fom SAP BAPI, with parameter
988 Views Asked by som1 needs help At
1
There are 1 best solutions below
Related Questions in DLL
- How to find a sequence of bytes on the target program from my injected dll?
- .lib not generated when building DLL project using template class
- The file "spng.dll" is not founded in my Visual Studio's project and i get an error
- Handling Memory Allocation and Pointers in Electron between Node.js and C++ DLL
- Multi level project reference using dll
- Wix MSI Project Harvesting Error Message 'dll is not running' on Build
- Windows Custom Credential Provider is not displaying tile on logon for all users in a pc
- How can I verbosely track the whole process of calling a function?
- Is dll static var shared between threads that load the same dll?
- JNR-FFI - Callback Pointer crash
- How can I patch a function call to a Windows DLL (e.g. kernel32 LoadLibrary)? Is this even possible?
- PyInstaller with PyQt5 Generates "DLL load failed" Error for QtPrintSupport
- What happens if I link two different libraries providing the same symbols in Visual Studio?
- how to test .dll on Linux
- PHP FFI - How to free memory created by FFI::new("void*[2]", false, true)
Related Questions in VB6
- ORACLE: Tabs used for indentation converted to spaces in stored procedure when executing through DSN connection
- How to enable a menu that I added to external program on VB6
- microsoft from 2.0 controler textbox to retrieve the hindi content in vba
- VB6 compiled DLL giving CLASS_E_CLASSNOTAVAILABLE issue
- VB6 Project restore from Icon tray
- Can 64-bit Excel VBA use VB6 ActiveX?
- Separate batch of xml using vb6
- Translating decryption function from VB6 to C#
- No value given for one or more required parameters. in Vb6.0
- Read Text File Content from HTTPS Web using VB6
- Setting Working Directory for compiled VB6 application
- becubed oletool missing function call servertime.refresh
- VB6, Win10 x64, MS Office 2016, the Office (Excel) 16 reference is not available, VB, how to add?
- How to set a data comparing with row and column of msflexgrid in vb6
- What is the proper way to create a win32 toolbar on vb6 using win32 api?
Related Questions in BAPI
- How to execute a BADI in BAPI_ACC_DOCUMENT_POST from C#?
- How to copy a lot of code to a different company
- Error while reversing document in SAP using BAPI
- How to remove serial numbers from delivery SAP?
- Handling function module interfaces in bulk?
- BOM is not exploded when called via BAPI_SALESORDER_CREATEFROMDAT2
- BAPI_MATERIAL_GET_DETAIL cannot fetch MATERIALVALUATIONDATA
- BAPI_MATERIAL_SAVEREPLICA throws "no update (test mode)"
- how to restrict the number of table columns in bapi output
- VB6 code to create DLL to fetch data fom SAP BAPI, with parameter
- Optimization of code written using python and BAPI
- How to call BAPI_PLANNEDORDER_GET_DETAIL from Excel?
- BAPI/FM to search prod orders confirmations by workcenter and date?
- Difference between BAPI_ACC_GL_POSTING_POST and BAPI_ACC_DOCUMENT_POST?
- How to get statistical records (transactions) from all servers using BAPI function "SWNC_STATREC_READ_INSTANCE"?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
VB6 - Difficult.
Your best bet is probably access the BAPI through web services (every BAPI is exposed as Web Service; at least in more recent SAP versions). But that does not seem to be that simple (google for it).
There was once a COM Component for accessing RFC functions, but that is no longer supported. The last option would be to use the RFC SDK and create a VB6 wrapper for accessing the exported functions in libRFC.dll (maybe not the easiest task).
Things get a lot more simple if you switch to VB.Net (or any other .Net language): There is a new version of the SAP .Net Connector.