
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Map Output of a Function to an Internal Table in SAP ABAP Using Gateway Service
You need to just import the function so that it can be used. First, you need to have a ABAP structure which should map the structure of the output parameters.
Example
define structure zza_enqtstat { entries_total : abap.int4; entries_peak : abap.int4; entries_actual : abap.int4; }
Then map this newly created structure to a new entity in the gateway project. Now for the function ‘ENQUEUEGETSTAT’’ create a function import. Next step for you will be to redefine the method in DPC_EXT. Save you changes and it should work.
Advertisements