- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Sending a table from UI5 application to ABAP Function Module
This can be done using an OData service that accepts POST request from your UI5 application and writes data to a database table. While implementing OData service, you have to call ABAP Backend Class method.
You have to remember that all application and classes are instantiated for processing and will end as soon as the request is completed. An OData service can be created using SAP Gateway Service Builder (SEGW).
Following steps has to be performed for creating an OData service:
- Creation of Data Model
- Generate Runtime Objects
- Registration of Service
- Service Implementation
Once you create a project in Gateway Service Builder, you have to create Entity and EntitySet using Import option:
To know more about the creation of OData service and UI5 application, you can refer this link:https://blogs.sap.com/2015/02/05/simple-exercise-on-odata-and-sap-ui5-application-for-the-basic-crud-operation/
- Related Articles
- Creating a Function module in ABAP to take any table and write it to the screen
- Explain the module function to split ABAP date?
- Accessing import parameters passed to a function module in SAP ABAP
- User rights required to make a call to SAP RFC Function Module RFC_SYSTEM_INFO from JAVA application
- Using ABAP Function module RSAQ_REMOTE_QUERY_CALL, NO_DATA_SELECTED exception using selection parameters
- Sending an itab to SAP Spool using ABAP method
- Binding model to sap.ui.core in SAP UI5 application
- Calling an ABAP Function Module using Python script to put data in SAP HANA
- Retrieving data from a table in SAP ABAP
- Managing user sessions in SAP UI5 application
- How to import a single function from a Python module?
- Using table parameter in SAP RFC Function module
- Binding OData service to SAP UI5 table
- Generating SAP ABAP code/ script from XML coming from an external application
- OData or Java Services to be consumed by SAP UI5 application
